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
7895562f
Kaydet (Commit)
7895562f
authored
Eki 13, 1998
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add class browser functionality.
üst
ae08d389
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
FileList.py
Tools/idle/FileList.py
+17
-0
No files found.
Tools/idle/FileList.py
Dosyayı görüntüle @
7895562f
...
...
@@ -33,6 +33,7 @@ class MultiEditorWindow(EditorWindow):
self
.
io
.
edit
=
self
self
.
text
.
bind
(
"<<open-new-window>>"
,
self
.
flist
.
new_callback
)
self
.
text
.
bind
(
"<<close-all-windows>>"
,
self
.
flist
.
close_all_callback
)
self
.
text
.
bind
(
"<<open-class-browser>>"
,
self
.
open_class_browser
)
def
close_hook
(
self
):
self
.
flist
.
close_edit
(
self
)
...
...
@@ -60,6 +61,22 @@ class MultiEditorWindow(EditorWindow):
def
openit
(
self
=
self
,
file
=
file
):
self
.
flist
.
open
(
file
)
wmenu
.
add_command
(
label
=
file
,
command
=
openit
)
def
open_class_browser
(
self
,
event
=
None
):
filename
=
self
.
io
.
filename
if
not
filename
:
tkMessageBox
.
showerror
(
"No filename"
,
"This buffer has no associated filename"
,
master
=
self
.
text
)
return
None
head
,
tail
=
os
.
path
.
split
(
filename
)
base
,
ext
=
os
.
path
.
splitext
(
tail
)
import
pyclbr
if
pyclbr
.
_modules
.
has_key
(
base
):
del
pyclbr
.
_modules
[
base
]
import
ClassBrowser
ClassBrowser
.
ClassBrowser
(
self
.
flist
,
base
)
class
FileList
:
...
...
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