diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-11-01 09:05:36 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-11-01 09:05:36 (GMT) |
commit | 89122706296148dad0994b6c9b317af77e0ada58 (patch) | |
tree | b9357301fcfc6c7f571dbf606ca456e81bc2decb /Lib/shutil.py | |
parent | 8f791d358bb1e26144c61a938628731e7e05e596 (diff) | |
parent | 8083cd6c3bd8970de4bb592a0973169733f32b94 (diff) | |
download | cpython-89122706296148dad0994b6c9b317af77e0ada58.zip cpython-89122706296148dad0994b6c9b317af77e0ada58.tar.gz cpython-89122706296148dad0994b6c9b317af77e0ada58.tar.bz2 |
Issue #22665: Add missing get_terminal_size and SameFileError to shutil.__all__.
Diffstat (limited to 'Lib/shutil.py')
-rw-r--r-- | Lib/shutil.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/shutil.py b/Lib/shutil.py index c2c66de..34a6511 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -42,7 +42,8 @@ __all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2", "register_archive_format", "unregister_archive_format", "get_unpack_formats", "register_unpack_format", "unregister_unpack_format", "unpack_archive", - "ignore_patterns", "chown", "which"] + "ignore_patterns", "chown", "which", "get_terminal_size", + "SameFileError"] # disk_usage is added later, if available on the platform class Error(OSError): |