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
739e2ad6
Kaydet (Commit)
739e2ad6
authored
Agu 27, 2007
tarafından
Eric Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Additional test for formatting code.
üst
9c62772d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
test_builtin.py
Lib/test/test_builtin.py
+2
-1
test_unicode.py
Lib/test/test_unicode.py
+9
-3
No files found.
Lib/test/test_builtin.py
Dosyayı görüntüle @
739e2ad6
...
...
@@ -541,7 +541,8 @@ class BuiltinTest(unittest.TestCase):
self
.
assertEqual
(
format
(
-
3.1415e-104
,
""
),
str
(
-
3.1415e-104
))
self
.
assertEqual
(
format
(
object
,
""
),
str
(
object
))
#self.assertRaises(TypeError, format, H(), "")
# TypeError because self.__format__ returns the wrong type
self
.
assertRaises
(
TypeError
,
format
,
H
(),
""
)
def
test_getattr
(
self
):
import
sys
...
...
Lib/test/test_unicode.py
Dosyayı görüntüle @
739e2ad6
...
...
@@ -424,6 +424,10 @@ class UnicodeTest(
def
__format__
(
self
,
format_spec
):
return
1.0
class
I
(
datetime
.
date
):
def
__format__
(
self
,
format_spec
):
return
self
.
strftime
(
format_spec
)
self
.
assertEqual
(
''
.
format
(),
''
)
self
.
assertEqual
(
'abc'
.
format
(),
'abc'
)
...
...
@@ -504,9 +508,6 @@ class UnicodeTest(
self
.
assertEqual
(
'{0!r:}'
.
format
(
'Hello'
),
"'Hello'"
)
self
.
assertEqual
(
'{0!r}'
.
format
(
F
(
'Hello'
)),
'F(Hello)'
)
# XXX should pass, but currently don't
# format(object, "")
# test fallback to object.__format__
self
.
assertEqual
(
'{0}'
.
format
({}),
'{}'
)
self
.
assertEqual
(
'{0}'
.
format
([]),
'[]'
)
...
...
@@ -518,6 +519,11 @@ class UnicodeTest(
self
.
assertEqual
(
'{0:>15s}'
.
format
(
G
(
'data'
)),
' string is data'
)
self
.
assertEqual
(
'{0!s}'
.
format
(
G
(
'data'
)),
'string is data'
)
self
.
assertEqual
(
"{0:date:
%
Y-
%
m-
%
d}"
.
format
(
I
(
year
=
2007
,
month
=
8
,
day
=
27
)),
"date: 2007-08-27"
)
# string format specifiers
self
.
assertEqual
(
'{0:}'
.
format
(
'a'
),
'a'
)
...
...
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