comparison babel/support.py @ 524:335d0284d903

Get rid of some unused imports.
author jruigrok
date Sat, 05 Mar 2011 14:50:16 +0000
parents b4f01db57a9e
children e93f68837913
comparison
equal deleted inserted replaced
523:c4c279f78f08 524:335d0284d903
15 in applications. 15 in applications.
16 16
17 .. note: the code in this module is not used by Babel itself 17 .. note: the code in this module is not used by Babel itself
18 """ 18 """
19 19
20 from datetime import date, datetime, time, timedelta 20 from datetime import date, datetime, timedelta
21 import gettext 21 import gettext
22 import locale 22 import locale
23 23
24 from babel.core import Locale 24 from babel.core import Locale
25 from babel.dates import format_date, format_datetime, format_time, \ 25 from babel.dates import format_date, format_datetime, format_time, \
26 format_timedelta, LC_TIME 26 format_timedelta
27 from babel.numbers import format_number, format_decimal, format_currency, \ 27 from babel.numbers import format_number, format_decimal, format_currency, \
28 format_percent, format_scientific, LC_NUMERIC 28 format_percent, format_scientific
29 from babel.util import set, UTC 29 from babel.util import UTC
30 30
31 __all__ = ['Format', 'LazyProxy', 'Translations'] 31 __all__ = ['Format', 'LazyProxy', 'Translations']
32 __docformat__ = 'restructuredtext en' 32 __docformat__ = 'restructuredtext en'
33 33
34 34
Copyright (C) 2012-2017 Edgewall Software