]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#23883: add names missing from __all__ (l*gettext, bind_textdomain_codeset)
authorAndrew Kuchling <amk@amk.ca>
Mon, 13 Apr 2015 13:58:36 +0000 (09:58 -0400)
committerAndrew Kuchling <amk@amk.ca>
Mon, 13 Apr 2015 13:58:36 +0000 (09:58 -0400)
Lib/gettext.py

index 3f4758034c5283a0ef40eea53284fae61b19fc7d..247f37804fdf08834f2e1dd2d0c06ca840fce92d 100644 (file)
@@ -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.prefix, 'share', 'locale')