fune/python
Ting-Yu Lin fb92ee5f64 Bug 1824877 Part 2 - Rename nsHTMLScrollFrame to mozilla::ScrollContainerFrame. r=dholbert
Also, change the ScrollContainerFrame::GetFrameName() to return
"ScrollContainer" instead of "HTMLScroll".

Differential Revision: https://phabricator.services.mozilla.com/D210233
2024-05-15 17:50:48 +00:00
..
docs
gdbpp/gdbpp
l10n Bug 1877104 - Default to git source repo for fluent migration tests. r=flod,bolsson 2024-05-13 10:41:21 +00:00
lldbutils Bug 1824877 Part 2 - Rename nsHTMLScrollFrame to mozilla::ScrollContainerFrame. r=dholbert 2024-05-15 17:50:48 +00:00
mach Bug 1894157 - Remove Python2 compatibility code in Mach r=firefox-build-system-reviewers,glandium 2024-05-01 02:32:23 +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 1888243 - Allow mach cargo vet to work with Thunderbird's cargo config. r=firefox-build-system-reviewers,glandium 2024-05-14 14:21:39 +00:00
mozlint Bug 1856535 - allow linters to work by excluding extensions instead of including them, r=ahal 2024-03-13 09:40:27 +00:00
mozperftest Bug 1887998 - Have mozperftest and raptor use the same browsertime. r=perftest-reviewers,sparky 2024-05-14 14:59:05 +00:00
mozrelease Bug 1879120 - Remove all python deprecation warning: invalid escape sequence r=ahochheiden,webdriver-reviewers,perftest-reviewers,afinder UPGRADE_NSPR_RELEASE 2024-02-26 08:26:38 +00:00
mozterm
mozversioncontrol Bug 1872242 - Change how the last segment of milestone_winversion is generated to improve uniqueness r=firefox-build-system-reviewers,glandium 2024-05-15 16:00:33 +00:00
sites Bug 1895786 - Vendor Glean SDK v60.1.0 r=TravisLong,supply-chain-reviewers,mach-reviewers,android-reviewers,Roger 2024-05-14 14:42:14 +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