projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f6684e
)
#23883: add names missing from __all__ (l*gettext, bind_textdomain_codeset)
author
Andrew Kuchling
<amk@amk.ca>
Mon, 13 Apr 2015 13:58:36 +0000
(09:58 -0400)
committer
Andrew Kuchling
<amk@amk.ca>
Mon, 13 Apr 2015 13:58:36 +0000
(09:58 -0400)
Lib/gettext.py
patch
|
blob
|
history
diff --git
a/Lib/gettext.py
b/Lib/gettext.py
index 05d9c1e5a3dd8570ac98dd3f0c3405b29aa9a49a..d38fda2ef09029b1e9bfeefaaf664dd48dc9cdf0 100644
(file)
--- a/
Lib/gettext.py
+++ b/
Lib/gettext.py
@@
-52,7
+52,9
@@
from errno import ENOENT
__all__ = ['NullTranslations', 'GNUTranslations', 'Catalog',
'find', 'translation', 'install', 'textdomain', 'bindtextdomain',
- 'dgettext', 'dngettext', 'gettext', 'ngettext',
+ 'bind_textdomain_codeset',
+ 'dgettext', 'dngettext', 'gettext', 'lgettext', 'ldgettext',
+ 'ldngettext', 'lngettext', 'ngettext',
]
_default_localedir = os.path.join(sys.base_prefix, 'share', 'locale')