releases-comm-central/python
Magnus Melin 714b50c47f Bug 1703164 - convert mail/components/preferences/permissions.xhtml to top level <html>. r=aleca
Differential Revision: https://phabricator.services.mozilla.com/D194492

--HG--
extra : rebase_source : 4f4f5f5fbec57d471605a592db2673400690306e
extra : amend_source : de7136e184e9ebfe216d8f63eb2dc2b819ac3209
2023-11-24 08:02:14 +02:00
..
l10n Bug 1703164 - convert mail/components/preferences/permissions.xhtml to top level <html>. r=aleca 2023-11-24 08:02:14 +02:00
rocboot Bug 1803829 - Reformat Python files to standard line length of 99 via black. r=aleca 2022-12-19 21:10:10 +00:00
rocbuild/rocbuild Bug 1830992 - Update rnp build code to process version.h at build time. r=kaie 2023-05-18 14:07:50 +10:00
sites Bug 1859676 - Follow-up: Insert mozfile path at beginning of sys.path to always use in-tree copy. r=kaie 2023-10-19 22:33:41 +00:00
thirdroc Bug 1830992 - Update rnp build code to process version.h at build time. r=kaie 2023-05-18 14:07:50 +10:00
README Bug 1833949 - Port bug 1826062: Automatic reformatting for Prettier 2.0.5. r=leftmostcat 2023-05-21 15:05:24 +10:00
moz.build Bug 1845361 - Fix linting. rs=linting DONTBUILD 2023-07-25 14:17:07 -04:00

README

This directory contains common Python code for Thunderbird.

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, AND it
applies only to applications build from comm-central derived repositories
(Thunderbird and Seamonkey), 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).