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
4fa7a5fc
Commit
4fa7a5fc
authored
Aug 03, 2012
by
Jesus Cea
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#15512: Declarations reorganization
parent
d52544df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
21 deletions
+23
-21
Modules/parsermodule.c
Modules/parsermodule.c
+23
-21
No files found.
Modules/parsermodule.c
View file @
4fa7a5fc
...
...
@@ -172,8 +172,30 @@ static void parser_free(PyST_Object *st);
static
PyObject
*
parser_sizeof
(
PyST_Object
*
,
void
*
);
static
int
parser_compare
(
PyST_Object
*
left
,
PyST_Object
*
right
);
static
PyObject
*
parser_getattr
(
PyObject
*
self
,
char
*
name
);
static
PyMethodDef
parser_methods
[];
static
PyObject
*
parser_compilest
(
PyST_Object
*
,
PyObject
*
,
PyObject
*
);
static
PyObject
*
parser_isexpr
(
PyST_Object
*
,
PyObject
*
,
PyObject
*
);
static
PyObject
*
parser_issuite
(
PyST_Object
*
,
PyObject
*
,
PyObject
*
);
static
PyObject
*
parser_st2list
(
PyST_Object
*
,
PyObject
*
,
PyObject
*
);
static
PyObject
*
parser_st2tuple
(
PyST_Object
*
,
PyObject
*
,
PyObject
*
);
#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
static
PyMethodDef
parser_methods
[]
=
{
{
"compile"
,
(
PyCFunction
)
parser_compilest
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Compile this ST object into a code object."
)},
{
"isexpr"
,
(
PyCFunction
)
parser_isexpr
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Determines if this ST object was created from an expression."
)},
{
"issuite"
,
(
PyCFunction
)
parser_issuite
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Determines if this ST object was created from a suite."
)},
{
"tolist"
,
(
PyCFunction
)
parser_st2list
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Creates a list-tree representation of this ST."
)},
{
"totuple"
,
(
PyCFunction
)
parser_st2tuple
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Creates a tuple-tree representation of this ST."
)},
{
"__sizeof__"
,
(
PyCFunction
)
parser_sizeof
,
METH_NOARGS
,
PyDoc_STR
(
"Returns size in memory, in bytes."
)},
{
NULL
,
NULL
,
0
,
NULL
}
};
static
PyTypeObject
PyST_Type
=
{
...
...
@@ -503,26 +525,6 @@ parser_issuite(PyST_Object *self, PyObject *args, PyObject *kw)
}
#define PUBLIC_METHOD_TYPE (METH_VARARGS|METH_KEYWORDS)
static
PyMethodDef
parser_methods
[]
=
{
{
"compile"
,
(
PyCFunction
)
parser_compilest
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Compile this ST object into a code object."
)},
{
"isexpr"
,
(
PyCFunction
)
parser_isexpr
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Determines if this ST object was created from an expression."
)},
{
"issuite"
,
(
PyCFunction
)
parser_issuite
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Determines if this ST object was created from a suite."
)},
{
"tolist"
,
(
PyCFunction
)
parser_st2list
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Creates a list-tree representation of this ST."
)},
{
"totuple"
,
(
PyCFunction
)
parser_st2tuple
,
PUBLIC_METHOD_TYPE
,
PyDoc_STR
(
"Creates a tuple-tree representation of this ST."
)},
{
"__sizeof__"
,
(
PyCFunction
)
parser_sizeof
,
METH_NOARGS
,
PyDoc_STR
(
"Returns size in memory, in bytes."
)},
{
NULL
,
NULL
,
0
,
NULL
}
};
static
PyObject
*
parser_getattr
(
PyObject
*
self
,
char
*
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