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
b8689607
Commit
b8689607
authored
Oct 24, 2013
by
Robert Bradshaw
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #249 from strohel/cimport-alias-subclass-testcase
Add testcase for cimport+alias+subclass bug
parents
f8971fc0
fd318ca5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
tests/run/cimport_alias_subclass.pyx
tests/run/cimport_alias_subclass.pyx
+13
-0
tests/run/cimport_alias_subclass_helper.pxd
tests/run/cimport_alias_subclass_helper.pxd
+2
-0
No files found.
tests/run/cimport_alias_subclass.pyx
0 → 100644
View file @
b8689607
cimport
cimport_alias_subclass_helper
as
cash
cdef
class
Derived
(
cash
.
Base
):
cdef
bint
foo
(
self
):
print
"Hello"
def
run
():
"""
>>> run()
Hello
"""
d
=
Derived
()
d
.
foo
()
tests/run/cimport_alias_subclass_helper.pxd
0 → 100644
View file @
b8689607
cdef
class
Base
:
cdef
bint
foo
(
self
)
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