- 25 Mar, 2016 5 commits
-
-
Robert Bradshaw authored
-
Robert Bradshaw authored
Implement PEP 515: allow underscores in number literals
-
Robert Bradshaw authored
-
Robert Bradshaw authored
-
Robert Bradshaw authored
Remove obsolete forward about (extremely) old versions of Cython.
-
- 24 Mar, 2016 26 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Conflicts: CHANGES.rst
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Conflicts: CHANGES.rst
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Conflicts: CHANGES.rst
-
Stefan Behnel authored
-
Aaron M. Watson authored
-
Ian Henriksen authored
with MSVC.
-
Nikolaus Rath authored
The current order results in compiler warnings on 32 bit machines, e.g. src/llfuse.c: In function '__Pyx_PyInt_TrueDivideObjC': src/llfuse.c:43980:17: warning: left shift count >= width of type if (8 * sizeof(long) <= 53 || (__Pyx_sst_abs(size) <= 52 / PyLong_SHIFT) || likely(labs(a) <= (1L << 53))) { Switching the order so that the left shift is closer to the sizeof test avoids the warning, presumably because it makes it easier for the compiler to see that the left shift is only executed on 64 bit. Thanks to Christian Neukirchen for doing most of the work!
-
Nikolaus Rath authored
The current cast isn't doing anything, because the unary minus implicitly upcasts to int again, resulting in warnings about potentially value altering conversions on 32 bit systems. Fixes issue #877.
-
Aditya Bhosale authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Conflicts: CHANGES.rst Cython/Compiler/ExprNodes.py Cython/Shadow.py
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 23 Mar, 2016 5 commits
-
-
Stefan Behnel authored
unpack FormattedValueNode with constant string value at compile time (unlikely case but trivial to do...)
-
Stefan Behnel authored
-
Stefan Behnel authored
set FormattedValueNode.format_spec field to None for empty format specs to simplify later "empty" tests
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 22 Mar, 2016 4 commits
-
-
Stefan Behnel authored
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-