Better integer literal parsing.
authorRobert Bradshaw <robertwb@math.washington.edu>
Thu, 31 Jul 2008 07:55:14 +0000 (00:55 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Thu, 31 Jul 2008 07:55:14 +0000 (00:55 -0700)
commitb4c2c4c205e75ef746de3985f6ae1474bb94f8e4
tree3246a85036be0f13c15258bd77c91e251af5306e
parentae9630e51b3f352320863c0a1f5e2dc5a023d1cf
Better integer literal parsing.

Now accepts U and LL suffixes, and large integer literals are longs rather than being truncated as Python objects.
Cython/Compiler/ExprNodes.py
Cython/Compiler/Lexicon.py
Cython/Compiler/ModuleNode.py
Cython/Compiler/Parsing.py
Cython/Compiler/Symtab.py
Cython/Utils.py
tests/run/int_literals.pyx [new file with mode: 0644]