Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
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
cython
Commits
b8baa94d
Commit
b8baa94d
authored
Apr 01, 2011
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor code cleanup
parent
17da082e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+9
-8
No files found.
Cython/Compiler/Nodes.py
View file @
b8baa94d
...
...
@@ -2928,7 +2928,7 @@ class GeneratorDefNode(DefNode):
is_generator
=
True
needs_closure
=
True
child_attrs
=
[
"args"
,
"star_arg"
,
"starstar_arg"
,
"body"
,
"decorators"
,
"gbody"
]
child_attrs
=
DefNode
.
child_attrs
+
[
"gbody"
]
def
__init__
(
self
,
**
kwargs
):
# XXX: don't actually needs a body
...
...
@@ -2962,8 +2962,6 @@ class GeneratorBodyDefNode(DefNode):
is_generator_body
=
True
child_attrs
=
[
"args"
,
"star_arg"
,
"starstar_arg"
,
"body"
,
"decorators"
]
def
__init__
(
self
,
pos
=
None
,
name
=
None
,
body
=
None
):
super
(
GeneratorBodyDefNode
,
self
).
__init__
(
pos
=
pos
,
body
=
body
,
name
=
name
,
doc
=
None
,
args
=
[],
...
...
@@ -3032,7 +3030,6 @@ class GeneratorBodyDefNode(DefNode):
for
cname
,
type
in
code
.
funcstate
.
all_managed_temps
():
code
.
put_xdecref
(
cname
,
type
)
code
.
putln
(
'__Pyx_AddTraceback("%s");'
%
self
.
entry
.
qualified_name
)
# XXX: ^^^ is this enough?
# ----- Non-error return cleanup
code
.
put_label
(
code
.
return_label
)
...
...
@@ -4900,7 +4897,8 @@ class TryExceptStatNode(StatNode):
code
.
put_goto
(
try_end_label
)
if
code
.
label_used
(
try_return_label
):
code
.
put_label
(
try_return_label
)
for
var
in
exc_save_vars
:
code
.
put_xgiveref
(
var
)
for
var
in
exc_save_vars
:
code
.
put_xgiveref
(
var
)
code
.
putln
(
"__Pyx_ExceptionReset(%s);"
%
', '
.
join
(
exc_save_vars
))
code
.
put_goto
(
old_return_label
)
...
...
@@ -4914,7 +4912,8 @@ class TryExceptStatNode(StatNode):
if
error_label_used
or
not
self
.
has_default_clause
:
if
error_label_used
:
code
.
put_label
(
except_error_label
)
for
var
in
exc_save_vars
:
code
.
put_xgiveref
(
var
)
for
var
in
exc_save_vars
:
code
.
put_xgiveref
(
var
)
code
.
putln
(
"__Pyx_ExceptionReset(%s);"
%
', '
.
join
(
exc_save_vars
))
code
.
put_goto
(
old_error_label
)
...
...
@@ -4925,14 +4924,16 @@ class TryExceptStatNode(StatNode):
if
code
.
label_used
(
exit_label
):
code
.
put_label
(
exit_label
)
for
var
in
exc_save_vars
:
code
.
put_xgiveref
(
var
)
for
var
in
exc_save_vars
:
code
.
put_xgiveref
(
var
)
code
.
putln
(
"__Pyx_ExceptionReset(%s);"
%
', '
.
join
(
exc_save_vars
))
code
.
put_goto
(
old_label
)
if
code
.
label_used
(
except_end_label
):
code
.
put_label
(
except_end_label
)
for
var
in
exc_save_vars
:
code
.
put_xgiveref
(
var
)
for
var
in
exc_save_vars
:
code
.
put_xgiveref
(
var
)
code
.
putln
(
"__Pyx_ExceptionReset(%s);"
%
', '
.
join
(
exc_save_vars
))
code
.
put_label
(
try_end_label
)
...
...
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