comparison babel/plural.py @ 525:eef19ada4296

Cleanup round #1: get rid of the frozenset/set utility code and imports. This is no longer needed with 2.4 and onward.
author jruigrok
date Sat, 05 Mar 2011 14:59:20 +0000
parents ea0da9db79ef
children 85e1beadacb0
comparison
equal deleted inserted replaced
523:81e35b223dd6 525:eef19ada4296
12 # history and logs, available at http://babel.edgewall.org/log/. 12 # history and logs, available at http://babel.edgewall.org/log/.
13 13
14 """CLDR Plural support. See UTS #35. EXPERIMENTAL""" 14 """CLDR Plural support. See UTS #35. EXPERIMENTAL"""
15 15
16 import re 16 import re
17
18 from babel.util import frozenset, set
19 17
20 __all__ = ['PluralRule', 'RuleError', 'to_gettext', 'to_javascript', 18 __all__ = ['PluralRule', 'RuleError', 'to_gettext', 'to_javascript',
21 'to_python'] 19 'to_python']
22 __docformat__ = 'restructuredtext en' 20 __docformat__ = 'restructuredtext en'
23 21
Copyright (C) 2012-2017 Edgewall Software