Add extension management to __all__.

This commit is contained in:
Guido van Rossum 2003-01-31 20:34:07 +00:00
parent 7eff63abce
commit cf356fd865
1 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,8 @@ C, not for instances of user-defined classes.
from types import ClassType as _ClassType
__all__ = ["pickle","constructor"]
__all__ = ["pickle", "constructor",
"add_extension", "remove_extension", "clear_extension_cache"]
dispatch_table = {}
safe_constructors = {}