diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-07 11:31:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-07 11:31:47 (GMT) |
commit | 427f10b442bd4747262069596095cc3a8e0458e6 (patch) | |
tree | fffa5536886689fb360c15440205cf5d7bf97475 /Lib/_pyio.py | |
parent | 2c5a830f2ac654e643eaa29ef60bd51977700376 (diff) | |
parent | 606ab86c0e11eb00fc276c694bff9d7f9239d538 (diff) | |
download | cpython-427f10b442bd4747262069596095cc3a8e0458e6.zip cpython-427f10b442bd4747262069596095cc3a8e0458e6.tar.gz cpython-427f10b442bd4747262069596095cc3a8e0458e6.tar.bz2 |
Merge from 3.5.
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 d0947f0..2ebfb05 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 |