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
c760e861
Kaydet (Commit)
c760e861
authored
Ock 28, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
revert r77790. it requires a new-style class change
üst
ca5a06aa
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
9 deletions
+2
-9
UserDict.py
Lib/UserDict.py
+1
-1
abc.py
Lib/abc.py
+1
-1
test_abc.py
Lib/test/test_abc.py
+0
-5
NEWS
Misc/NEWS
+0
-2
No files found.
Lib/UserDict.py
Dosyayı görüntüle @
c760e861
"""A more or less complete user-defined wrapper around dictionary objects."""
"""A more or less complete user-defined wrapper around dictionary objects."""
class
UserDict
(
object
)
:
class
UserDict
:
def
__init__
(
self
,
dict
=
None
,
**
kwargs
):
def
__init__
(
self
,
dict
=
None
,
**
kwargs
):
self
.
data
=
{}
self
.
data
=
{}
if
dict
is
not
None
:
if
dict
is
not
None
:
...
...
Lib/abc.py
Dosyayı görüntüle @
c760e861
...
@@ -96,7 +96,7 @@ class ABCMeta(type):
...
@@ -96,7 +96,7 @@ class ABCMeta(type):
def
register
(
cls
,
subclass
):
def
register
(
cls
,
subclass
):
"""Register a virtual subclass of an ABC."""
"""Register a virtual subclass of an ABC."""
if
not
isinstance
(
subclas
s
,
type
):
if
not
isinstance
(
cl
s
,
type
):
raise
TypeError
(
"Can only register classes"
)
raise
TypeError
(
"Can only register classes"
)
if
issubclass
(
subclass
,
cls
):
if
issubclass
(
subclass
,
cls
):
return
# Already a subclass
return
# Already a subclass
...
...
Lib/test/test_abc.py
Dosyayı görüntüle @
c760e861
...
@@ -149,11 +149,6 @@ class TestABC(unittest.TestCase):
...
@@ -149,11 +149,6 @@ class TestABC(unittest.TestCase):
self
.
assertRaises
(
RuntimeError
,
C
.
register
,
A
)
# cycles not allowed
self
.
assertRaises
(
RuntimeError
,
C
.
register
,
A
)
# cycles not allowed
C
.
register
(
B
)
# ok
C
.
register
(
B
)
# ok
def
test_register_non_class
(
self
):
class
A
(
object
):
__metaclass__
=
abc
.
ABCMeta
self
.
assertRaises
(
TypeError
,
A
.
register
,
4
)
def
test_registration_transitiveness
(
self
):
def
test_registration_transitiveness
(
self
):
class
A
:
class
A
:
__metaclass__
=
abc
.
ABCMeta
__metaclass__
=
abc
.
ABCMeta
...
...
Misc/NEWS
Dosyayı görüntüle @
c760e861
...
@@ -58,8 +58,6 @@ Library
...
@@ -58,8 +58,6 @@ Library
file position to the given argument, which goes against the tradition of
file position to the given argument, which goes against the tradition of
ftruncate() and other truncation APIs. Patch by Pascal Chambon.
ftruncate() and other truncation APIs. Patch by Pascal Chambon.
- Issue #7792: Registering non-classes to ABCs raised an obscure error.
- Issue #7773: Fix an UnboundLocalError in platform.linux_distribution() when
- Issue #7773: Fix an UnboundLocalError in platform.linux_distribution() when
the release file is empty.
the release file is empty.
...
...
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