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
6e6883f1
Kaydet (Commit)
6e6883f1
authored
May 28, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #24309: Removed Python 2 idioms.
üst
bffc2b4a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
string.py
Lib/string.py
+2
-7
No files found.
Lib/string.py
Dosyayı görüntüle @
6e6883f1
...
...
@@ -112,10 +112,7 @@ class Template(metaclass=_TemplateMetaclass):
# Check the most common path first.
named
=
mo
.
group
(
'named'
)
or
mo
.
group
(
'braced'
)
if
named
is
not
None
:
val
=
mapping
[
named
]
# We use this idiom instead of str() because the latter will
# fail if val is a Unicode containing non-ASCII characters.
return
'
%
s'
%
(
val
,)
return
str
(
mapping
[
named
])
if
mo
.
group
(
'escaped'
)
is
not
None
:
return
self
.
delimiter
if
mo
.
group
(
'invalid'
)
is
not
None
:
...
...
@@ -142,9 +139,7 @@ class Template(metaclass=_TemplateMetaclass):
named
=
mo
.
group
(
'named'
)
or
mo
.
group
(
'braced'
)
if
named
is
not
None
:
try
:
# We use this idiom instead of str() because the latter
# will fail if val is a Unicode containing non-ASCII
return
'
%
s'
%
(
mapping
[
named
],)
return
str
(
mapping
[
named
])
except
KeyError
:
return
mo
.
group
()
if
mo
.
group
(
'escaped'
)
is
not
None
:
...
...
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