Package: python-babel / 1.3+dfsg.1-5

Metadata

Package Version Patches format
python-babel 1.3+dfsg.1-5 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 Fixup get_currency_name test.patch | (download)

tests/test_numbers.py | 3 2 + 1 - 0 !
1 file changed, 2 insertions(+), 1 deletion(-)

 fixup get_currency_name test
 This test failed in environments where no default locale can be determined;
 make the test deterministic and add additional test for plurality.
adds support for python 3.2.patch | (download)

babel/core.py | 3 2 + 1 - 0 !
babel/dates.py | 9 5 + 4 - 0 !
babel/messages/catalog.py | 39 20 + 19 - 0 !
babel/messages/frontend.py | 3 2 + 1 - 0 !
babel/messages/jslexer.py | 3 2 + 1 - 0 !
babel/messages/mofile.py | 3 2 + 1 - 0 !
babel/messages/pofile.py | 19 10 + 9 - 0 !
babel/numbers.py | 37 19 + 18 - 0 !
scripts/import_cldr.py | 3 2 + 1 - 0 !
tests/messages/test_catalog.py | 55 28 + 27 - 0 !
tests/messages/test_checkers.py | 9 5 + 4 - 0 !
tests/messages/test_extract.py | 193 97 + 96 - 0 !
tests/messages/test_jslexer.py | 4 3 + 1 - 0 !
tests/messages/test_mofile.py | 19 10 + 9 - 0 !
tests/messages/test_pofile.py | 73 37 + 36 - 0 !
tests/test_core.py | 15 8 + 7 - 0 !
tests/test_dates.py | 131 66 + 65 - 0 !
tests/test_numbers.py | 63 32 + 31 - 0 !
tests/test_support.py | 45 23 + 22 - 0 !
19 files changed, 373 insertions(+), 353 deletions(-)

 adds support for python 3.2
 Upstream source is using u'' strings which are incompatible with Python 3.2.
 This patch replaces that with six.u() using the "six" python module.
fix sphinx conf.py to avoid intersphinx.patch | (download)

docs/conf.py | 3 1 + 2 - 0 !
1 file changed, 1 insertion(+), 2 deletions(-)

 removes sphinx.ext.intersphinx to avoid network access
 Upstream is using intersphinx when building the sphinx doc. This patch removes
 sphinx.ext.intersphinx from docs/conf.py to avoid any network access during
 the build of babel.