summaryrefslogtreecommitdiffstats
path: root/Lib/copy_reg.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-01-31 20:34:07 (GMT)
committerGuido van Rossum <guido@python.org>2003-01-31 20:34:07 (GMT)
commitcf356fd86530d0ea224a7a0c950058e8ba65f1a5 (patch)
tree351d9d345f144ef4233c90f73d1654c4c6e8350e /Lib/copy_reg.py
parent7eff63abce7b1e464ef45ea163a7f6bd15ee1d4a (diff)
downloadcpython-cf356fd86530d0ea224a7a0c950058e8ba65f1a5.zip
cpython-cf356fd86530d0ea224a7a0c950058e8ba65f1a5.tar.gz
cpython-cf356fd86530d0ea224a7a0c950058e8ba65f1a5.tar.bz2
Add extension management to __all__.
Diffstat (limited to 'Lib/copy_reg.py')
-rw-r--r--Lib/copy_reg.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/copy_reg.py b/Lib/copy_reg.py
index 1276564..cf801cb 100644
--- a/Lib/copy_reg.py
+++ b/Lib/copy_reg.py
@@ -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 = {}