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
f230a861
Commit
f230a861
authored
Oct 29, 2012
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
disable some Cython syntax in .py compilation mode: typecasts, &..., sizeof()
parent
293a9b51
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
Cython/Compiler/Parsing.py
Cython/Compiler/Parsing.py
+11
-11
No files found.
Cython/Compiler/Parsing.py
View file @
f230a861
...
@@ -278,17 +278,17 @@ def _p_factor(s):
...
@@ -278,17 +278,17 @@ def _p_factor(s):
pos
=
s
.
position
()
pos
=
s
.
position
()
s
.
next
()
s
.
next
()
return
ExprNodes
.
unop_node
(
pos
,
op
,
p_factor
(
s
))
return
ExprNodes
.
unop_node
(
pos
,
op
,
p_factor
(
s
))
elif
sy
==
'&'
:
elif
not
s
.
in_python_file
:
pos
=
s
.
position
()
if
sy
==
'&'
:
s
.
next
()
pos
=
s
.
position
()
arg
=
p_factor
(
s
)
s
.
next
(
)
return
ExprNodes
.
AmpersandNode
(
pos
,
operand
=
arg
)
arg
=
p_factor
(
s
)
elif
sy
==
"<"
:
return
ExprNodes
.
AmpersandNode
(
pos
,
operand
=
arg
)
return
p_typecast
(
s
)
elif
sy
==
"<"
:
elif
sy
==
'IDENT'
and
s
.
systring
==
"sizeof"
:
return
p_typecast
(
s
)
return
p_sizeof
(
s
)
elif
sy
==
'IDENT'
and
s
.
systring
==
"sizeof"
:
else
:
return
p_sizeof
(
s
)
return
p_power
(
s
)
return
p_power
(
s
)
def
p_typecast
(
s
):
def
p_typecast
(
s
):
# s.sy == "<"
# s.sy == "<"
...
...
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