gecko-dev/python
Mike Hommey 119e8f8456 Bug 1906851 - Use mozbuild.shellutil.quote instead of pipes.quote. r=firefox-build-system-reviewers,ahochheiden
The latter was removed in python 3.13, and while it can be replaced with
shlex, we also have our own version that considers more characters as
needing quotes.

Differential Revision: https://phabricator.services.mozilla.com/D225329
2024-10-14 20:22:30 +00:00
..
docs Bug 1920152 - Doc updates for ./mach vendor python r=ahal 2024-10-03 14:47:59 +00:00
gdbpp/gdbpp
l10n Bug 1921539 - Sidebar button has no label when moved to the overflow menu r=sidebar-reviewers,fluent-reviewers,Gijs,sclements 2024-10-01 14:30:04 +00:00
lldbutils
mach Bug 1923830 - Print commands in a way that is easy to copy paste in case of non-zero return code. r=jcristau 2024-10-10 12:23:02 +00:00
mozboot Bug 1924022 - Use urlopen's context parameter instead of cafile. r=firefox-build-system-reviewers,jcristau,ahochheiden 2024-10-14 20:22:29 +00:00
mozbuild Bug 1906851 - Use mozbuild.shellutil.quote instead of pipes.quote. r=firefox-build-system-reviewers,ahochheiden 2024-10-14 20:22:30 +00:00
mozlint
mozperftest Bug 1916538 - Add documentation about the mach perftest alet command. r=perftest-reviewers,fbilt 2024-10-09 14:51:30 +00:00
mozrelease
mozterm
mozversioncontrol Bug 190831 - Fix lint failure. 2024-07-18 02:12:32 +03:00
sites Bug 1923577 - Bump aioquic to 1.2.0. r=jgraham 2024-10-11 08:58:47 +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