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
a1c42a92
Kaydet (Commit)
a1c42a92
authored
Agu 29, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make test_cmd_line work with strict str/bytes.
üst
a8be92b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
test_cmd_line.py
Lib/test/test_cmd_line.py
+4
-4
No files found.
Lib/test/test_cmd_line.py
Dosyayı görüntüle @
a1c42a92
...
...
@@ -35,7 +35,7 @@ class CmdLineTest(unittest.TestCase):
def
verify_valid_flag
(
self
,
cmd_line
):
data
=
self
.
start_python
(
cmd_line
)
self
.
assertTrue
(
data
==
b
''
or
data
.
endswith
(
'
\n
'
))
self
.
assertTrue
(
data
==
b
''
or
data
.
endswith
(
b
'
\n
'
))
self
.
assertTrue
(
b
'Traceback'
not
in
data
)
def
test_environment
(
self
):
...
...
@@ -58,7 +58,7 @@ class CmdLineTest(unittest.TestCase):
self
.
assertTrue
(
b
'usage'
in
self
.
start_python
(
'-h'
))
def
test_version
(
self
):
version
=
'Python
%
d.
%
d'
%
sys
.
version_info
[:
2
]
version
=
(
'Python
%
d.
%
d'
%
sys
.
version_info
[:
2
])
.
encode
(
"ascii"
)
self
.
assertTrue
(
self
.
start_python
(
'-V'
)
.
startswith
(
version
))
def
test_run_module
(
self
):
...
...
@@ -84,8 +84,8 @@ class CmdLineTest(unittest.TestCase):
# Runs the timeit module and checks the __main__
# namespace has been populated appropriately
p
=
_spawn_python
(
'-i'
,
'-m'
,
'timeit'
,
'-n'
,
'1'
)
p
.
stdin
.
write
(
'Timer
\n
'
)
p
.
stdin
.
write
(
'exit()
\n
'
)
p
.
stdin
.
write
(
b
'Timer
\n
'
)
p
.
stdin
.
write
(
b
'exit()
\n
'
)
data
=
_kill_python
(
p
)
self
.
assertTrue
(
data
.
find
(
b
'1 loop'
)
!=
-
1
)
self
.
assertTrue
(
data
.
find
(
b
'__main__.Timer'
)
!=
-
1
)
...
...
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