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
3eb43d07
Commit
3eb43d07
authored
Jan 16, 2014
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.20.x'
parents
e5ac16ed
2108d1aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
32 deletions
+12
-32
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+10
-32
Cython/Compiler/PyrexTypes.py
Cython/Compiler/PyrexTypes.py
+2
-0
No files found.
Cython/Compiler/Nodes.py
View file @
3eb43d07
...
...
@@ -379,38 +379,7 @@ class StatListNode(Node):
def
analyse_declarations
(
self
,
env
):
#print "StatListNode.analyse_declarations" ###
base_classes
=
{}
def
flatten
(
stats
):
# Common case is trivial flatten.
if
not
[
stat
for
stat
in
stats
if
isinstance
(
stat
,
StatListNode
)]:
return
stats
else
:
all
=
[]
for
stat
in
stats
:
if
isinstance
(
stat
,
StatListNode
):
all
.
extend
(
flatten
(
stat
.
stats
))
else
:
all
.
append
(
stat
)
return
all
flattened
=
flatten
(
self
.
stats
)
for
stat
in
flattened
:
if
isinstance
(
stat
,
CClassDefNode
)
and
not
stat
.
base_class_module
:
base_classes
[
stat
.
class_name
]
=
stat
.
base_class_name
@
cached_function
def
depth
(
class_name
):
base_class
=
base_classes
.
get
(
class_name
)
if
class_name
is
None
:
return
0
else
:
return
depth
(
base_class
)
+
1
keyed_stats
=
[]
for
ix
,
stat
in
enumerate
(
flattened
):
if
isinstance
(
stat
,
CClassDefNode
):
key
=
20
,
depth
(
stat
.
class_name
),
ix
else
:
key
=
10
,
ix
keyed_stats
.
append
((
key
,
stat
))
for
key
,
stat
in
sorted
(
keyed_stats
):
for
stat
in
self
.
stats
:
stat
.
analyse_declarations
(
env
)
def
analyse_expressions
(
self
,
env
):
...
...
@@ -4337,6 +4306,12 @@ class CClassDefNode(ClassDefNode):
warning
(
self
.
pos
,
"freelists cannot be used on subtypes, only the base class can manage them"
,
1
)
has_body
=
self
.
body
is
not
None
if
has_body
and
self
.
base_type
and
not
self
.
base_type
.
scope
:
# To properly initialize inherited attributes, the base type must
# be analysed before this type.
self
.
base_type
.
defered_declarations
.
append
(
lambda
:
self
.
analyse_declarations
(
env
))
return
if
self
.
module_name
and
self
.
visibility
!=
'extern'
:
module_path
=
self
.
module_name
.
split
(
"."
)
home_scope
=
env
.
find_imported_module
(
module_path
,
self
.
pos
)
...
...
@@ -4385,6 +4360,9 @@ class CClassDefNode(ClassDefNode):
scope
.
implemented
=
1
env
.
allocate_vtable_names
(
self
.
entry
)
for
thunk
in
self
.
entry
.
type
.
defered_declarations
:
thunk
()
def
analyse_expressions
(
self
,
env
):
if
self
.
body
:
scope
=
self
.
entry
.
type
.
scope
...
...
Cython/Compiler/PyrexTypes.py
View file @
3eb43d07
...
...
@@ -1070,6 +1070,7 @@ class PyExtensionType(PyObjectType):
# vtabstruct_cname string Name of C method table struct
# vtabptr_cname string Name of pointer to C method table
# vtable_cname string Name of C method table definition
# defered_declarations [thunk] Used to declare class hierarchies in order
is_extension_type
=
1
has_attributes
=
1
...
...
@@ -1092,6 +1093,7 @@ class PyExtensionType(PyObjectType):
self
.
vtabptr_cname
=
None
self
.
vtable_cname
=
None
self
.
is_external
=
is_external
self
.
defered_declarations
=
[]
def
set_scope
(
self
,
scope
):
self
.
scope
=
scope
...
...
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