Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
69785032
Commit
69785032
authored
Jan 26, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added findmethodinchain and methodchain data types
parent
5279ec68
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
60 additions
and
23 deletions
+60
-23
Include/methodobject.h
Include/methodobject.h
+8
-0
Include/rename2.h
Include/rename2.h
+2
-0
Objects/methodobject.c
Objects/methodobject.c
+50
-23
No files found.
Include/methodobject.h
View file @
69785032
...
...
@@ -57,6 +57,14 @@ extern PyObject *PyCFunction_New
/* Flag passed to newmethodobject */
#define METH_VARARGS 0x0001
typedef
struct
PyMethodChain
{
PyMethodDef
*
methods
;
/* Methods of this type */
struct
PyMethodChain
*
link
;
/* NULL or base type */
}
PyMethodChain
;
extern
PyObject
*
Py_FindMethodInChain
Py_PROTO
((
PyMethodChain
*
,
PyObject
*
,
char
*
));
#ifdef __cplusplus
}
#endif
...
...
Include/rename2.h
View file @
69785032
...
...
@@ -38,6 +38,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* typedef ANY *PyUnivPtr; */
#define methodlist PyMethodDef
#define methodchain PyMethodChain
#define None Py_None
#define False Py_False
...
...
@@ -290,6 +291,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#define newrangeobject PyRange_New
#define method PyCFunction
#define findmethod Py_FindMethod
#define findmethodinchain Py_FindMethodInChain
#define getmethod PyCFunction_GetFunction
#define getself PyCFunction_GetSelf
#define getvarargs PyCFunction_IsVarArgs
...
...
Objects/methodobject.c
View file @
69785032
...
...
@@ -188,46 +188,73 @@ typeobject Methodtype = {
(
hashfunc
)
meth_hash
,
/*tp_hash*/
};
static
object
*
listmethods
PROTO
((
struct
methodlist
*
));
/* Forward
*/
/* List all methods in a chain -- helper for findmethodinchain
*/
static
object
*
listmethod
s
(
ml
)
struct
method
list
*
ml
;
listmethod
chain
(
chain
)
struct
method
chain
*
chain
;
{
struct
methodchain
*
c
;
struct
methodlist
*
ml
;
int
i
,
n
;
object
*
v
;
for
(
n
=
0
;
ml
[
n
].
ml_name
!=
NULL
;
n
++
)
;
n
=
0
;
for
(
c
=
chain
;
c
!=
NULL
;
c
=
c
->
link
)
{
for
(
ml
=
c
->
methods
;
ml
->
ml_name
!=
NULL
;
ml
++
)
n
++
;
}
v
=
newlistobject
(
n
);
if
(
v
!=
NULL
)
{
for
(
i
=
0
;
i
<
n
;
i
++
)
setlistitem
(
v
,
i
,
newstringobject
(
ml
[
i
].
ml_name
));
if
(
v
==
NULL
)
return
NULL
;
i
=
0
;
for
(
c
=
chain
;
c
!=
NULL
;
c
=
c
->
link
)
{
for
(
ml
=
c
->
methods
;
ml
->
ml_name
!=
NULL
;
ml
++
)
{
setlistitem
(
v
,
i
,
newstringobject
(
ml
->
ml_name
));
i
++
;
}
}
if
(
err_occurred
())
{
DECREF
(
v
);
v
=
NULL
;
return
NULL
;
}
else
{
sortlist
(
v
);
}
}
return
v
;
}
/* Find a method in a module's method table.
Usually called from an object's getattr method. */
/* Find a method in a method chain */
object
*
findmethod
(
ml
,
op
,
name
)
struct
method
list
*
ml
;
object
*
op
;
findmethod
inchain
(
chain
,
self
,
name
)
struct
method
chain
*
chain
;
object
*
self
;
char
*
name
;
{
if
(
strcmp
(
name
,
"__methods__"
)
==
0
)
return
listmethods
(
ml
);
return
listmethodchain
(
chain
);
while
(
chain
!=
NULL
)
{
struct
methodlist
*
ml
=
chain
->
methods
;
for
(;
ml
->
ml_name
!=
NULL
;
ml
++
)
{
if
(
strcmp
(
name
,
ml
->
ml_name
)
==
0
)
return
newmethodobject
(
ml
,
op
);
if
(
name
[
0
]
==
ml
->
ml_name
[
0
]
&&
strcmp
(
name
+
1
,
ml
->
ml_name
+
1
)
==
0
)
return
newmethodobject
(
ml
,
self
);
}
chain
=
chain
->
link
;
}
err_setstr
(
AttributeError
,
name
);
return
NULL
;
}
/* Find a method in a single method list */
object
*
findmethod
(
methods
,
self
,
name
)
struct
methodlist
*
methods
;
object
*
self
;
char
*
name
;
{
struct
methodchain
chain
;
chain
.
methods
=
methods
;
chain
.
link
=
NULL
;
return
findmethodinchain
(
&
chain
,
self
,
name
);
}
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