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
91c0d8a9
Kaydet (Commit)
91c0d8a9
authored
Agu 24, 2001
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
getset_init(): make the arguments optional.
getset_doc: add docstring.
üst
75a2f855
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
descrobject.c
Objects/descrobject.c
+11
-3
No files found.
Objects/descrobject.c
Dosyayı görüntüle @
91c0d8a9
...
...
@@ -916,10 +916,10 @@ getset_descr_set(PyObject *self, PyObject *obj, PyObject *value)
static
int
getset_init
(
PyObject
*
self
,
PyObject
*
args
,
PyObject
*
kwds
)
{
PyObject
*
get
,
*
set
;
PyObject
*
get
=
NULL
,
*
set
=
NULL
;
getsetobject
*
gs
=
(
getsetobject
*
)
self
;
if
(
!
PyArg_ParseTuple
(
args
,
"OO:getset.__init__"
,
&
get
,
&
set
))
if
(
!
PyArg_ParseTuple
(
args
,
"
|
OO:getset.__init__"
,
&
get
,
&
set
))
return
-
1
;
if
(
get
==
Py_None
)
get
=
NULL
;
...
...
@@ -932,6 +932,14 @@ getset_init(PyObject *self, PyObject *args, PyObject *kwds)
return
0
;
}
static
char
getset_doc
[]
=
"getset([getfunc[, setfunc]]) -> getset attribute
\n
"
"Typical use to define a managed attribute x of C instances:
\n
"
"class C(object):
\n
"
" def getx(self): return self.__x
\n
"
" def setx(self, value): self.__x = value
\n
"
" x = getset(getx, setx)"
;
PyTypeObject
PyGetSet_Type
=
{
PyObject_HEAD_INIT
(
&
PyType_Type
)
0
,
/* ob_size */
...
...
@@ -955,7 +963,7 @@ PyTypeObject PyGetSet_Type = {
0
,
/* tp_setattro */
0
,
/* tp_as_buffer */
Py_TPFLAGS_DEFAULT
,
/* tp_flags */
0
,
/* tp_doc */
getset_doc
,
/* tp_doc */
0
,
/* tp_traverse */
0
,
/* tp_clear */
0
,
/* tp_richcompare */
...
...
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