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
5f429e02
Commit
5f429e02
authored
Dec 13, 2009
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
account for PyObject_IsInstance's new ability to fail
parent
c169c781
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
464 additions
and
90 deletions
+464
-90
Parser/asdl_c.py
Parser/asdl_c.py
+19
-3
Python/Python-ast.c
Python/Python-ast.c
+440
-86
Python/bltinmodule.c
Python/bltinmodule.c
+5
-1
No files found.
Parser/asdl_c.py
View file @
5f429e02
...
...
@@ -367,6 +367,7 @@ class Obj2ModVisitor(PickleVisitor):
self
.
emit
(
"obj2ast_%s(PyObject* obj, %s* out, PyArena* arena)"
%
(
name
,
ctype
),
0
)
self
.
emit
(
"{"
,
0
)
self
.
emit
(
"PyObject* tmp = NULL;"
,
1
)
self
.
emit
(
"int isinstance;"
,
1
)
self
.
emit
(
""
,
0
)
def
sumTrailer
(
self
,
name
):
...
...
@@ -386,7 +387,13 @@ class Obj2ModVisitor(PickleVisitor):
def
simpleSum
(
self
,
sum
,
name
):
self
.
funcHeader
(
name
)
for
t
in
sum
.
types
:
self
.
emit
(
"if (PyObject_IsInstance(obj, (PyObject*)%s_type)) {"
%
t
.
name
,
1
)
line
=
(
"isinstance = PyObject_IsInstance(obj, "
"(PyObject *)%s_type);"
)
self
.
emit
(
line
%
(
t
.
name
,),
1
)
self
.
emit
(
"if (isinstance == -1) {"
,
1
)
self
.
emit
(
"return 1;"
,
2
)
self
.
emit
(
"}"
,
1
)
self
.
emit
(
"if (isinstance) {"
,
1
)
self
.
emit
(
"*out = %s;"
%
t
.
name
,
2
)
self
.
emit
(
"return 0;"
,
2
)
self
.
emit
(
"}"
,
1
)
...
...
@@ -408,7 +415,12 @@ class Obj2ModVisitor(PickleVisitor):
for
a
in
sum
.
attributes
:
self
.
visitField
(
a
,
name
,
sum
=
sum
,
depth
=
1
)
for
t
in
sum
.
types
:
self
.
emit
(
"if (PyObject_IsInstance(obj, (PyObject*)%s_type)) {"
%
t
.
name
,
1
)
line
=
"isinstance = PyObject_IsInstance(obj, (PyObject*)%s_type);"
self
.
emit
(
line
%
(
t
.
name
,),
1
)
self
.
emit
(
"if (isinstance == -1) {"
,
1
)
self
.
emit
(
"return 1;"
,
2
)
self
.
emit
(
"}"
,
1
)
self
.
emit
(
"if (isinstance) {"
,
1
)
for
f
in
t
.
fields
:
self
.
visitFieldDeclaration
(
f
,
t
.
name
,
sum
=
sum
,
depth
=
2
)
self
.
emit
(
""
,
0
)
...
...
@@ -1093,11 +1105,15 @@ mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode)
PyObject *req_type[] = {(PyObject*)Module_type, (PyObject*)Expression_type,
(PyObject*)Interactive_type};
char *req_name[] = {"Module", "Expression", "Interactive"};
int isinstance;
assert(0 <= mode && mode <= 2);
init_types();
if (!PyObject_IsInstance(ast, req_type[mode])) {
isinstance = PyObject_IsInstance(ast, req_type[mode]);
if (isinstance == -1)
return NULL;
if (!isinstance) {
PyErr_Format(PyExc_TypeError, "expected %s node, got %.400s",
req_name[mode], Py_TYPE(ast)->tp_name);
return NULL;
...
...
Python/Python-ast.c
View file @
5f429e02
This diff is collapsed.
Click to expand it.
Python/bltinmodule.c
View file @
5f429e02
...
...
@@ -466,6 +466,7 @@ builtin_compile(PyObject *self, PyObject *args, PyObject *kwds)
int
mode
=
-
1
;
int
dont_inherit
=
0
;
int
supplied_flags
=
0
;
int
is_ast
;
PyCompilerFlags
cf
;
PyObject
*
result
=
NULL
,
*
cmd
,
*
tmp
=
NULL
;
Py_ssize_t
length
;
...
...
@@ -505,7 +506,10 @@ builtin_compile(PyObject *self, PyObject *args, PyObject *kwds)
return
NULL
;
}
if
(
PyAST_Check
(
cmd
))
{
is_ast
=
PyAST_Check
(
cmd
);
if
(
is_ast
==
-
1
)
return
NULL
;
if
(
is_ast
)
{
if
(
supplied_flags
&
PyCF_ONLY_AST
)
{
Py_INCREF
(
cmd
);
result
=
cmd
;
...
...
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