releases-comm-central/python
Rob Lemley f0390651ad Bug 1922252 - Rename tbxchannel to tb_l10n and update references. r=dandarnell,aleca
Differential Revision: https://phabricator.services.mozilla.com/D224557

--HG--
rename : python/l10n/tbxchannel/__init__.py => python/l10n/tb_l10n/__init__.py
rename : python/l10n/tbxchannel/l10n_merge.py => python/l10n/tb_l10n/l10n_merge.py
rename : python/l10n/missing_ftl/__init__.py => python/l10n/tb_l10n/missing_ftl.py
rename : python/l10n/tbxchannel/tb_migration_test.py => python/l10n/tb_l10n/tb_migration_test.py
extra : moz-landing-system : lando
2024-10-10 22:49:51 +00:00
..
l10n Bug 1922252 - Rename tbxchannel to tb_l10n and update references. r=dandarnell,aleca 2024-10-10 22:49:51 +00:00
rocboot Bug 1865752 - Update Thunderbird build bootstrap script from m-c; require Python 3.8. r=dandarnell 2023-12-01 10:24:24 +00:00
rocbuild/rocbuild Bug 1908528 - Allow source docs to be located outside of /docs path. r=dandarnell 2024-10-01 13:53:51 +03:00
sites Bug 1908528 - Update Sphinx and dependencies. r=dandarnell 2024-10-01 13:53:02 +03:00
thirdroc Bug 1838308 - follow-up to really fix linting. rs=lint 2024-09-14 13:53:42 +03: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).