gecko-dev/python
2023-07-18 07:55:37 +00:00
..
docs Bug 1830069 - Fix reference to old site file name in docs, r=ahochheiden 2023-04-26 18:25:15 +00:00
gdbpp/gdbpp Bug 1811850 - [lint] Fix ruff errors resulting from new configuration, r=webdriver-reviewers,perftest-reviewers,whimboo,sparky,firefox-build-system-reviewers,ahochheiden 2023-03-20 13:06:28 +00:00
l10n Bug 1866295 - fix lint failure for ESR115 a=me 2024-01-03 13:09:34 -05:00
lldbutils Bug 1811850 - [lint] Replace isort linter with ruff, r=taskgraph-reviewers,linter-reviewers,marco,jcristau 2023-03-20 13:06:27 +00:00
mach Bug 1893252 - Skip MozillaBuild version check outside of MozillaBuild. a=RyanVM 2024-05-14 16:26:47 +00:00
mozboot Bug 1858062 - Remove reference to distutils in mozboot a=pascalc 2024-02-05 15:24:03 +00:00
mozbuild Bug 1900421 - Fix rebase error in deb.py. a=bustage 2024-06-20 10:45:06 -04:00
mozlint Bug 1757373 - Enable linting to run in parallel when '.' is specified as the path. r=linter-reviewers,ahal 2023-05-09 13:11:21 +00:00
mozperftest Bug 1827609 - Set new platform/test names correctly when using MWU to detect changes. r=perftest-reviewers,kshampur 2023-04-18 17:05:20 +00:00
mozrelease Bug 1858065 - Replace distutils' StrictVersion a=pascalc 2024-02-05 15:24:02 +00:00
mozterm Bug 1811850 - [lint] Replace isort linter with ruff, r=taskgraph-reviewers,linter-reviewers,marco,jcristau 2023-03-20 13:06:27 +00:00
mozversioncontrol Bug 1853252 - Allow running mach bootstrap from more subdirs. r=ahochheiden, a=NPOTB 2023-09-18 19:13:38 +00:00
sites Bug 1789787 - Update ujson version for web-platform-tests, r=glandium a=test-only 2023-07-18 07:55:37 +00:00
mach_commands.py
moz.build
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