Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
7c010ee0
Kaydet (Commit)
7c010ee0
authored
Mar 21, 2012
tarafından
Andrew Svetlov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#3573: idle now doesn't hungs if launched as: idle -e <directory>
Patch by Guilherme Polo.
üst
3d3cf48e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
2 deletions
+14
-2
NEWS.txt
Lib/idlelib/NEWS.txt
+7
-0
PyShell.py
Lib/idlelib/PyShell.py
+4
-2
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/idlelib/NEWS.txt
Dosyayı görüntüle @
7c010ee0
What's New in IDLE 2.7.3?
=======================
- Issue #3573: IDLE hangs when passing invalid command line args
(directory(ies) instead of file(s)).
What's New in IDLE 2.7.2?
=======================
...
...
Lib/idlelib/PyShell.py
Dosyayı görüntüle @
7c010ee0
...
...
@@ -1412,8 +1412,10 @@ def main():
if
enable_edit
:
if
not
(
cmd
or
script
):
for
filename
in
args
:
flist
.
open
(
filename
)
for
filename
in
args
[:]:
if
flist
.
open
(
filename
)
is
None
:
# filename is a directory actually, disconsider it
args
.
remove
(
filename
)
if
not
args
:
flist
.
new
()
if
enable_shell
:
...
...
Misc/NEWS
Dosyayı görüntüle @
7c010ee0
...
...
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
-
Issue
#
3573
:
IDLE
hangs
when
passing
invalid
command
line
args
(
directory
(
ies
)
instead
of
file
(
s
))
(
Patch
by
Guilherme
Polo
)
-
Issue
#
13694
:
asynchronous
connect
in
asyncore
.
dispatcher
does
not
set
addr
attribute
.
...
...
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