Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
a80e3a00
Commit
a80e3a00
authored
Apr 27, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bugs in handling dict-less subclasses.
parent
a1154297
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
76 additions
and
40 deletions
+76
-40
lib/Components/ExtensionClass/ExtensionClass.c
lib/Components/ExtensionClass/ExtensionClass.c
+38
-20
lib/Components/ExtensionClass/src/ExtensionClass.c
lib/Components/ExtensionClass/src/ExtensionClass.c
+38
-20
No files found.
lib/Components/ExtensionClass/ExtensionClass.c
View file @
a80e3a00
/*
/*
$Id: ExtensionClass.c,v 1.1
0 1997/04/25 22:15:02
jim Exp $
$Id: ExtensionClass.c,v 1.1
1 1997/04/27 09:20:26
jim Exp $
Extension Class
Extension Class
...
@@ -65,7 +65,7 @@ static char ExtensionClass_module_documentation[] =
...
@@ -65,7 +65,7 @@ static char ExtensionClass_module_documentation[] =
" - They provide access to unbound methods,
\n
"
" - They provide access to unbound methods,
\n
"
" - They can be called to create instances.
\n
"
" - They can be called to create instances.
\n
"
"
\n
"
"
\n
"
"$Id: ExtensionClass.c,v 1.1
0 1997/04/25 22:15:02
jim Exp $
\n
"
"$Id: ExtensionClass.c,v 1.1
1 1997/04/27 09:20:26
jim Exp $
\n
"
;
;
#include <stdio.h>
#include <stdio.h>
...
@@ -1669,6 +1669,8 @@ subclass_getspecial(PyObject *inst, PyObject *oname)
...
@@ -1669,6 +1669,8 @@ subclass_getspecial(PyObject *inst, PyObject *oname)
PyExtensionClass
*
self
;
PyExtensionClass
*
self
;
self
=
(
PyExtensionClass
*
)(
inst
->
ob_type
);
self
=
(
PyExtensionClass
*
)(
inst
->
ob_type
);
if
(
HasInstDict
(
inst
))
{
r
=
INSTANCE_DICT
(
inst
);
r
=
INSTANCE_DICT
(
inst
);
r
=
PyObject_GetItem
(
r
,
oname
);
r
=
PyObject_GetItem
(
r
,
oname
);
UNLESS
(
r
)
UNLESS
(
r
)
...
@@ -1676,6 +1678,8 @@ subclass_getspecial(PyObject *inst, PyObject *oname)
...
@@ -1676,6 +1678,8 @@ subclass_getspecial(PyObject *inst, PyObject *oname)
PyErr_Clear
();
PyErr_Clear
();
r
=
CCL_getattr
(
self
,
oname
,
0
);
r
=
CCL_getattr
(
self
,
oname
,
0
);
}
}
}
else
r
=
CCL_getattr
(
self
,
oname
,
0
);
return
r
;
return
r
;
}
}
...
@@ -1698,6 +1702,11 @@ subclass_getattro(PyObject *self, PyObject *name)
...
@@ -1698,6 +1702,11 @@ subclass_getattro(PyObject *self, PyObject *name)
static
int
static
int
subclass_simple_setattro
(
PyObject
*
self
,
PyObject
*
name
,
PyObject
*
v
)
subclass_simple_setattro
(
PyObject
*
self
,
PyObject
*
name
,
PyObject
*
v
)
{
{
if
(
!
HasInstDict
(
self
))
{
PyErr_SetObject
(
PyExc_AttributeError
,
name
);
return
-
1
;
}
if
(
v
)
if
(
v
)
return
PyDict_SetItem
(
INSTANCE_DICT
(
self
),
name
,
v
);
return
PyDict_SetItem
(
INSTANCE_DICT
(
self
),
name
,
v
);
else
else
...
@@ -1707,6 +1716,11 @@ subclass_simple_setattro(PyObject *self, PyObject *name, PyObject *v)
...
@@ -1707,6 +1716,11 @@ subclass_simple_setattro(PyObject *self, PyObject *name, PyObject *v)
static
int
static
int
subclass_simple_setattr
(
PyObject
*
self
,
char
*
name
,
PyObject
*
v
)
subclass_simple_setattr
(
PyObject
*
self
,
char
*
name
,
PyObject
*
v
)
{
{
if
(
!
HasInstDict
(
self
))
{
PyErr_SetString
(
PyExc_AttributeError
,
name
);
return
-
1
;
}
if
(
v
)
if
(
v
)
return
PyDict_SetItemString
(
INSTANCE_DICT
(
self
),
name
,
v
);
return
PyDict_SetItemString
(
INSTANCE_DICT
(
self
),
name
,
v
);
else
else
...
@@ -2447,7 +2461,7 @@ subclass_dealloc(PyObject *self)
...
@@ -2447,7 +2461,7 @@ subclass_dealloc(PyObject *self)
return
;
/* we added a reference; don't delete now */
return
;
/* we added a reference; don't delete now */
}
}
Py_XDECREF
(
INSTANCE_DICT
(
self
));
if
(
HasInstDict
(
self
))
Py_XDECREF
(
INSTANCE_DICT
(
self
));
Py_DECREF
(
self
->
ob_type
);
Py_DECREF
(
self
->
ob_type
);
UNLESS
(
dealloc_base
(
self
,(
PyExtensionClass
*
)
self
->
ob_type
))
UNLESS
(
dealloc_base
(
self
,(
PyExtensionClass
*
)
self
->
ob_type
))
...
@@ -2736,16 +2750,6 @@ subclass__init__(PyExtensionClass *self, PyObject *args)
...
@@ -2736,16 +2750,6 @@ subclass__init__(PyExtensionClass *self, PyObject *args)
copy_member
(
ob_size
);
copy_member
(
ob_size
);
copy_member
(
class_flags
);
copy_member
(
class_flags
);
if
(
type
->
bases
)
copy_member
(
tp_basicsize
);
else
{
self
->
tp_basicsize
=
type
->
tp_basicsize
/
sizeof
(
PyObject
*
)
*
sizeof
(
PyObject
*
);
if
(
self
->
tp_basicsize
<
type
->
tp_basicsize
)
self
->
tp_basicsize
+=
sizeof
(
PyObject
*
);
/* To align on PyObject */
self
->
tp_basicsize
+=
sizeof
(
PyObject
*
);
/* For instance dictionary */
}
copy_member
(
tp_itemsize
);
copy_member
(
tp_itemsize
);
copy_member
(
tp_print
);
copy_member
(
tp_print
);
self
->
tp_dealloc
=
subclass_dealloc
;
self
->
tp_dealloc
=
subclass_dealloc
;
...
@@ -2768,6 +2772,17 @@ subclass__init__(PyExtensionClass *self, PyObject *args)
...
@@ -2768,6 +2772,17 @@ subclass__init__(PyExtensionClass *self, PyObject *args)
UNLESS
(
self
->
class_flags
&
EXTENSIONCLASS_NOINSTDICT_FLAG
)
UNLESS
(
self
->
class_flags
&
EXTENSIONCLASS_NOINSTDICT_FLAG
)
self
->
class_flags
|=
EXTENSIONCLASS_INSTDICT_FLAG
;
self
->
class_flags
|=
EXTENSIONCLASS_INSTDICT_FLAG
;
if
(
type
->
bases
||
!
ClassHasInstDict
(
self
))
copy_member
(
tp_basicsize
);
else
{
self
->
tp_basicsize
=
type
->
tp_basicsize
/
sizeof
(
PyObject
*
)
*
sizeof
(
PyObject
*
);
if
(
self
->
tp_basicsize
<
type
->
tp_basicsize
)
self
->
tp_basicsize
+=
sizeof
(
PyObject
*
);
/* To align on PyObject */
self
->
tp_basicsize
+=
sizeof
(
PyObject
*
);
/* For instance dictionary */
}
if
(
dynamic
||
has_number_methods
(
self
))
if
(
dynamic
||
has_number_methods
(
self
))
{
{
self
->
tp_as_number
=
(
PyNumberMethods
*
)
malloc
(
sizeof
(
PyNumberMethods
));
self
->
tp_as_number
=
(
PyNumberMethods
*
)
malloc
(
sizeof
(
PyNumberMethods
));
...
@@ -2876,7 +2891,7 @@ void
...
@@ -2876,7 +2891,7 @@ void
initExtensionClass
()
initExtensionClass
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.1
0
$"
;
char
*
rev
=
"$Revision: 1.1
1
$"
;
PURE_MIXIN_CLASS
(
Base
,
"Minimalbase class for Extension Classes"
,
NULL
);
PURE_MIXIN_CLASS
(
Base
,
"Minimalbase class for Extension Classes"
,
NULL
);
PMethodType
.
ob_type
=&
PyType_Type
;
PMethodType
.
ob_type
=&
PyType_Type
;
...
@@ -2913,6 +2928,9 @@ initExtensionClass()
...
@@ -2913,6 +2928,9 @@ initExtensionClass()
/****************************************************************************
/****************************************************************************
$Log: ExtensionClass.c,v $
$Log: ExtensionClass.c,v $
Revision 1.11 1997/04/27 09:20:26 jim
Fixed bugs in handling dict-less subclasses.
Revision 1.10 1997/04/25 22:15:02 jim
Revision 1.10 1997/04/25 22:15:02 jim
Fixed memory leak in destruction of instances of subclasses of
Fixed memory leak in destruction of instances of subclasses of
pure mix-in (and only pure mix-in) base classes.
pure mix-in (and only pure mix-in) base classes.
...
...
lib/Components/ExtensionClass/src/ExtensionClass.c
View file @
a80e3a00
/*
/*
$Id: ExtensionClass.c,v 1.1
0 1997/04/25 22:15:02
jim Exp $
$Id: ExtensionClass.c,v 1.1
1 1997/04/27 09:20:26
jim Exp $
Extension Class
Extension Class
...
@@ -65,7 +65,7 @@ static char ExtensionClass_module_documentation[] =
...
@@ -65,7 +65,7 @@ static char ExtensionClass_module_documentation[] =
" - They provide access to unbound methods,
\n
"
" - They provide access to unbound methods,
\n
"
" - They can be called to create instances.
\n
"
" - They can be called to create instances.
\n
"
"
\n
"
"
\n
"
"$Id: ExtensionClass.c,v 1.1
0 1997/04/25 22:15:02
jim Exp $
\n
"
"$Id: ExtensionClass.c,v 1.1
1 1997/04/27 09:20:26
jim Exp $
\n
"
;
;
#include <stdio.h>
#include <stdio.h>
...
@@ -1669,6 +1669,8 @@ subclass_getspecial(PyObject *inst, PyObject *oname)
...
@@ -1669,6 +1669,8 @@ subclass_getspecial(PyObject *inst, PyObject *oname)
PyExtensionClass
*
self
;
PyExtensionClass
*
self
;
self
=
(
PyExtensionClass
*
)(
inst
->
ob_type
);
self
=
(
PyExtensionClass
*
)(
inst
->
ob_type
);
if
(
HasInstDict
(
inst
))
{
r
=
INSTANCE_DICT
(
inst
);
r
=
INSTANCE_DICT
(
inst
);
r
=
PyObject_GetItem
(
r
,
oname
);
r
=
PyObject_GetItem
(
r
,
oname
);
UNLESS
(
r
)
UNLESS
(
r
)
...
@@ -1676,6 +1678,8 @@ subclass_getspecial(PyObject *inst, PyObject *oname)
...
@@ -1676,6 +1678,8 @@ subclass_getspecial(PyObject *inst, PyObject *oname)
PyErr_Clear
();
PyErr_Clear
();
r
=
CCL_getattr
(
self
,
oname
,
0
);
r
=
CCL_getattr
(
self
,
oname
,
0
);
}
}
}
else
r
=
CCL_getattr
(
self
,
oname
,
0
);
return
r
;
return
r
;
}
}
...
@@ -1698,6 +1702,11 @@ subclass_getattro(PyObject *self, PyObject *name)
...
@@ -1698,6 +1702,11 @@ subclass_getattro(PyObject *self, PyObject *name)
static
int
static
int
subclass_simple_setattro
(
PyObject
*
self
,
PyObject
*
name
,
PyObject
*
v
)
subclass_simple_setattro
(
PyObject
*
self
,
PyObject
*
name
,
PyObject
*
v
)
{
{
if
(
!
HasInstDict
(
self
))
{
PyErr_SetObject
(
PyExc_AttributeError
,
name
);
return
-
1
;
}
if
(
v
)
if
(
v
)
return
PyDict_SetItem
(
INSTANCE_DICT
(
self
),
name
,
v
);
return
PyDict_SetItem
(
INSTANCE_DICT
(
self
),
name
,
v
);
else
else
...
@@ -1707,6 +1716,11 @@ subclass_simple_setattro(PyObject *self, PyObject *name, PyObject *v)
...
@@ -1707,6 +1716,11 @@ subclass_simple_setattro(PyObject *self, PyObject *name, PyObject *v)
static
int
static
int
subclass_simple_setattr
(
PyObject
*
self
,
char
*
name
,
PyObject
*
v
)
subclass_simple_setattr
(
PyObject
*
self
,
char
*
name
,
PyObject
*
v
)
{
{
if
(
!
HasInstDict
(
self
))
{
PyErr_SetString
(
PyExc_AttributeError
,
name
);
return
-
1
;
}
if
(
v
)
if
(
v
)
return
PyDict_SetItemString
(
INSTANCE_DICT
(
self
),
name
,
v
);
return
PyDict_SetItemString
(
INSTANCE_DICT
(
self
),
name
,
v
);
else
else
...
@@ -2447,7 +2461,7 @@ subclass_dealloc(PyObject *self)
...
@@ -2447,7 +2461,7 @@ subclass_dealloc(PyObject *self)
return
;
/* we added a reference; don't delete now */
return
;
/* we added a reference; don't delete now */
}
}
Py_XDECREF
(
INSTANCE_DICT
(
self
));
if
(
HasInstDict
(
self
))
Py_XDECREF
(
INSTANCE_DICT
(
self
));
Py_DECREF
(
self
->
ob_type
);
Py_DECREF
(
self
->
ob_type
);
UNLESS
(
dealloc_base
(
self
,(
PyExtensionClass
*
)
self
->
ob_type
))
UNLESS
(
dealloc_base
(
self
,(
PyExtensionClass
*
)
self
->
ob_type
))
...
@@ -2736,16 +2750,6 @@ subclass__init__(PyExtensionClass *self, PyObject *args)
...
@@ -2736,16 +2750,6 @@ subclass__init__(PyExtensionClass *self, PyObject *args)
copy_member
(
ob_size
);
copy_member
(
ob_size
);
copy_member
(
class_flags
);
copy_member
(
class_flags
);
if
(
type
->
bases
)
copy_member
(
tp_basicsize
);
else
{
self
->
tp_basicsize
=
type
->
tp_basicsize
/
sizeof
(
PyObject
*
)
*
sizeof
(
PyObject
*
);
if
(
self
->
tp_basicsize
<
type
->
tp_basicsize
)
self
->
tp_basicsize
+=
sizeof
(
PyObject
*
);
/* To align on PyObject */
self
->
tp_basicsize
+=
sizeof
(
PyObject
*
);
/* For instance dictionary */
}
copy_member
(
tp_itemsize
);
copy_member
(
tp_itemsize
);
copy_member
(
tp_print
);
copy_member
(
tp_print
);
self
->
tp_dealloc
=
subclass_dealloc
;
self
->
tp_dealloc
=
subclass_dealloc
;
...
@@ -2768,6 +2772,17 @@ subclass__init__(PyExtensionClass *self, PyObject *args)
...
@@ -2768,6 +2772,17 @@ subclass__init__(PyExtensionClass *self, PyObject *args)
UNLESS
(
self
->
class_flags
&
EXTENSIONCLASS_NOINSTDICT_FLAG
)
UNLESS
(
self
->
class_flags
&
EXTENSIONCLASS_NOINSTDICT_FLAG
)
self
->
class_flags
|=
EXTENSIONCLASS_INSTDICT_FLAG
;
self
->
class_flags
|=
EXTENSIONCLASS_INSTDICT_FLAG
;
if
(
type
->
bases
||
!
ClassHasInstDict
(
self
))
copy_member
(
tp_basicsize
);
else
{
self
->
tp_basicsize
=
type
->
tp_basicsize
/
sizeof
(
PyObject
*
)
*
sizeof
(
PyObject
*
);
if
(
self
->
tp_basicsize
<
type
->
tp_basicsize
)
self
->
tp_basicsize
+=
sizeof
(
PyObject
*
);
/* To align on PyObject */
self
->
tp_basicsize
+=
sizeof
(
PyObject
*
);
/* For instance dictionary */
}
if
(
dynamic
||
has_number_methods
(
self
))
if
(
dynamic
||
has_number_methods
(
self
))
{
{
self
->
tp_as_number
=
(
PyNumberMethods
*
)
malloc
(
sizeof
(
PyNumberMethods
));
self
->
tp_as_number
=
(
PyNumberMethods
*
)
malloc
(
sizeof
(
PyNumberMethods
));
...
@@ -2876,7 +2891,7 @@ void
...
@@ -2876,7 +2891,7 @@ void
initExtensionClass
()
initExtensionClass
()
{
{
PyObject
*
m
,
*
d
;
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.1
0
$"
;
char
*
rev
=
"$Revision: 1.1
1
$"
;
PURE_MIXIN_CLASS
(
Base
,
"Minimalbase class for Extension Classes"
,
NULL
);
PURE_MIXIN_CLASS
(
Base
,
"Minimalbase class for Extension Classes"
,
NULL
);
PMethodType
.
ob_type
=&
PyType_Type
;
PMethodType
.
ob_type
=&
PyType_Type
;
...
@@ -2913,6 +2928,9 @@ initExtensionClass()
...
@@ -2913,6 +2928,9 @@ initExtensionClass()
/****************************************************************************
/****************************************************************************
$Log: ExtensionClass.c,v $
$Log: ExtensionClass.c,v $
Revision 1.11 1997/04/27 09:20:26 jim
Fixed bugs in handling dict-less subclasses.
Revision 1.10 1997/04/25 22:15:02 jim
Revision 1.10 1997/04/25 22:15:02 jim
Fixed memory leak in destruction of instances of subclasses of
Fixed memory leak in destruction of instances of subclasses of
pure mix-in (and only pure mix-in) base classes.
pure mix-in (and only pure mix-in) base classes.
...
...
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