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
ad4003c7
Kaydet (Commit)
ad4003c7
authored
Eyl 29, 2015
tarafından
Eric V. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #25034: Merge from 3.4.
üst
cb764960
85976b14
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
+10
-3
string.py
Lib/string.py
+4
-3
test_string.py
Lib/test/test_string.py
+2
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/string.py
Dosyayı görüntüle @
ad4003c7
...
...
@@ -188,7 +188,7 @@ class Formatter:
def
vformat
(
self
,
format_string
,
args
,
kwargs
):
used_args
=
set
()
result
=
self
.
_vformat
(
format_string
,
args
,
kwargs
,
used_args
,
2
)
result
,
_
=
self
.
_vformat
(
format_string
,
args
,
kwargs
,
used_args
,
2
)
self
.
check_unused_args
(
used_args
,
args
,
kwargs
)
return
result
...
...
@@ -235,14 +235,15 @@ class Formatter:
obj
=
self
.
convert_field
(
obj
,
conversion
)
# expand the format spec, if needed
format_spec
=
self
.
_vformat
(
format_spec
,
args
,
kwargs
,
format_spec
,
auto_arg_index
=
self
.
_vformat
(
format_spec
,
args
,
kwargs
,
used_args
,
recursion_depth
-
1
,
auto_arg_index
=
auto_arg_index
)
# format the object and append to the result
result
.
append
(
self
.
format_field
(
obj
,
format_spec
))
return
''
.
join
(
result
)
return
''
.
join
(
result
)
,
auto_arg_index
def
get_value
(
self
,
key
,
args
,
kwargs
):
...
...
Lib/test/test_string.py
Dosyayı görüntüle @
ad4003c7
...
...
@@ -58,6 +58,8 @@ class ModuleTest(unittest.TestCase):
'foo{1}{num}{1}'
.
format
(
None
,
'bar'
,
num
=
6
))
self
.
assertEqual
(
fmt
.
format
(
'{:^{}}'
,
'bar'
,
6
),
'{:^{}}'
.
format
(
'bar'
,
6
))
self
.
assertEqual
(
fmt
.
format
(
'{:^{}} {}'
,
'bar'
,
6
,
'X'
),
'{:^{}} {}'
.
format
(
'bar'
,
6
,
'X'
))
self
.
assertEqual
(
fmt
.
format
(
'{:^{pad}}{}'
,
'foo'
,
'bar'
,
pad
=
6
),
'{:^{pad}}{}'
.
format
(
'foo'
,
'bar'
,
pad
=
6
))
...
...
Misc/ACKS
Dosyayı görüntüle @
ad4003c7
...
...
@@ -1012,6 +1012,7 @@ Tony Nelson
Trent Nelson
Chad Netzer
Max Neunhöffer
Anthon van der Neut
George Neville-Neil
Hieu Nguyen
Johannes Nicolai
...
...
Misc/NEWS
Dosyayı görüntüle @
ad4003c7
...
...
@@ -21,6 +21,9 @@ Core and Builtins
Library
-------
- Issue #25034: Fix string.Formatter problem with auto-numbering and
nested format_specs. Patch by Anthon van der Neut.
- Issue #25233: Rewrite the guts of asyncio.Queue to be more understandable and correct.
- Issue #25203: Failed readline.set_completer_delims() no longer left the
...
...
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