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
c65ef9bf
Kaydet (Commit)
c65ef9bf
authored
Tem 10, 2012
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #4832: Modify IDLE to save files with .py extension by
default on Windows and OS X as it already does with X11 Tk.
üst
78da3bc0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
IOBinding.py
Lib/idlelib/IOBinding.py
+6
-2
NEWS.txt
Lib/idlelib/NEWS.txt
+3
-0
No files found.
Lib/idlelib/IOBinding.py
Dosyayı görüntüle @
c65ef9bf
...
...
@@ -485,6 +485,8 @@ class IOBinding:
(
"All files"
,
"*"
),
]
defaultextension
=
'.py'
if
sys
.
platform
==
'darwin'
else
''
def
askopenfile
(
self
):
dir
,
base
=
self
.
defaultfilename
(
"open"
)
if
not
self
.
opendialog
:
...
...
@@ -508,8 +510,10 @@ class IOBinding:
def
asksavefile
(
self
):
dir
,
base
=
self
.
defaultfilename
(
"save"
)
if
not
self
.
savedialog
:
self
.
savedialog
=
tkFileDialog
.
SaveAs
(
master
=
self
.
text
,
filetypes
=
self
.
filetypes
)
self
.
savedialog
=
tkFileDialog
.
SaveAs
(
master
=
self
.
text
,
filetypes
=
self
.
filetypes
,
defaultextension
=
self
.
defaultextension
)
filename
=
self
.
savedialog
.
show
(
initialdir
=
dir
,
initialfile
=
base
)
return
filename
...
...
Lib/idlelib/NEWS.txt
Dosyayı görüntüle @
c65ef9bf
What's New in IDLE 3.3.0?
=========================
- Issue #4832: Modify IDLE to save files with .py extension by
default on Windows and OS X (Tk 8.5) as it already does with X11 Tk.
- Issue #13532, #15319: Check that arguments to sys.stdout.write are strings.
- Issue # 12510: Attempt to get certain tool tips no longer crashes IDLE.
...
...
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