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
e16265d3
Kaydet (Commit)
e16265d3
authored
Ock 05, 2017
tarafından
Terry Jan Reedy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #29162: Don't depend on 'from tkinter import *' importing sys.
Fix error in format string.
üst
2a352b66
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pyshell.py
Lib/idlelib/pyshell.py
+3
-3
No files found.
Lib/idlelib/pyshell.py
Dosyayı görüntüle @
e16265d3
...
...
@@ -5,15 +5,15 @@ try:
except
ImportError
:
print
(
"** IDLE can't import Tkinter.
\n
"
"Your Python may not be configured for Tk. **"
,
file
=
sys
.
__stderr__
)
sys
.
e
xit
(
1
)
raise
SystemE
xit
(
1
)
import
tkinter.messagebox
as
tkMessageBox
if
TkVersion
<
8.5
:
root
=
Tk
()
# otherwise create root in main
root
.
withdraw
()
tkMessageBox
.
showerror
(
"Idle Cannot Start"
,
"Idle requires tcl/tk 8.5+, not
$
s."
%
TkVersion
,
"Idle requires tcl/tk 8.5+, not
%
s."
%
TkVersion
,
parent
=
root
)
sys
.
e
xit
(
1
)
raise
SystemE
xit
(
1
)
from
code
import
InteractiveInterpreter
import
getopt
...
...
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