diff options
Diffstat (limited to 'Lib/copy.py')
-rw-r--r-- | Lib/copy.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/copy.py b/Lib/copy.py index cdd2fdf8d38..123162cba1c 100644 --- a/Lib/copy.py +++ b/Lib/copy.py @@ -61,6 +61,8 @@ try: except ImportError: PyStringMap = None +__all__ = ["Error","error","copy","deepcopy"] + def copy(x): """Shallow copy operation on arbitrary Python objects. |