releases-comm-central/python
Rob Lemley 2222fd7ac9 Bug 1824288 - Remove unused string migration script. rs=me DONTBUILD 2023-11-14 16:36:28 -05:00
..
l10n Bug 1824288 - Remove unused string migration script. rs=me DONTBUILD 2023-11-14 16:36:28 -05: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).