Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9ae3f7a1
Commit
9ae3f7a1
authored
Jul 09, 2012
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #13532: Check that arguments to sys.stdout.write are strings.
parent
44dea9d0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
3 deletions
+25
-3
Lib/idlelib/NEWS.txt
Lib/idlelib/NEWS.txt
+2
-0
Lib/idlelib/PyShell.py
Lib/idlelib/PyShell.py
+2
-0
Lib/idlelib/run.py
Lib/idlelib/run.py
+21
-3
No files found.
Lib/idlelib/NEWS.txt
View file @
9ae3f7a1
What's New in IDLE 3.2.4?
=========================
- Issue #13532: Check that arguments to sys.stdout.write are strings.
- Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE.
Erroneous tool tips have been corrected. Default added for callables.
...
...
Lib/idlelib/PyShell.py
View file @
9ae3f7a1
...
...
@@ -1242,6 +1242,8 @@ class PseudoFile(object):
self
.
encoding
=
encoding
def
write
(
self
,
s
):
if
not
isinstance
(
s
,
str
):
raise
TypeError
(
'must be str, not '
+
type
(
s
).
__name__
)
self
.
shell
.
write
(
s
,
self
.
tags
)
def
writelines
(
self
,
lines
):
...
...
Lib/idlelib/run.py
View file @
9ae3f7a1
import
sys
import
io
import
linecache
import
time
import
socket
...
...
@@ -244,6 +245,23 @@ class MyRPCServer(rpc.RPCServer):
quitting
=
True
thread
.
interrupt_main
()
class
_RPCFile
(
io
.
TextIOBase
):
"""Wrapper class for the RPC proxy to typecheck arguments
that may not support pickling."""
def
__init__
(
self
,
rpc
):
super
.
__setattr__
(
self
,
'rpc'
,
rpc
)
def
__getattr__
(
self
,
name
):
return
getattr
(
self
.
rpc
,
name
)
def
__setattr__
(
self
,
name
,
value
):
return
setattr
(
self
.
rpc
,
name
,
value
)
def
write
(
self
,
s
):
if
not
isinstance
(
s
,
str
):
raise
TypeError
(
'must be str, not '
+
type
(
s
).
__name__
)
return
self
.
rpc
.
write
(
s
)
class
MyHandler
(
rpc
.
RPCHandler
):
...
...
@@ -251,9 +269,9 @@ class MyHandler(rpc.RPCHandler):
"""Override base method"""
executive
=
Executive
(
self
)
self
.
register
(
"exec"
,
executive
)
sys
.
stdin
=
self
.
console
=
self
.
get_remote_proxy
(
"stdin"
)
sys
.
stdout
=
self
.
get_remote_proxy
(
"stdout"
)
sys
.
stderr
=
self
.
get_remote_proxy
(
"stderr"
)
sys
.
stdin
=
self
.
console
=
_RPCFile
(
self
.
get_remote_proxy
(
"stdin"
)
)
sys
.
stdout
=
_RPCFile
(
self
.
get_remote_proxy
(
"stdout"
)
)
sys
.
stderr
=
_RPCFile
(
self
.
get_remote_proxy
(
"stderr"
)
)
# page help() text to shell.
import
pydoc
# import must be done here to capture i/o binding
pydoc
.
pager
=
pydoc
.
plainpager
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment