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
bde67df0
Kaydet (Commit)
bde67df0
authored
Haz 22, 2010
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
keep UserDict an old-style class
Be generous in abc.py to allow this.
üst
3ceab01c
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
UserDict.py
Lib/UserDict.py
+1
-1
abc.py
Lib/abc.py
+3
-1
NEWS
Misc/NEWS
+0
-2
No files found.
Lib/UserDict.py
Dosyayı görüntüle @
bde67df0
"""A more or less complete user-defined wrapper around dictionary objects."""
class
UserDict
(
object
)
:
class
UserDict
:
def
__init__
(
self
,
dict
=
None
,
**
kwargs
):
self
.
data
=
{}
if
dict
is
not
None
:
...
...
Lib/abc.py
Dosyayı görüntüle @
bde67df0
...
...
@@ -3,6 +3,8 @@
"""Abstract Base Classes (ABCs) according to PEP 3119."""
import
types
# Instance of old-style class
class
_C
:
pass
...
...
@@ -101,7 +103,7 @@ class ABCMeta(type):
def
register
(
cls
,
subclass
):
"""Register a virtual subclass of an ABC."""
if
not
isinstance
(
subclass
,
type
):
if
not
isinstance
(
subclass
,
(
type
,
types
.
ClassType
)
):
raise
TypeError
(
"Can only register classes"
)
if
issubclass
(
subclass
,
cls
):
return
# Already a subclass
...
...
Misc/NEWS
Dosyayı görüntüle @
bde67df0
...
...
@@ -971,8 +971,6 @@ Library
position to the given argument, which goes against the tradition of
ftruncate() and other truncation APIs. Patch by Pascal Chambon.
- UserDict is now a new-style class.
- Issue #7610: Reworked implementation of the internal ``zipfile.ZipExtFile``
class used to represent files stored inside an archive. The new
implementation is significantly faster and can be wrapped in a
...
...
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