diff options
author | Skip Montanaro <skip@pobox.com> | 2001-01-23 15:35:05 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-01-23 15:35:05 (GMT) |
commit | 2dd4276559658e06eaf8b623c2c47373f1f50688 (patch) | |
tree | 22d257d3db8d9db2380a85608e4bf9a66f9b2df4 /Lib/gettext.py | |
parent | 26e94a8822ba6935a74db098de134cc20fd4db2f (diff) | |
download | cpython-2dd4276559658e06eaf8b623c2c47373f1f50688.zip cpython-2dd4276559658e06eaf8b623c2c47373f1f50688.tar.gz cpython-2dd4276559658e06eaf8b623c2c47373f1f50688.tar.bz2 |
added a few more __all__ lists
fixed typo in ihooks docstring
Diffstat (limited to 'Lib/gettext.py')
-rw-r--r-- | Lib/gettext.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/gettext.py b/Lib/gettext.py index 7ef4259..638d4ae 100644 --- a/Lib/gettext.py +++ b/Lib/gettext.py @@ -48,6 +48,9 @@ import sys import struct from errno import ENOENT +__all__ = ["bindtextdomain","textdomain","gettext","dgettext", + "find","translation","install","Catalog"] + _default_localedir = os.path.join(sys.prefix, 'share', 'locale') |