releases-comm-central/python
Rob Lemley 26c5db46e8 No bug - Archive completed Fluent migrations. rs=me DONTBUILD
--HG--
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_01_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_01_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_02_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_02_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_03_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_03_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_04_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_04_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_05_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_05_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_06_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_06_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_07_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_07_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_08_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_08_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_09_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_09_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_10_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_10_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_11_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_11_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_12_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_12_.py
rename : python/l10n/tb_fluent_migrations/bug_1889422_fluent_migration_chat_properties_files_13_.py => python/l10n/tb_fluent_migrations/completed/bug_1889422_fluent_migration_chat_properties_files_13_.py
rename : python/l10n/tb_fluent_migrations/bug_697706_archive_options.py => python/l10n/tb_fluent_migrations/completed/bug_697706_archive_options.py
2024-05-15 11:50:41 -04:00
..
l10n No bug - Archive completed Fluent migrations. rs=me DONTBUILD 2024-05-15 11:50:41 -04: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 1888431 - Port bug 1888321: Rename Rust's .cargo/config.in to config.toml.in. r=dandarnell 2024-04-02 12:03:29 +02:00
sites Bug 1893718 - Replace source docs Makefile with a mach command. r=aleca 2024-04-29 15:37:40 -07:00
thirdroc Bug 1861753 - json-c mach vendor support. r=kaie 2023-11-30 17:55:23 +00: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).