gecko-dev/python
Mike Hommey f8b53d8e93 Bug 1654961 - Re-enable some python tests on py2 on mac. r=dmajor
Bug 1648506 disabled tests that failed on py2 on mac. Some now pass
properly, presumably from more recent changes to
build/moz.configure/init.configure.

Differential Revision: https://phabricator.services.mozilla.com/D84776
2020-07-24 05:40:41 +00:00
..
devtools/migrate-l10n
docs
gdbpp/gdbpp
l10n Bug 1654177 - Remove Fluent migration recipes for Firefox 78, r=Pike 2020-07-23 08:03:48 +00:00
lldbutils Bug 1637130 - Rename visual overflow to ink overflow. r=dbaron 2020-07-20 20:17:36 +00:00
mach Bug 1652615: Share is_telemetry_enabled() logic between Sentry and telemetry r=firefox-build-system-reviewers,rstewart 2020-07-15 23:08:17 +00:00
mozboot Bug 1654607: Upgrades glean in bootstrap r=firefox-build-system-reviewers,rstewart 2020-07-22 19:48:23 +00:00
mozbuild Bug 1654961 - Re-enable some python tests on py2 on mac. r=dmajor 2020-07-24 05:40:41 +00:00
mozlint Bug 1652503: [mozlint] Use `attrs` for `mozlint.result.Issue`; r=ahal 2020-07-23 14:55:45 +00:00
mozperftest Bug 1648857 - Add applink perftest for the reference browser r=tarek,sparky 2020-07-23 14:11:38 +00:00
mozrelease Bug 1653662: [mozrelease] Update mozrelease subcommands to python 3; r=aki 2020-07-18 01:36:36 +00:00
mozterm
mozversioncontrol Bug 1645196: Tune git settings to improve performance r=rstewart 2020-07-10 12:54:24 +00:00
safety
README
mach_commands.py Backed out changeset 19269e470c71 (bug 1594914) for causing bustages. 2020-07-09 01:36:29 +03: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