gecko-dev/python
Andrew Halberstadt 8c97bc7a17 Bug 1577908 - [mach] Disable suggested command execution until Python 3 migration is finished, r=glandium
The mach driver will now run all misspelled commands with Python 3. That means
we can't automatically execute the suggested command anymore, as it may need to
run against Python 2.

Ideally we could figure out a way to check the command against the 'mach'
whitelist, but until then, let's just disable automatic execution. Worst case
scenario we can turn it back on after the migration has finished.

Differential Revision: https://phabricator.services.mozilla.com/D44282

--HG--
extra : moz-landing-system : lando
2019-09-03 03:46:16 +00:00
..
devtools/migrate-l10n
docs
gdbpp/gdbpp
l10n Bug 1533863 - Use icons instead of text for buttons in about:config r=fluent-reviewers,jaws,flod 2019-08-29 21:03:13 +00:00
mach Bug 1577908 - [mach] Disable suggested command execution until Python 3 migration is finished, r=glandium 2019-09-03 03:46:16 +00:00
mozboot Bug 1577049 - Provide sccache and dist-toolchains during bootstrap on Windows. r=froydnj 2019-08-28 18:31:23 +00:00
mozbuild Bug 1568638 - [build] Create objdir in test_manifest backend if it doesn't exist r=mshal 2019-08-30 17:01:12 +00:00
mozlint
mozrelease
mozterm
mozversioncontrol
safety
mach_commands.py
moz.build Bug 1575375 - Always include mozbuild/mozpack tests. r=nalexander 2019-08-21 03:05:09 +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