gecko-dev/python
Ben Hearsum 961822ab84 Bug 1900421: flip l10n strings to new github repository r?#releng-reviewers!,eemeli!
This patch contains everything we need to flip all the l10n consumers in the tree to the new github repository:
* Enable fetching strings for builds (`desktop_l10n.py` for Desktop, `android-mozharness-build.json` for Android)
* l10n bumper (`l10n-bump/kind.yml`)
* merge automation (`merge-automation/kind.yml`)
* deb repackages (`repackaging/deb.py`)
* Switch `l10n-changesets` files to git refs to avoid breaking repacks before l10n bumper runs

This will need a final update because it will no doubt be bitrotted by the l10n bumper.

Differential Revision: https://phabricator.services.mozilla.com/D212462
2024-06-11 13:20:29 +00:00
..
docs Bug 1840493 - doc/rst: fix some languages declaration r=firefox-source-docs-reviewers,webdriver-reviewers,necko-reviewers,geckoview-reviewers,devtools-reviewers,profiler-reviewers,championshuttler,whimboo,nchevobbe,julienw,amejiamarmol 2023-12-13 18:32:20 +00:00
gdbpp/gdbpp Bug 1871014 - Fix GDB pretty printer for nsWeakPtr. r=nalexander 2023-12-22 09:10:29 +00:00
l10n Bug 1897003 - Remove Fluent migration recipes for Firefox 120-123 and others, r=flod DONTBUILD 2024-05-16 05:50:09 +00:00
lldbutils Bug 1824877 Part 2 - Rename nsHTMLScrollFrame to mozilla::ScrollContainerFrame. r=dholbert 2024-05-15 17:50:48 +00:00
mach Bug 1898258 - Add and document mach gen-uuid. r=smaug 2024-05-22 14:52:20 +00:00
mozboot Bug 1866711 - On Windows, check that topsrcdir is on a ReFS drive (Dev Drive) during bootstrap r=firefox-build-system-reviewers,nalexander 2024-05-15 17:32:29 +00:00
mozbuild Bug 1900421: flip l10n strings to new github repository r?#releng-reviewers!,eemeli! 2024-06-11 13:20:29 +00:00
mozlint Bug 1896514 - Make `mach lint` accommodate Windows drive case differences. r=ahal 2024-05-28 20:29:38 +00:00
mozperftest Bug 1900065 - Add additional env variables for shell scripts. r=perftest-reviewers,kshampur 2024-06-10 11:57:58 +00:00
mozrelease Bug 1884138 - make scriptworker-canary ignore tree closure on try r=releng-reviewers,gbrown 2024-05-24 13:24:22 +00:00
mozterm Bug 1869430 - Batch 19.2 convert python unittest .ini -> .toml. r=gbrown,taskgraph-reviewers 2023-12-12 17:40:03 +00:00
mozversioncontrol Bug 1896978 - Return empty list of changed files instead of nothing in SrcRepository r=ahochheiden 2024-05-29 20:16:14 +00:00
sites Bug 1892230 - Update to Glean v60.1.1 r=TravisLong,supply-chain-reviewers,mach-reviewers,android-reviewers,daabel 2024-05-31 16:25:30 +00:00
README
mach_commands.py
moz.build Bug 1869430 - Batch 19.2 convert python unittest .ini -> .toml. r=gbrown,taskgraph-reviewers 2023-12-12 17:40:03 +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