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
30d5e6c1
Kaydet (Commit)
30d5e6c1
authored
Tem 25, 2012
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #7163: Propagate return value of sys.stdout.write.
Patch by Roger Serwy.
üst
c882b7c5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
3 deletions
+7
-3
NEWS.txt
Lib/idlelib/NEWS.txt
+2
-0
OutputWindow.py
Lib/idlelib/OutputWindow.py
+1
-0
PyShell.py
Lib/idlelib/PyShell.py
+4
-3
No files found.
Lib/idlelib/NEWS.txt
Dosyayı görüntüle @
30d5e6c1
What's New in IDLE 3.2.4?
=========================
- Issue #7163: Propagate return value of sys.stdout.write.
- Issue #15318: Prevent writing to sys.stdin.
- Issue #13532, #15319: Check that arguments to sys.stdout.write are strings.
...
...
Lib/idlelib/OutputWindow.py
Dosyayı görüntüle @
30d5e6c1
...
...
@@ -40,6 +40,7 @@ class OutputWindow(EditorWindow):
self
.
text
.
insert
(
mark
,
s
,
tags
)
self
.
text
.
see
(
mark
)
self
.
text
.
update
()
return
len
(
s
)
def
writelines
(
self
,
lines
):
for
line
in
lines
:
...
...
Lib/idlelib/PyShell.py
Dosyayı görüntüle @
30d5e6c1
...
...
@@ -760,7 +760,7 @@ class ModifiedInterpreter(InteractiveInterpreter):
def
write
(
self
,
s
):
"Override base class method"
self
.
tkconsole
.
stderr
.
write
(
s
)
return
self
.
tkconsole
.
stderr
.
write
(
s
)
def
display_port_binding_error
(
self
):
tkMessageBox
.
showerror
(
...
...
@@ -1229,7 +1229,7 @@ class PyShell(OutputWindow):
def
write
(
self
,
s
,
tags
=
()):
try
:
self
.
text
.
mark_gravity
(
"iomark"
,
"right"
)
OutputWindow
.
write
(
self
,
s
,
tags
,
"iomark"
)
count
=
OutputWindow
.
write
(
self
,
s
,
tags
,
"iomark"
)
self
.
text
.
mark_gravity
(
"iomark"
,
"left"
)
except
:
raise
###pass # ### 11Aug07 KBK if we are expecting exceptions
...
...
@@ -1238,6 +1238,7 @@ class PyShell(OutputWindow):
self
.
canceled
=
0
if
not
use_subprocess
:
raise
KeyboardInterrupt
return
count
class
PseudoFile
(
object
):
...
...
@@ -1249,7 +1250,7 @@ class PseudoFile(object):
def
write
(
self
,
s
):
if
not
isinstance
(
s
,
str
):
raise
TypeError
(
'must be str, not '
+
type
(
s
)
.
__name__
)
self
.
shell
.
write
(
s
,
self
.
tags
)
return
self
.
shell
.
write
(
s
,
self
.
tags
)
def
writelines
(
self
,
lines
):
for
line
in
lines
:
...
...
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