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
663a3904
Kaydet (Commit)
663a3904
authored
Nis 12, 2013
tarafından
Roger Serwy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
#17585: merge with 3.3.
üst
f1c42538
1eafd107
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
PyShell.py
Lib/idlelib/PyShell.py
+3
-0
site.py
Lib/site.py
+1
-6
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/idlelib/PyShell.py
Dosyayı görüntüle @
663a3904
...
@@ -1368,6 +1368,9 @@ class PseudoInputFile(PseudoFile):
...
@@ -1368,6 +1368,9 @@ class PseudoInputFile(PseudoFile):
self
.
_line_buffer
=
line
[
size
:]
self
.
_line_buffer
=
line
[
size
:]
return
line
[:
size
]
return
line
[:
size
]
def
close
(
self
):
self
.
shell
.
close
()
usage_msg
=
"""
\
usage_msg
=
"""
\
...
...
Lib/site.py
Dosyayı görüntüle @
663a3904
...
@@ -350,12 +350,7 @@ def setquit():
...
@@ -350,12 +350,7 @@ def setquit():
# Shells like IDLE catch the SystemExit, but listen when their
# Shells like IDLE catch the SystemExit, but listen when their
# stdin wrapper is closed.
# stdin wrapper is closed.
try
:
try
:
fd
=
-
1
sys
.
stdin
.
close
()
if
hasattr
(
sys
.
stdin
,
"fileno"
):
fd
=
sys
.
stdin
.
fileno
()
if
fd
!=
0
:
# Don't close stdin if it wraps fd 0
sys
.
stdin
.
close
()
except
:
except
:
pass
pass
raise
SystemExit
(
code
)
raise
SystemExit
(
code
)
...
...
Misc/NEWS
Dosyayı görüntüle @
663a3904
...
@@ -1060,6 +1060,8 @@ _ Issue #17385: Fix quadratic behavior in threading.Condition. The FIFO
...
@@ -1060,6 +1060,8 @@ _ Issue #17385: Fix quadratic behavior in threading.Condition. The FIFO
IDLE
IDLE
----
----
- Issue #17585: Fixed IDLE regression. Now closes when using exit() or quit().
- Issue #17657: Show full Tk version in IDLE'
s
about
dialog
.
- Issue #17657: Show full Tk version in IDLE'
s
about
dialog
.
Patch
by
Todd
Rovito
.
Patch
by
Todd
Rovito
.
...
...
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