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
a2946a43
Kaydet (Commit)
a2946a43
authored
Tem 24, 2006
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- EditorWindow.test() was failing. Bug 1417598
M EditorWindow.py M ScriptBinding.py M NEWS.txt
üst
b3c4d16e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
EditorWindow.py
Lib/idlelib/EditorWindow.py
+3
-2
NEWS.txt
Lib/idlelib/NEWS.txt
+2
-0
ScriptBinding.py
Lib/idlelib/ScriptBinding.py
+1
-1
No files found.
Lib/idlelib/EditorWindow.py
Dosyayı görüntüle @
a2946a43
...
...
@@ -95,11 +95,12 @@ class EditorWindow(object):
self
.
tkinter_vars
=
flist
.
vars
#self.top.instance_dict makes flist.inversedict avalable to
#configDialog.py so it can access all EditorWindow instaces
self
.
top
.
instance_dict
=
flist
.
inversedict
self
.
top
.
instance_dict
=
flist
.
inversedict
else
:
self
.
tkinter_vars
=
{}
# keys: Tkinter event names
# values: Tkinter variable instances
self
.
recent_files_path
=
os
.
path
.
join
(
idleConf
.
GetUserCfgDir
(),
self
.
top
.
instance_dict
=
{}
self
.
recent_files_path
=
os
.
path
.
join
(
idleConf
.
GetUserCfgDir
(),
'recent-files.lst'
)
self
.
vbar
=
vbar
=
Scrollbar
(
top
,
name
=
'vbar'
)
self
.
text_frame
=
text_frame
=
Frame
(
top
)
...
...
Lib/idlelib/NEWS.txt
Dosyayı görüntüle @
a2946a43
...
...
@@ -3,6 +3,8 @@ What's New in IDLE 1.2c1?
*Release date: XX-XXX-2006*
- EditorWindow.test() was failing. Bug 1417598
- EditorWindow failed when used stand-alone if sys.ps1 not set.
Bug 1010370 Dave Florek
...
...
Lib/idlelib/ScriptBinding.py
Dosyayı görüntüle @
a2946a43
...
...
@@ -51,7 +51,7 @@ class ScriptBinding:
# Provide instance variables referenced by Debugger
# XXX This should be done differently
self
.
flist
=
self
.
editwin
.
flist
self
.
root
=
self
.
flist
.
root
self
.
root
=
self
.
editwin
.
root
def
check_module_event
(
self
,
event
):
filename
=
self
.
getfilename
()
...
...
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