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
70f6d997
Kaydet (Commit)
70f6d997
authored
Nis 22, 1999
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Moved classes OnDemandOutputWindow and PseudoFile here,
from ScriptBinding.py where they are no longer needed.
üst
1f3de5d7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
OutputWindow.py
Tools/idle/OutputWindow.py
+44
-0
No files found.
Tools/idle/OutputWindow.py
Dosyayı görüntüle @
70f6d997
...
...
@@ -91,3 +91,47 @@ class OutputWindow(EditorWindow):
self
.
text
.
bell
()
return
edit
.
gotoline
(
lineno
)
# These classes are currently not used but might come in handy
class
OnDemandOutputWindow
:
tagdefs
=
{
# XXX Should use IdlePrefs.ColorPrefs
"stdout"
:
{
"foreground"
:
"blue"
},
"stderr"
:
{
"foreground"
:
"#007700"
},
}
def
__init__
(
self
,
flist
):
self
.
flist
=
flist
self
.
owin
=
None
def
write
(
self
,
s
,
tags
,
mark
):
if
not
self
.
owin
:
self
.
setup
()
self
.
owin
.
write
(
s
,
tags
,
mark
)
def
setup
(
self
):
self
.
owin
=
owin
=
OutputWindow
(
self
.
flist
)
text
=
owin
.
text
for
tag
,
cnf
in
self
.
tagdefs
.
items
():
if
cnf
:
apply
(
text
.
tag_configure
,
(
tag
,),
cnf
)
text
.
tag_raise
(
'sel'
)
self
.
write
=
self
.
owin
.
write
class
PseudoFile
:
def
__init__
(
self
,
owin
,
tags
,
mark
=
"end"
):
self
.
owin
=
owin
self
.
tags
=
tags
self
.
mark
=
mark
def
write
(
self
,
s
):
self
.
owin
.
write
(
s
,
self
.
tags
,
self
.
mark
)
def
writelines
(
self
,
l
):
map
(
self
.
write
,
l
)
def
flush
(
self
):
pass
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