Line # | Kind | Name | Docs |
---|---|---|---|
51 | Class | Distribution | Undocumented |
66 | Class | SDist | Undocumented |
118 | Class | LocaleBuildPy | create .mo files from .po locales if needed |
129 | Class | TrialTest | Twisted Trial setuptools command |
185 | Class | Clean | Undocumented |
200 | Function | override_check_test_suite | Undocumented |
207 | Function | write_dict | DOCME |
221 | Function | mappings_from_text | Unserialise mappings from a string text . Mappings are lists
of 2-uplets.
|
245 | Function | text_from_mappings | Takes a mappings and return a serialised form. Mappings are
list of
|
267 | Function | read_mappings | Setuptools compliant deserialiser for mappings. |
274 | Function | write_mappings | Setuptools compliant serialiser for mappings. |
283 | Function | assert_list_of_string_tuples_or_none | Verify that value is a list of tuples of string |
294 | Function | assert_dict_or_none | Verify that value is a dictionary |
300 | Function | find_packages_internal | Undocumented |
315 | Function | find_packages | Undocumented |
332 | Function | find_plugins | Undocumented |
370 | Function | elisa_setup | Undocumented |
416 | Class | bdist_elisa | A customized bdist_egg command that creates .elisa.egg files. They |
430 | Class | build_po | Compile po files to mo files and ship mo files as package_data of |
Unserialise mappings from a string text
. Mappings are lists
of 2-uplets.
key1 = value1 key2 = value2a key2 = value2bis deserialised into:
[("key1", "value1"), ("key2", "value2a"), ("key2", "value2b")]
Takes a mappings
and return a serialised form. Mappings are
list of 2-uplets.
[("key1", "value1"), ("key2", "value2a"), ("key2", "value2b")]is serialised into:
key1 = value1 key2 = value2a key2 = value2b