gecko-dev/python
Ricky Stewart 6d5c9de81b Bug 1662632 - Fix `UnboundLocalError` due to undefined variable `have_clone` in `mach bootstrap` r=froydnj
This consolidates the `have_clone` logic in one place unconditionally. After bug 1647792 we're deprecating the use case where `bootstrap` is run without a clone, so that's not a problem.

In reality the whole `have_clone` thing isn't necessary any more (`have_clone` is always going to be `True` in practice), but I'll save that for a bigger refactoring.

Differential Revision: https://phabricator.services.mozilla.com/D89152
2020-09-02 14:57:22 +00:00
..
devtools/migrate-l10n
docs
gdbpp/gdbpp
l10n Bug 1661640 - Add Fluent migration for bug 1660259, r=emcminn 2020-08-28 16:20:50 +00:00
lldbutils Bug 1637130 - Rename visual overflow to ink overflow. r=dbaron 2020-07-20 20:17:36 +00:00
mach Bug 1646794 - Add basic infrastructure for collecting data on the performance of individual build actions r=mhentges,froydnj 2020-08-26 22:47:58 +00:00
mozboot Bug 1662632 - Fix `UnboundLocalError` due to undefined variable `have_clone` in `mach bootstrap` r=froydnj 2020-09-02 14:57:22 +00:00
mozbuild Bug 1662130 - Walk back new `inherit-from-parent-environment` logic in `virtualenv` handling r=ahal 2020-09-01 16:54:27 +00:00
mozlint Bug 1657604 - [mozlint] Support multiple linters per yaml file, r=linter-reviewers,sylvestre 2020-08-07 07:12:41 +00:00
mozperftest Backed out 2 changesets (bug 1661514) for lint failure on a CLOSED TREE 2020-09-01 19:34:12 +03:00
mozrelease Backed out 2 changesets (bug 1661514) for lint failure on a CLOSED TREE 2020-09-01 19:34:12 +03:00
mozterm
mozversioncontrol Bug 1659602 - Fix type error in `mozversioncontrol` for Windows+`hg`+Python 3 r=dmajor 2020-08-18 12:51:49 +00:00
README
mach_commands.py Bug 1657719: Don't create init_py3_py3 venv in python-test r=firefox-build-system-reviewers,rstewart 2020-08-07 22:11:41 +00:00
moz.build Bug 925350 - Remove `dumbmake` r=nalexander 2020-07-10 18:12:07 +00:00

README

This directory contains common Python code.

The basic rule is that if Python code is cross-module (that's "module" in the
Mozilla meaning - as in "module ownership") and is MPL-compatible, it should
go here.

What should not go here:

* Vendored python modules (use third_party/python instead)
* Python that is not MPL-compatible (see other-licenses/)
* Python that has good reason to remain close to its "owning" (Mozilla)
  module (e.g. it is only being consumed from there).

Historical information can be found at
https://bugzilla.mozilla.org/show_bug.cgi?id=775243
https://bugzilla.mozilla.org/show_bug.cgi?id=1346025