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
d55209d5
Unverified
Kaydet (Commit)
d55209d5
authored
Ock 11, 2018
tarafından
Raymond Hettinger
Kaydeden (comit)
GitHub
Ock 11, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix obvious typos in docstrings (#5151)
üst
2cba6b85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
dataclasses.py
Lib/dataclasses.py
+7
-6
No files found.
Lib/dataclasses.py
Dosyayı görüntüle @
d55209d5
...
...
@@ -570,7 +570,7 @@ def _process_class(cls, repr, eq, order, hash, init, frozen):
# _cls should never be specified by keyword, so start it with an
# underscore. The presen
s
e of _cls is used to detect if this
# underscore. The presen
c
e of _cls is used to detect if this
# decorator is being called with parameters or not.
def
dataclass
(
_cls
=
None
,
*
,
init
=
True
,
repr
=
True
,
eq
=
True
,
order
=
False
,
hash
=
None
,
frozen
=
False
):
...
...
@@ -677,7 +677,7 @@ def astuple(obj, *, tuple_factory=tuple):
y: int
c = C(1, 2)
assert as
d
tuple(c) == (1, 2)
assert astuple(c) == (1, 2)
If given, 'tuple_factory' will be used instead of built-in tuple.
The function applies recursively to field values that are
...
...
@@ -714,16 +714,17 @@ def make_dataclass(cls_name, fields, *, bases=(), namespace=None, init=True,
omitted, use the string 'typing.Any'. Field objects are created by
the equivalent of calling 'field(name, type [, Field-info])'.
C = make_
class('C', ['x', ('y', int'), ('z', int, Field(init=False))], bases=[Base]
)
C = make_
dataclass('C', ['x', ('y', int), ('z', int, field(init=False))], bases=(Base,)
)
is equivalent to:
@dataclass
class C(Base):
a: int
b: int = field(init=False)
x: 'typing.Any'
y: int
z: int = field(init=False)
For the bases and namespace par
e
meters, see the builtin type() function.
For the bases and namespace par
a
meters, see the builtin type() function.
The parameters init, repr, eq, order, hash, and frozen are passed to
dataclass().
...
...
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