gecko-dev/python
Tarek Ziadé ffc7bb2c00 Bug 1637959 - Added more test coverage r=sparky
Differential Revision: https://phabricator.services.mozilla.com/D75309
2020-05-15 07:19:39 +00:00
..
devtools/migrate-l10n
docs
gdbpp/gdbpp
l10n Bug 1631122 - Convert URL bar dtd strings in browser.xhtml to fluent. r=fluent-reviewers,flod,Gijs 2020-05-13 15:13:08 +00:00
lldbutils
mach Backed out changeset 5694a728839e (bug 1636251) for build bustages. CLOSED TREE 2020-05-13 02:19:46 +03:00
mozboot Bug 1637721 - openSUSEs bootstrap does not download the stackwalk toolchain r=firefox-build-system-reviewers,rstewart 2020-05-13 21:38:07 +00:00
mozbuild Bug 1638193 - Remove build system support for iOS. r=nalexander 2020-05-15 03:56:16 +00:00
mozlint
mozperftest Bug 1637959 - Added more test coverage r=sparky 2020-05-15 07:19:39 +00:00
mozrelease
mozterm
mozversioncontrol Bug 1637333 - Ensure we don't pass bad environment variables to `subprocess.check_call()` in `mozversioncontrol` r=ahal 2020-05-12 16:58:21 +00:00
safety
README
mach_commands.py
moz.build Bug 1635585 - Run compilation/test_warnings.py under Python 3 r=glandium 2020-05-06 19:36:57 +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