summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-05-08 02:19:42 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-05-08 02:19:42 (GMT)
commitbbf83933c5c6e8d5d171c11fb1c8feeeb825bcf3 (patch)
treecbbf45d5471d9476ad9e90d39c5b3d787c7c3c9f /Lib
parent106802547c0180a29a8a55640d1f5b8ae670d657 (diff)
downloadcpython-bbf83933c5c6e8d5d171c11fb1c8feeeb825bcf3.zip
cpython-bbf83933c5c6e8d5d171c11fb1c8feeeb825bcf3.tar.gz
cpython-bbf83933c5c6e8d5d171c11fb1c8feeeb825bcf3.tar.bz2
explicitly set UnsupportedOperation's module rather than relying on incorrect globals on startup (closes #14745)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/io.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/io.py b/Lib/io.py
index 87fab92..6c7cec9 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -67,6 +67,9 @@ from _io import (DEFAULT_BUFFER_SIZE, BlockingIOError, UnsupportedOperation,
OpenWrapper = _io.open # for compatibility with _pyio
+# Pretend this exception was created here.
+UnsupportedOperation.__module__ = "io"
+
# for seek()
SEEK_SET = 0
SEEK_CUR = 1