#23883: add names missing from __all__ (l*gettext, bind_textdomain_codeset)

This commit is contained in:
Andrew Kuchling 2015-04-13 09:58:36 -04:00
parent 5f6684efe0
commit 770b08e8e2
1 changed files with 3 additions and 1 deletions

View 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.base_prefix, 'share', 'locale')