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
c161cb99
Kaydet (Commit)
c161cb99
authored
Haz 11, 2007
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1734723: Fix repr.Repr() so it doesn't ignore the maxtuple attribute.
Will backport
üst
ade2c216
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
repr.py
Lib/repr.py
+1
-1
test_repr.py
Lib/test/test_repr.py
+13
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/repr.py
Dosyayı görüntüle @
c161cb99
...
...
@@ -52,7 +52,7 @@ class Repr:
return
'
%
s
%
s
%
s'
%
(
left
,
s
,
right
)
def
repr_tuple
(
self
,
x
,
level
):
return
self
.
_repr_iterable
(
x
,
level
,
'('
,
')'
,
self
.
max
list
,
','
)
return
self
.
_repr_iterable
(
x
,
level
,
'('
,
')'
,
self
.
max
tuple
,
','
)
def
repr_list
(
self
,
x
,
level
):
return
self
.
_repr_iterable
(
x
,
level
,
'['
,
']'
,
self
.
maxlist
)
...
...
Lib/test/test_repr.py
Dosyayı görüntüle @
c161cb99
...
...
@@ -10,6 +10,7 @@ import unittest
from
test.test_support
import
run_unittest
from
repr
import
repr
as
r
# Don't shadow builtin repr
from
repr
import
Repr
def
nestedTuple
(
nesting
):
...
...
@@ -34,6 +35,18 @@ class ReprTests(unittest.TestCase):
expected
=
repr
(
s
)[:
13
]
+
"..."
+
repr
(
s
)[
-
14
:]
eq
(
r
(
s
),
expected
)
def
test_tuple
(
self
):
eq
=
self
.
assertEquals
eq
(
r
((
1
,)),
"(1,)"
)
t3
=
(
1
,
2
,
3
)
eq
(
r
(
t3
),
"(1, 2, 3)"
)
r2
=
Repr
()
r2
.
maxtuple
=
2
expected
=
repr
(
t3
)[:
-
2
]
+
"...)"
eq
(
r2
.
repr
(
t3
),
expected
)
def
test_container
(
self
):
from
array
import
array
from
collections
import
deque
...
...
Misc/NEWS
Dosyayı görüntüle @
c161cb99
...
...
@@ -229,6 +229,8 @@ Core and builtins
Library
-------
- Bug #1734723: Fix repr.Repr() so it doesn'
t
ignore
the
maxtuple
attribute
.
-
The
urlopen
function
of
urllib2
now
has
an
optional
timeout
parameter
(
note
that
it
actually
works
with
HTTP
,
HTTPS
,
FTP
and
FTPS
connections
).
...
...
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