summaryrefslogtreecommitdiff
path: root/Lib/_pyio.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-07 13:32:09 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-07 13:32:09 +0200
commitd7d266c11387388bb1abe739e9011f5219861b63 (patch)
tree79f3aeead4e5964afcb4884508b1d754577f6f69 /Lib/_pyio.py
parent09e4a695d17f35375d3a2298ef78fae0e27af8ce (diff)
parent427f10b442bd4747262069596095cc3a8e0458e6 (diff)
downloadcpython-git-d7d266c11387388bb1abe739e9011f5219861b63.tar.gz
Merge from 3.6.
Diffstat (limited to 'Lib/_pyio.py')
-rw-r--r--Lib/_pyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
index 569527bc37..8f9397660b 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