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
Gwenaël Samain
cython
Commits
d49e0ae5
Commit
d49e0ae5
authored
Dec 19, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
missing cpdef declarations for Parsing.py
parent
6d933553
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
Cython/Compiler/Parsing.pxd
Cython/Compiler/Parsing.pxd
+5
-0
No files found.
Cython/Compiler/Parsing.pxd
View file @
d49e0ae5
...
@@ -25,6 +25,7 @@ cpdef p_term(PyrexScanner s)
...
@@ -25,6 +25,7 @@ cpdef p_term(PyrexScanner s)
cpdef
p_factor
(
PyrexScanner
s
)
cpdef
p_factor
(
PyrexScanner
s
)
cpdef
p_typecast
(
PyrexScanner
s
)
cpdef
p_typecast
(
PyrexScanner
s
)
cpdef
p_sizeof
(
PyrexScanner
s
)
cpdef
p_sizeof
(
PyrexScanner
s
)
cpdef
p_yield_expression
(
PyrexScanner
s
)
cpdef
p_power
(
PyrexScanner
s
)
cpdef
p_power
(
PyrexScanner
s
)
cpdef
p_trailer
(
PyrexScanner
s
,
node1
)
cpdef
p_trailer
(
PyrexScanner
s
,
node1
)
cpdef
p_call
(
PyrexScanner
s
,
function
)
cpdef
p_call
(
PyrexScanner
s
,
function
)
...
@@ -56,9 +57,13 @@ cpdef p_testlist(PyrexScanner s)
...
@@ -56,9 +57,13 @@ cpdef p_testlist(PyrexScanner s)
#
#
#-------------------------------------------------------
#-------------------------------------------------------
cpdef
flatten_parallel_assignments
(
input
,
output
)
cpdef
find_parallel_assignment_size
(
input
)
cpdef
p_global_statement
(
PyrexScanner
s
)
cpdef
p_global_statement
(
PyrexScanner
s
)
cpdef
p_expression_or_assignment
(
PyrexScanner
s
)
cpdef
p_expression_or_assignment
(
PyrexScanner
s
)
cpdef
p_print_statement
(
PyrexScanner
s
)
cpdef
p_print_statement
(
PyrexScanner
s
)
cpdef
p_exec_statement
(
PyrexScanner
s
)
cpdef
p_del_statement
(
PyrexScanner
s
)
cpdef
p_del_statement
(
PyrexScanner
s
)
cpdef
p_pass_statement
(
PyrexScanner
s
,
bint
with_newline
=
*
)
cpdef
p_pass_statement
(
PyrexScanner
s
,
bint
with_newline
=
*
)
cpdef
p_break_statement
(
PyrexScanner
s
)
cpdef
p_break_statement
(
PyrexScanner
s
)
...
...
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