diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-07 11:32:09 (GMT) |
|---|---|---|
| committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-07 11:32:09 (GMT) |
| commit | d7d266c11387388bb1abe739e9011f5219861b63 (patch) | |
| tree | 79f3aeead4e5964afcb4884508b1d754577f6f69 /Lib/_pyio.py | |
| parent | 09e4a695d17f35375d3a2298ef78fae0e27af8ce (diff) | |
| parent | 427f10b442bd4747262069596095cc3a8e0458e6 (diff) | |
| download | cpython-d7d266c11387388bb1abe739e9011f5219861b63.zip cpython-d7d266c11387388bb1abe739e9011f5219861b63.tar.gz cpython-d7d266c11387388bb1abe739e9011f5219861b63.tar.bz2 | |
Merge from 3.6.
Diffstat (limited to 'Lib/_pyio.py')
| -rw-r--r-- | Lib/_pyio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py index 569527b..8f93976 100644 --- a/Lib/_pyio.py +++ b/Lib/_pyio.py @@ -277,7 +277,7 @@ class OpenWrapper: try: UnsupportedOperation = io.UnsupportedOperation except AttributeError: - class UnsupportedOperation(ValueError, OSError): + class UnsupportedOperation(OSError, ValueError): pass |
