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
72f66208
Kaydet (Commit)
72f66208
authored
Kas 06, 2010
tarafından
Eric Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed unused test classes from test_format_map().
üst
5ad85f81
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
38 deletions
+0
-38
test_unicode.py
Lib/test/test_unicode.py
+0
-38
No files found.
Lib/test/test_unicode.py
Dosyayı görüntüle @
72f66208
...
...
@@ -720,49 +720,11 @@ class UnicodeTest(string_tests.CommonTest,
self
.
assertEqual
(
'{a}'
.
format_map
(
InternalMapping
()),
'hello'
)
# classes we'll use for testing
class
C
:
def
__init__
(
self
,
x
=
100
):
self
.
_x
=
x
def
__format__
(
self
,
spec
):
return
spec
class
D
:
def
__init__
(
self
,
x
):
self
.
x
=
x
def
__format__
(
self
,
spec
):
return
str
(
self
.
x
)
# class with __str__, but no __format__
class
E
:
def
__init__
(
self
,
x
):
self
.
x
=
x
def
__str__
(
self
):
return
'E('
+
self
.
x
+
')'
# class with __repr__, but no __format__ or __str__
class
F
:
def
__init__
(
self
,
x
):
self
.
x
=
x
def
__repr__
(
self
):
return
'F('
+
self
.
x
+
')'
# class with __format__ that forwards to string, for some format_spec's
class
G
:
def
__init__
(
self
,
x
):
self
.
x
=
x
def
__str__
(
self
):
return
"string is "
+
self
.
x
def
__format__
(
self
,
format_spec
):
if
format_spec
==
'd'
:
return
'G('
+
self
.
x
+
')'
return
object
.
__format__
(
self
,
format_spec
)
# class that returns a bad type from __format__
class
H
:
def
__format__
(
self
,
format_spec
):
return
1.0
self
.
assertEqual
(
'{foo._x}'
.
format_map
({
'foo'
:
C
(
20
)}),
'20'
)
# test various errors
...
...
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