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
Boxiang Sun
cython
Commits
7f563ed4
Commit
7f563ed4
authored
Apr 01, 2011
by
Haoyu Bai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
@cython.cclass decorator for class
parent
4b61e74c
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
75 additions
and
9 deletions
+75
-9
Cython/Compiler/Nodes.py
Cython/Compiler/Nodes.py
+3
-0
Cython/Compiler/Options.py
Cython/Compiler/Options.py
+1
-0
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/ParseTreeTransforms.py
+9
-5
Cython/Shadow.py
Cython/Shadow.py
+1
-1
tests/errors/cdef_in_pyclass.pyx
tests/errors/cdef_in_pyclass.pyx
+7
-0
tests/errors/cfunc_directive_in_pyclass.pyx
tests/errors/cfunc_directive_in_pyclass.pyx
+10
-0
tests/run/purecdef.py
tests/run/purecdef.py
+44
-3
No files found.
Cython/Compiler/Nodes.py
View file @
7f563ed4
...
...
@@ -546,6 +546,9 @@ class CFuncDeclaratorNode(CDeclaratorNode):
if
name_declarator
.
cname
:
error
(
self
.
pos
,
"Function argument cannot have C name specification"
)
if
i
==
0
and
env
.
is_c_class_scope
and
type
.
is_unspecified
:
# fix the type of self
type
=
env
.
parent_type
# Turn *[] argument into **
if
type
.
is_array
:
type
=
PyrexTypes
.
c_ptr_type
(
type
.
base_type
)
...
...
Cython/Compiler/Options.py
View file @
7f563ed4
...
...
@@ -96,6 +96,7 @@ directive_types = {
'internal'
:
bool
,
# cdef class visibility in the module dict
'infer_types'
:
bool
,
# values can be True/None/False
'cfunc'
:
None
,
# decorators do not take directive value
'cclass'
:
None
,
}
for
key
,
val
in
directive_defaults
.
items
():
...
...
Cython/Compiler/ParseTreeTransforms.py
View file @
7f563ed4
...
...
@@ -1411,11 +1411,15 @@ class AdjustDefByDirectives(CythonTransform, SkipDeclarations):
return
node
def
visit_PyClassDefNode
(
self
,
node
):
old_in_pyclass
=
self
.
in_py_class
self
.
in_py_class
=
True
self
.
visitchildren
(
node
)
self
.
in_py_class
=
old_in_pyclass
return
node
if
'cclass'
in
self
.
directives
:
node
=
node
.
as_cclass
()
return
self
.
visit
(
node
)
else
:
old_in_pyclass
=
self
.
in_py_class
self
.
in_py_class
=
True
self
.
visitchildren
(
node
)
self
.
in_py_class
=
old_in_pyclass
return
node
def
visit_CClassDefNode
(
self
,
node
):
old_in_pyclass
=
self
.
in_py_class
...
...
Cython/Shadow.py
View file @
7f563ed4
...
...
@@ -23,7 +23,7 @@ class _EmptyDecoratorAndManager(object):
def
__exit__
(
self
,
exc_type
,
exc_value
,
traceback
):
pass
cfunc
=
_EmptyDecoratorAndManager
()
c
class
=
c
func
=
_EmptyDecoratorAndManager
()
def
inline
(
f
,
*
args
,
**
kwds
):
if
isinstance
(
f
,
basestring
):
...
...
tests/errors/cdef_in_pyclass.pyx
0 → 100644
View file @
7f563ed4
class
Pyclass
(
object
):
cdef
bad
(
self
):
pass
_ERRORS
=
"""
2:9: cdef statement not allowed here
"""
tests/errors/cfunc_directive_in_pyclass.pyx
0 → 100644
View file @
7f563ed4
import
cython
class
Pyclass
(
object
):
@
cython
.
cfunc
def
bad
(
self
):
pass
_ERRORS
=
"""
5:4: cfunc directive is not allowed here
"""
tests/run/purecdef.py
View file @
7f563ed4
import
cython
from
cython
import
cfunc
from
cython
import
cfunc
,
cclass
@
cython
.
test_assert_path_exists
(
'//CFuncDefNode'
)
@
cython
.
cfunc
...
...
@@ -28,9 +28,50 @@ with cfunc:
def
fwith2
(
a
):
return
a
*
4
with
cclass
:
@
cython
.
test_assert_path_exists
(
'//CClassDefNode'
)
class
Egg
(
object
):
pass
@
cython
.
test_assert_path_exists
(
'//CClassDefNode'
)
class
BigEgg
(
object
):
@
cython
.
test_assert_path_exists
(
'//CFuncDefNode'
)
@
cython
.
cfunc
def
f
(
self
,
a
):
return
a
*
10
def
test_with
():
"""
>>> test_with()
(3, 4)
(3, 4, 50)
"""
return
fwith1
(
1
),
fwith2
(
1
),
BigEgg
().
f
(
5
)
@
cython
.
test_assert_path_exists
(
'//CClassDefNode'
)
@
cython
.
cclass
class
PureFoo
(
object
):
a
=
cython
.
declare
(
cython
.
double
)
def
__init__
(
self
,
a
):
self
.
a
=
a
def
__call__
(
self
):
return
self
.
a
@
cython
.
test_assert_path_exists
(
'//CFuncDefNode'
)
@
cython
.
cfunc
def
puremeth
(
self
,
a
):
return
a
*
2
def
test_method
():
"""
>>> test_method()
4
True
"""
return
fwith1
(
1
),
fwith2
(
1
)
x
=
PureFoo
(
2
)
print
(
x
.
puremeth
(
2
))
if
cython
.
compiled
:
print
(
isinstance
(
x
(),
float
))
else
:
print
(
True
)
return
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