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
c35151cf
Kaydet (Commit)
c35151cf
authored
Nis 01, 2013
tarafından
Roger Serwy
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#6698: IDLE now opens just an editor window when configured to do so.
üst
420e2d8e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
PyShell.py
Lib/idlelib/PyShell.py
+2
-2
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/idlelib/PyShell.py
Dosyayı görüntüle @
c35151cf
...
...
@@ -1409,7 +1409,7 @@ def main():
global
flist
,
root
,
use_subprocess
use_subprocess
=
True
enable_shell
=
Tru
e
enable_shell
=
Fals
e
enable_edit
=
False
debug
=
False
cmd
=
None
...
...
@@ -1430,7 +1430,6 @@ def main():
enable_shell
=
True
if
o
==
'-e'
:
enable_edit
=
True
enable_shell
=
False
if
o
==
'-h'
:
sys
.
stdout
.
write
(
usage_msg
)
sys
.
exit
()
...
...
@@ -1481,6 +1480,7 @@ def main():
edit_start
=
idleConf
.
GetOption
(
'main'
,
'General'
,
'editor-on-startup'
,
type
=
'bool'
)
enable_edit
=
enable_edit
or
edit_start
enable_shell
=
enable_shell
or
not
enable_edit
# start editor and/or shell windows:
root
=
Tk
(
className
=
"Idle"
)
...
...
Misc/NEWS
Dosyayı görüntüle @
c35151cf
...
...
@@ -15,6 +15,8 @@ Core and Builtins
Library
-------
- Issue #6698: IDLE now opens just an editor window when configured to do so.
- Issue #8900: Using keyboard shortcuts in IDLE to open a file no longer
raises an exception.
...
...
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