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
c4c98660
Kaydet (Commit)
c4c98660
authored
Agu 04, 2017
tarafından
Shane Harvey
Kaydeden (comit)
Serhiy Storchaka
Agu 04, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-31107: Fix copyreg mangled slot names calculation. (#2989)
üst
778928b0
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
1 deletion
+18
-1
copyreg.py
Lib/copyreg.py
+5
-1
test_copyreg.py
Lib/test/test_copyreg.py
+10
-0
ACKS
Misc/ACKS
+1
-0
2017-08-02-12-48-15.bpo-31107.1t2hn5.rst
...S.d/next/Library/2017-08-02-12-48-15.bpo-31107.1t2hn5.rst
+2
-0
No files found.
Lib/copyreg.py
Dosyayı görüntüle @
c4c98660
...
...
@@ -128,7 +128,11 @@ def _slotnames(cls):
continue
# mangled names
elif
name
.
startswith
(
'__'
)
and
not
name
.
endswith
(
'__'
):
names
.
append
(
'_
%
s
%
s'
%
(
c
.
__name__
,
name
))
stripped
=
c
.
__name__
.
lstrip
(
'_'
)
if
stripped
:
names
.
append
(
'_
%
s
%
s'
%
(
stripped
,
name
))
else
:
names
.
append
(
name
)
else
:
names
.
append
(
name
)
...
...
Lib/test/test_copyreg.py
Dosyayı görüntüle @
c4c98660
...
...
@@ -16,6 +16,12 @@ class WithWeakref(object):
class
WithPrivate
(
object
):
__slots__
=
(
'__spam'
,)
class
_WithLeadingUnderscoreAndPrivate
(
object
):
__slots__
=
(
'__spam'
,)
class
___
(
object
):
__slots__
=
(
'__spam'
,)
class
WithSingleString
(
object
):
__slots__
=
'spam'
...
...
@@ -104,6 +110,10 @@ class CopyRegTestCase(unittest.TestCase):
self
.
assertEqual
(
copyreg
.
_slotnames
(
WithWeakref
),
[])
expected
=
[
'_WithPrivate__spam'
]
self
.
assertEqual
(
copyreg
.
_slotnames
(
WithPrivate
),
expected
)
expected
=
[
'_WithLeadingUnderscoreAndPrivate__spam'
]
self
.
assertEqual
(
copyreg
.
_slotnames
(
_WithLeadingUnderscoreAndPrivate
),
expected
)
self
.
assertEqual
(
copyreg
.
_slotnames
(
___
),
[
'__spam'
])
self
.
assertEqual
(
copyreg
.
_slotnames
(
WithSingleString
),
[
'spam'
])
expected
=
[
'eggs'
,
'spam'
]
expected
.
sort
()
...
...
Misc/ACKS
Dosyayı görüntüle @
c4c98660
...
...
@@ -598,6 +598,7 @@ David Harrigan
Brian Harring
Jonathan Hartley
Travis B. Hartwell
Shane Harvey
Larry Hastings
Tim Hatch
Shane Hathaway
...
...
Misc/NEWS.d/next/Library/2017-08-02-12-48-15.bpo-31107.1t2hn5.rst
0 → 100644
Dosyayı görüntüle @
c4c98660
Fix `copyreg._slotnames()` mangled attribute calculation for classes whose
name begins with an underscore. Patch by Shane Harvey.
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