mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
Convert characters from the locale's encoding on output.
Reject characters outside the locale's encoding on input.
This commit is contained in:
parent
3ddb856ed1
commit
75ea1e11dc
2 changed files with 15 additions and 1 deletions
|
|
@ -191,7 +191,12 @@ def runsource(self, source):
|
|||
warnings.filterwarnings(action="error", category=SyntaxWarning)
|
||||
if isinstance(source, types.UnicodeType):
|
||||
import IOBinding
|
||||
source = source.encode(IOBinding.encoding)
|
||||
try:
|
||||
source = source.encode(IOBinding.encoding)
|
||||
except UnicodeError:
|
||||
self.tkconsole.resetoutput()
|
||||
self.write("Unsupported characters in input")
|
||||
return
|
||||
try:
|
||||
return InteractiveInterpreter.runsource(self, source, filename)
|
||||
finally:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue