projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3b8f90
)
commented out buffer support in parser to fix C array types
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 11 Jul 2008 16:05:52 +0000
(18:05 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 11 Jul 2008 16:05:52 +0000
(18:05 +0200)
Cython/Compiler/Parsing.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Parsing.py
b/Cython/Compiler/Parsing.py
index efb88fbf6745c1d585d72090c410a36a5a15af3e..af2bc392c509d81efa59973634e207e48e8f3fc0 100644
(file)
--- a/
Cython/Compiler/Parsing.py
+++ b/
Cython/Compiler/Parsing.py
@@
-1613,7
+1613,7
@@
def p_c_simple_base_type(s, self_flag, nonempty):
# Treat trailing [] on type as buffer access
- if s.sy == '[':
+ if
0: #
s.sy == '[':
if is_basic:
s.error("Basic C types do not support buffer access")
return p_buffer_access(s, type_node)