diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/copy_reg.py | 3 |
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 = {} |