mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Fix test_wsgiref that used StringIO and a BufferedReader rather than
real files. This code assumed that fileno() would succeed which wasn't the case.
This commit is contained in:
parent
9264ecd799
commit
1e50a9f7cc
1 changed files with 2 additions and 1 deletions
|
@ -34,6 +34,7 @@ import os
|
||||||
import sys
|
import sys
|
||||||
import codecs
|
import codecs
|
||||||
import _fileio
|
import _fileio
|
||||||
|
import io
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
# XXX Shouldn't we use st_blksize whenever we can?
|
# XXX Shouldn't we use st_blksize whenever we can?
|
||||||
|
@ -973,7 +974,7 @@ class TextIOWrapper(TextIOBase):
|
||||||
if encoding is None:
|
if encoding is None:
|
||||||
try:
|
try:
|
||||||
encoding = os.device_encoding(buffer.fileno())
|
encoding = os.device_encoding(buffer.fileno())
|
||||||
except AttributeError:
|
except (AttributeError, io.UnsupportedOperation):
|
||||||
pass
|
pass
|
||||||
if encoding is None:
|
if encoding is None:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue