gecko-dev/python
Jed Davis 81b8204460 Bug 1974363 - Remove remaining references to security.sandbox.content.headless. r=gerard-majax
Also removes one place in tests where `webgl.out-of-process` is set to
true: that has been the default for years and there are no plans to ever
change it, and turning that pref off without also lowering the sandbox
level will break things, so it seems clearest to delete it.

Differential Revision: https://phabricator.services.mozilla.com/D255245
2025-07-04 04:04:58 +00:00
..
docs
gdb-symbol-server Bug 1974214 - Vendor Ted's venerable gdb symbol fetch script in tree with modifications, update the documentation. r=jrmuizel DONTBUILD 2025-06-26 14:39:01 +00:00
gdbpp/gdbpp Bug 1715287 - [lint] Enable remaining pyupgrade rules and lint tree r=linter-reviewers,webdriver-reviewers,translations-reviewers,whimboo,sylvestre 2025-04-13 17:48:23 +00:00
l10n Bug 1966763 - Fix UP035 and UP033 ruff warnings caused by Python 3.9 version bump r=ahal,firefox-build-system-reviewers,linter-reviewers,taskgraph-reviewers,releng-reviewers,translations-reviewers,omc-reviewers,glandium,jcristau,pdahiya,gregtatum 2025-06-13 17:39:49 +00:00
lldbutils Bug 1959646 - Add zero-parameter overloads for dumping frame trees. r=layout-reviewers,emilio 2025-04-11 00:25:58 +00:00
mach Bug 1940265 - Add ability to prevent the automatic url opening during 'mach try' r=sheehan 2025-06-23 05:19:56 +00:00
mozboot Bug 1972755 - Add options to change location of bundletool and avd. r=ahochheiden 2025-06-26 23:30:52 +00:00
mozbuild Bug 1972782 - Make MOZ_WINCONSOLE a first class citizen of moz.build as WINCONSOLE r=glandium,application-update-reviewers,bytesized 2025-07-02 06:09:43 +00:00
mozlint Bug 1972466 - [mozlint] Error out without traceback if all linters were skipped due to setup, r=linter-reviewers,sylvestre 2025-06-19 19:22:28 +00:00
mozperftest Bug 1974363 - Remove remaining references to security.sandbox.content.headless. r=gerard-majax 2025-07-04 04:04:58 +00:00
mozrelease Bug 1715287 - [lint] Enable remaining pyupgrade rules and lint tree r=linter-reviewers,webdriver-reviewers,translations-reviewers,whimboo,sylvestre 2025-04-13 17:48:23 +00:00
mozterm Bug 1967109 - Remove usages of six in python directory. r=firefox-build-system-reviewers,glandium 2025-05-20 21:01:00 +00:00
mozversioncontrol Bug 1966763 - Fix UP035 and UP033 ruff warnings caused by Python 3.9 version bump r=ahal,firefox-build-system-reviewers,linter-reviewers,taskgraph-reviewers,releng-reviewers,translations-reviewers,omc-reviewers,glandium,jcristau,pdahiya,gregtatum 2025-06-13 17:39:49 +00:00
sites Bug 1973102 - Upgrade to Glean v64.5.1 r=TravisLong,supply-chain-reviewers,mach-reviewers 2025-06-27 14:58:44 +00:00
mach_commands.py Bug 1715287 - [lint] Enable remaining pyupgrade rules and lint tree r=linter-reviewers,webdriver-reviewers,translations-reviewers,whimboo,sylvestre 2025-04-13 17:48:23 +00:00
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