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
fbc3c3c2
Kaydet (Commit)
fbc3c3c2
authored
Eki 13, 2013
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #17730: in code.interact(), when banner="", do not print anything.
Also adds tests for banner printing.
üst
a8fc7f6f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
2 deletions
+19
-2
code.rst
Doc/library/code.rst
+4
-1
code.py
Lib/code.py
+1
-1
test_code_module.py
Lib/test/test_code_module.py
+14
-0
No files found.
Doc/library/code.rst
Dosyayı görüntüle @
fbc3c3c2
...
...
@@ -132,12 +132,15 @@ interpreter objects as well as the following additions.
.. method:: InteractiveConsole.interact(banner=None)
Closely emulate the interactive Python console. The optional
banner
argument
Closely emulate the interactive Python console. The optional
*banner*
argument
specify the banner to print before the first interaction; by default it prints a
banner similar to the one printed by the standard Python interpreter, followed
by the class name of the console object in parentheses (so as not to confuse
this with the real interpreter -- since it's so close!).
.. versionchanged:: 3.4
To suppress printing any banner, pass an empty string.
.. method:: InteractiveConsole.push(line)
...
...
Lib/code.py
Dosyayı görüntüle @
fbc3c3c2
...
...
@@ -216,7 +216,7 @@ class InteractiveConsole(InteractiveInterpreter):
self
.
write
(
"Python
%
s on
%
s
\n
%
s
\n
(
%
s)
\n
"
%
(
sys
.
version
,
sys
.
platform
,
cprt
,
self
.
__class__
.
__name__
))
el
se
:
el
if
banner
:
self
.
write
(
"
%
s
\n
"
%
str
(
banner
))
more
=
0
while
1
:
...
...
Lib/test/test_code_module.py
Dosyayı görüntüle @
fbc3c3c2
...
...
@@ -64,6 +64,20 @@ class TestInteractiveConsole(unittest.TestCase):
self
.
console
.
interact
()
self
.
assertTrue
(
hook
.
called
)
def
test_banner
(
self
):
# with banner
self
.
infunc
.
side_effect
=
EOFError
(
'Finished'
)
self
.
console
.
interact
(
banner
=
'Foo'
)
self
.
assertEqual
(
len
(
self
.
stderr
.
method_calls
),
2
)
banner_call
=
self
.
stderr
.
method_calls
[
0
]
self
.
assertEqual
(
banner_call
,
[
'write'
,
(
'Foo
\n
'
,),
{}])
# no banner
self
.
stderr
.
reset_mock
()
self
.
infunc
.
side_effect
=
EOFError
(
'Finished'
)
self
.
console
.
interact
(
banner
=
''
)
self
.
assertEqual
(
len
(
self
.
stderr
.
method_calls
),
1
)
def
test_main
():
support
.
run_unittest
(
TestInteractiveConsole
)
...
...
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