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
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
77ec0cc4
Commit
77ec0cc4
authored
Oct 16, 2009
by
Dag Sverre Seljebotn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Yet another bugfix for autotestdict
parent
c7469874
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
Cython/Compiler/AnalysedTreeTransforms.py
Cython/Compiler/AnalysedTreeTransforms.py
+5
-1
tests/run/autotestdict.pyx
tests/run/autotestdict.pyx
+4
-1
No files found.
Cython/Compiler/AnalysedTreeTransforms.py
View file @
77ec0cc4
...
...
@@ -64,7 +64,11 @@ class AutoTestDictTransform(ScopeTrackingTransform):
parent
=
ModuleRefNode
(
pos
)
name
=
node
.
entry
.
name
elif
self
.
scope_type
in
(
'pyclass'
,
'cclass'
):
if
self
.
scope_type
==
'cclass'
and
node
.
name
in
self
.
blacklist
:
if
isinstance
(
node
,
CFuncDefNode
):
name
=
node
.
py_func
.
name
else
:
name
=
node
.
name
if
self
.
scope_type
==
'cclass'
and
name
in
self
.
blacklist
:
return
node
mod
=
ModuleRefNode
(
pos
)
if
self
.
scope_type
==
'pyclass'
:
...
...
tests/run/autotestdict.pyx
View file @
77ec0cc4
...
...
@@ -12,6 +12,7 @@ all_tests_run() is executed which does final validation.
>>> items.sort()
>>> for key, value in items:
... print('%s ; %s' % (key, value))
MyCdefClass.cpdef_method (line 78) ; >>> add_log("cpdef class method")
MyCdefClass.method (line 75) ; >>> add_log("cdef class method")
MyClass.method (line 65) ; >>> add_log("class method")
doc_without_test (line 47) ; Some docs
...
...
@@ -22,7 +23,6 @@ myfunc (line 44) ; >>> add_log("def")
log
=
[]
cdef
cdef
func
():
"""
Please don't include me!
...
...
@@ -75,6 +75,9 @@ cdef class MyCdefClass:
def
method
(
self
):
""">>> add_log("cdef class method")"""
cpdef
cpdef
_method
(
self
):
""">>> add_log("cpdef class method")"""
def
__cinit__
(
self
):
"""
Should not be included, as it can't be looked up with getattr
...
...
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