- 24 Mar, 2016 9 commits
-
-
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
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 18 Mar, 2016 1 commit
-
-
Stefan Behnel authored
-
- 12 Feb, 2016 1 commit
-
-
Stefan Behnel authored
-
- 16 Jan, 2016 1 commit
-
-
Stefan Behnel authored
repair deep-copying (and pickling) of the control flow state in compiled Cython (extension type instances lost their state)
-
- 31 Oct, 2015 1 commit
-
-
Robert Bradshaw authored
-
- 27 Oct, 2015 1 commit
-
-
Robert Bradshaw authored
-
- 10 Oct, 2015 4 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Robert Bradshaw authored
Fix a memory leak in ObjectHandling.c
-
Jay Oster authored
-
- 04 Oct, 2015 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 03 Oct, 2015 1 commit
-
-
Stefan Behnel authored
do not use cythonize() but Cython.Distutils in setup.py to avoid Cython compilation when not building the extensions
-
- 02 Oct, 2015 4 commits
-
-
Stefan Behnel authored
clean up extension building in setup.py: clarify what's Py3.2-specific and use cythonize() instead of Cython.Distutils
-
Lisandro Dalcin authored
-
Lisandro Dalcin authored
-
Lisandro Dalcin authored
-
- 01 Oct, 2015 3 commits
-
-
Stefan Behnel authored
-
Lisandro Dalcin authored
-
Lisandro Dalcin authored
-
- 30 Sep, 2015 6 commits
-
-
Stefan Behnel authored
-
-
Stefan Behnel authored
-
Lisandro Dalcin authored
* Add Python 3.5 to the build matrix * Rework helper build script (copied from mpi4py)
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 29 Sep, 2015 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
guess longness suffix of negative decimal integer literals based on their type to prevent the C compiler from truncating their value range
-
- 28 Sep, 2015 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 27 Sep, 2015 2 commits
-
-
Stefan Behnel authored
-
Robert Bradshaw authored
-