Issue #22665: Add missing get_terminal_size and SameFileError to shutil.__all__.

This commit is contained in:
Berker Peksag 2014-11-01 11:04:06 +02:00
parent e1d26f377e
commit 8083cd6c3b
3 changed files with 23 additions and 1 deletions

View file

@ -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):