mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fall back to ascii if the locale module cannot be loaded.
This commit is contained in:
parent
10f07c41e6
commit
d78d3b4541
1 changed files with 7 additions and 2 deletions
|
@ -976,8 +976,13 @@ class TextIOWrapper(TextIOBase):
|
|||
except AttributeError:
|
||||
pass
|
||||
if encoding is None:
|
||||
import locale
|
||||
encoding = locale.getpreferredencoding()
|
||||
try:
|
||||
import locale
|
||||
except ImportError:
|
||||
# Importing locale may fail if Python is being built
|
||||
encoding = "ascii"
|
||||
else:
|
||||
encoding = locale.getpreferredencoding()
|
||||
|
||||
self.buffer = buffer
|
||||
self._encoding = encoding
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue