summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-07 11:31:20 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-07 11:31:20 (GMT)
commit606ab86c0e11eb00fc276c694bff9d7f9239d538 (patch)
treecf5d3b34fcee94d247e8d3e53ac2bbe5517a3882 /Lib
parent5adfac2c1b7fb4f0782d097e7e0e6c5614965634 (diff)
downloadcpython-606ab86c0e11eb00fc276c694bff9d7f9239d538.zip
cpython-606ab86c0e11eb00fc276c694bff9d7f9239d538.tar.gz
cpython-606ab86c0e11eb00fc276c694bff9d7f9239d538.tar.bz2
Change order of io.UnsupportedOperation base classes.
This makes tests passing after changes by issue #5322.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/_pyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py
index 0d98b74..f2fe447 100644
--- a/Lib/_pyio.py
+++ b/Lib/_pyio.py
@@ -276,7 +276,7 @@ class OpenWrapper:
try:
UnsupportedOperation = io.UnsupportedOperation
except AttributeError:
- class UnsupportedOperation(ValueError, OSError):
+ class UnsupportedOperation(OSError, ValueError):
pass