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
4de3f998
Kaydet (Commit)
4de3f998
authored
May 23, 2006
tarafından
Bob Ippolito
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix linking issue, warnings, in struct
üst
232f3c91
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
_struct.c
Modules/_struct.c
+0
-4
No files found.
Modules/_struct.c
Dosyayı görüntüle @
4de3f998
...
@@ -45,8 +45,6 @@ typedef struct {
...
@@ -45,8 +45,6 @@ typedef struct {
PyObject
*
weakreflist
;
/* List of weak references */
PyObject
*
weakreflist
;
/* List of weak references */
}
PyStructObject
;
}
PyStructObject
;
PyAPI_DATA
(
PyTypeObject
)
PyStruct_Type
;
#define PyStruct_Check(op) PyObject_TypeCheck(op, &PyStruct_Type)
#define PyStruct_Check(op) PyObject_TypeCheck(op, &PyStruct_Type)
#define PyStruct_CheckExact(op) ((op)->ob_type == &PyStruct_Type)
#define PyStruct_CheckExact(op) ((op)->ob_type == &PyStruct_Type)
...
@@ -1063,7 +1061,6 @@ static PyObject *
...
@@ -1063,7 +1061,6 @@ static PyObject *
s_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kwds
)
s_new
(
PyTypeObject
*
type
,
PyObject
*
args
,
PyObject
*
kwds
)
{
{
PyObject
*
self
;
PyObject
*
self
;
static
PyObject
*
not_yet_string
;
assert
(
type
!=
NULL
&&
type
->
tp_alloc
!=
NULL
);
assert
(
type
!=
NULL
&&
type
->
tp_alloc
!=
NULL
);
...
@@ -1104,7 +1101,6 @@ s_init(PyObject *self, PyObject *args, PyObject *kwds)
...
@@ -1104,7 +1101,6 @@ s_init(PyObject *self, PyObject *args, PyObject *kwds)
static
void
static
void
s_dealloc
(
PyStructObject
*
s
)
s_dealloc
(
PyStructObject
*
s
)
{
{
int
sts
=
0
;
if
(
s
->
weakreflist
!=
NULL
)
if
(
s
->
weakreflist
!=
NULL
)
PyObject_ClearWeakRefs
((
PyObject
*
)
s
);
PyObject_ClearWeakRefs
((
PyObject
*
)
s
);
if
(
s
->
s_codes
!=
NULL
)
{
if
(
s
->
s_codes
!=
NULL
)
{
...
...
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