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
b1629141
Kaydet (Commit)
b1629141
authored
Nis 02, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #16840: Fixed test_tcl for Tcl < 8.5.
üst
9fe562b4
2379d541
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
test_tcl.py
Lib/test/test_tcl.py
+4
-4
No files found.
Lib/test/test_tcl.py
Dosyayı görüntüle @
b1629141
...
...
@@ -143,7 +143,9 @@ class TclTest(unittest.TestCase):
tcl
=
self
.
interp
.
tk
for
i
in
self
.
get_integers
():
self
.
assertEqual
(
tcl
.
getint
(
'
%
d '
%
i
),
i
)
self
.
assertEqual
(
tcl
.
getint
(
'
%#
o '
%
i
),
i
)
if
tcl_version
>=
(
8
,
5
):
self
.
assertEqual
(
tcl
.
getint
(
'
%#
o '
%
i
),
i
)
self
.
assertEqual
(
tcl
.
getint
((
'
%#
o '
%
i
)
.
replace
(
'o'
,
''
)),
i
)
self
.
assertEqual
(
tcl
.
getint
(
'
%#
x '
%
i
),
i
)
if
tcl_version
<
(
8
,
5
):
# bignum was added in Tcl 8.5
self
.
assertRaises
(
TclError
,
tcl
.
getint
,
str
(
2
**
1000
))
...
...
@@ -420,9 +422,7 @@ class TclTest(unittest.TestCase):
self
.
assertEqual
(
result
,
str
(
i
))
self
.
assertIsInstance
(
result
,
str
)
if
tcl_version
<
(
8
,
5
):
# bignum was added in Tcl 8.5
result
=
tcl
.
call
(
'expr'
,
str
(
2
**
1000
))
self
.
assertEqual
(
result
,
str
(
2
**
1000
))
self
.
assertIsInstance
(
result
,
str
)
self
.
assertRaises
(
TclError
,
tcl
.
call
,
'expr'
,
str
(
2
**
1000
))
def
test_passing_values
(
self
):
def
passValue
(
value
):
...
...
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