summaryrefslogtreecommitdiff
path: root/Lib/io.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/io.py')
-rw-r--r--Lib/io.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/io.py b/Lib/io.py
index 710027852b..68ee4df338 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -34,7 +34,6 @@ import abc
import sys
import codecs
import _fileio
-import io
import warnings
# open() uses st_blksize whenever we can
@@ -1031,7 +1030,7 @@ class TextIOWrapper(TextIOBase):
if encoding is None:
try:
encoding = os.device_encoding(buffer.fileno())
- except (AttributeError, io.UnsupportedOperation):
+ except (AttributeError, UnsupportedOperation):
pass
if encoding is None:
try: