diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2014-11-01 11:04:06 +0200 |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2014-11-01 11:04:06 +0200 |
commit | 8083cd6c3bd8970de4bb592a0973169733f32b94 (patch) | |
tree | 79071c1f55e52ded513fd8cbb99a29845bf62368 /Lib/shutil.py | |
parent | e1d26f377eb911aa6a6c5f666ba9c71c65b85695 (diff) | |
download | cpython-git-8083cd6c3bd8970de4bb592a0973169733f32b94.tar.gz |
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 0cd6ec48e1..b5e7cbe3d5 100644 --- a/Lib/shutil.py +++ b/Lib/shutil.py @@ -36,7 +36,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): |