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
69168064
Kaydet (Commit)
69168064
authored
Şub 11, 2011
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11135: Remove redundant doc field from PyType_Spec.
Reviewed by Georg Brandl.
üst
dafdd7f8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
9 deletions
+7
-9
object.h
Include/object.h
+0
-1
NEWS
Misc/NEWS
+2
-0
xxlimited.c
Modules/xxlimited.c
+4
-6
abitype.py
Tools/scripts/abitype.py
+1
-2
No files found.
Include/object.h
Dosyayı görüntüle @
69168064
...
...
@@ -396,7 +396,6 @@ typedef struct{
typedef
struct
{
const
char
*
name
;
const
char
*
doc
;
int
basicsize
;
int
itemsize
;
int
flags
;
...
...
Misc/NEWS
Dosyayı görüntüle @
69168064
...
...
@@ -10,6 +10,8 @@ What's New in Python 3.2?
Core and Builtins
-----------------
- Issue #11135: Remove redundant doc field from PyType_Spec.
- Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check
in the limited ABI.
...
...
Modules/xxlimited.c
Dosyayı görüntüle @
69168064
...
...
@@ -101,6 +101,7 @@ Xxo_setattr(XxoObject *self, char *name, PyObject *v)
}
static
PyType_Slot
Xxo_Type_slots
[]
=
{
{
Py_tp_doc
,
"The Xxo type"
},
{
Py_tp_dealloc
,
Xxo_dealloc
},
{
Py_tp_getattro
,
Xxo_getattro
},
{
Py_tp_setattr
,
Xxo_setattr
},
...
...
@@ -109,8 +110,7 @@ static PyType_Slot Xxo_Type_slots[] = {
};
static
PyType_Spec
Xxo_Type_spec
=
{
"xxmodule.Xxo"
,
NULL
,
"xxlimited.Xxo"
,
sizeof
(
XxoObject
),
0
,
Py_TPFLAGS_DEFAULT
,
...
...
@@ -178,7 +178,6 @@ static PyType_Spec Str_Type_spec = {
"xxlimited.Str"
,
0
,
0
,
0
,
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_BASETYPE
,
Str_Type_slots
};
...
...
@@ -201,7 +200,6 @@ static PyType_Slot Null_Type_slots[] = {
static
PyType_Spec
Null_Type_spec
=
{
"xxlimited.Null"
,
NULL
,
/* doc */
0
,
/* basicsize */
0
,
/* itemsize */
Py_TPFLAGS_DEFAULT
|
Py_TPFLAGS_BASETYPE
,
...
...
@@ -230,7 +228,7 @@ PyDoc_STRVAR(module_doc,
static
struct
PyModuleDef
xxmodule
=
{
PyModuleDef_HEAD_INIT
,
"xx"
,
"xx
limited
"
,
module_doc
,
-
1
,
xx_methods
,
...
...
@@ -264,7 +262,7 @@ PyInit_xxlimited(void)
/* Add some symbolic constants to the module */
if
(
ErrorObject
==
NULL
)
{
ErrorObject
=
PyErr_NewException
(
"xx.error"
,
NULL
,
NULL
);
ErrorObject
=
PyErr_NewException
(
"xx
limited
.error"
,
NULL
,
NULL
);
if
(
ErrorObject
==
NULL
)
goto
fail
;
}
...
...
Tools/scripts/abitype.py
Dosyayı görüntüle @
69168064
...
...
@@ -162,7 +162,7 @@ def make_slots(name, fields):
res
=
[]
res
.
append
(
'static PyType_Slot
%
s_slots[] = {'
%
name
)
# defaults for spec
spec
=
{
'tp_
doc'
:
'NULL'
,
'tp_
itemsize'
:
'0'
}
spec
=
{
'tp_itemsize'
:
'0'
}
for
i
,
val
in
enumerate
(
fields
):
if
val
.
endswith
(
'0'
):
continue
...
...
@@ -174,7 +174,6 @@ def make_slots(name, fields):
res
.
append
(
'};'
)
res
.
append
(
'static PyType_Spec
%
s_spec = {'
%
name
)
res
.
append
(
'
%
s,'
%
spec
[
'tp_name'
])
res
.
append
(
'
%
s,'
%
spec
[
'tp_doc'
])
res
.
append
(
'
%
s,'
%
spec
[
'tp_basicsize'
])
res
.
append
(
'
%
s,'
%
spec
[
'tp_itemsize'
])
res
.
append
(
'
%
s,'
%
spec
[
'tp_flags'
])
...
...
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