]> granicus.if.org Git - python/commitdiff
Add extension management to __all__.
authorGuido van Rossum <guido@python.org>
Fri, 31 Jan 2003 20:34:07 +0000 (20:34 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 31 Jan 2003 20:34:07 +0000 (20:34 +0000)
Lib/copy_reg.py

index 1276564b326cda9b2e33931744ac63e068b6170b..cf801cb584d7d0f3e221b8f089497bde707c8d44 100644 (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 = {}