gecko-dev/python
Ricky Stewart d44b1b67a3 Bug 1647873 - Remove "mach bootstrap is not fully implemented in MozillaBuild" message r=nalexander
This message dates from bug 1177128, the commit where this bootstrapper was added. At the time of writing that was certainly true, but today it doesn't appear to be true in any meaningful way. There's certainly an expectation that installing MozillaBuild and running `mach bootstrap` will get your machine ready to build Firefox; or at least, if it doesn't, it prints out some error messages telling you to do extra stuff, like we see in bug 1644794 for example. Therefore, I don't see how this message is relevant at all any more.

Differential Revision: https://phabricator.services.mozilla.com/D80730
2020-06-24 02:47:43 +00:00
..
devtools/migrate-l10n
docs
gdbpp/gdbpp Bug 1622868 - Fix ns*String pretty-printers, r=glandium 2020-03-17 04:51:21 +00:00
l10n Bug 1647692 - Add language packs and dictionaries to about:support, r=Gijs,fluent-reviewers 2020-06-24 13:30:22 +00:00
lldbutils Bug 1646421 - flake8 Fix a bunch of actual errors r=ahal 2020-06-20 09:46:45 +00:00
mach Bug 1645913: show mach command in Sentry breadcrumbs r=rstewart 2020-06-18 21:31:46 +00:00
mozboot Bug 1647873 - Remove "mach bootstrap is not fully implemented in MozillaBuild" message r=nalexander 2020-06-24 02:47:43 +00:00
mozbuild Bug 1645986 - Properly mark generated files required during compile as such. r=firefox-build-system-reviewers,rstewart 2020-06-24 05:07:25 +00:00
mozlint Bug 1647265 - mozlint: when type is 'regex', add the capability to ignore the case r=ahal 2020-06-23 21:45:16 +00:00
mozperftest Bug 1646697 - Modify how the multi-commit tasks work. r=mozperftest-reviewers,tarek 2020-06-18 22:37:35 +00:00
mozrelease Bug 1642868 - Update verify tests check ja-JP-mac on all platforms now r=nthomas 2020-06-09 15:23:18 +00:00
mozterm
mozversioncontrol Bug 1643192 - Use git log to get base ref r=glandium 2020-06-18 06:39:55 +00:00
safety Bug 1619930 Update python-safety dependencies r=mtabara 2020-03-05 13:48:16 +00:00
mach_commands.py Bug 1621960: Change |mach python| default from Python 2 to Python 3 r=rstewart 2020-06-10 16:10:08 +00:00
moz.build Bug 1644912 - remove python.ini r=sparky 2020-06-11 12:19:59 +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