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
6b6e4376
Commit
6b6e4376
authored
Mar 20, 2012
by
Andrew Svetlov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#3573: idle now doesn't hungs if launched as: idle -e <directory>
Patch by Guilherme Polo.
parent
669b755c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
Lib/idlelib/PyShell.py
Lib/idlelib/PyShell.py
+4
-2
Misc/NEWS
Misc/NEWS
+5
-0
No files found.
Lib/idlelib/PyShell.py
View file @
6b6e4376
...
@@ -1403,8 +1403,10 @@ def main():
...
@@ -1403,8 +1403,10 @@ def main():
if
enable_edit
:
if
enable_edit
:
if
not
(
cmd
or
script
):
if
not
(
cmd
or
script
):
for
filename
in
args
:
for
filename
in
args
[:]:
flist
.
open
(
filename
)
if
flist
.
open
(
filename
)
is
None
:
# filename is a directory actually, disconsider it
args
.
remove
(
filename
)
if
not
args
:
if
not
args
:
flist
.
new
()
flist
.
new
()
if
enable_shell
:
if
enable_shell
:
...
...
Misc/NEWS
View file @
6b6e4376
...
@@ -10,6 +10,11 @@ What's New in Python 3.3.0 Alpha 2?
...
@@ -10,6 +10,11 @@ What's New in Python 3.3.0 Alpha 2?
Core and Builtins
Core and Builtins
-----------------
-----------------
- Issue #3573: IDLE hangs when passing invalid command line args
(directory(ies) instead of file(s))
Thanks to Guilherme Polo for patch and to Roger Serwy for review.
- Issue #1683368: object.__new__ and object.__init__ raise a TypeError if they
- Issue #1683368: object.__new__ and object.__init__ raise a TypeError if they
are passed arguments and their complementary method is not overridden.
are passed arguments and their complementary method is not overridden.
...
...
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