- 19 Mar, 2016 5 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
https://www.python.org/dev/peps/pep-0515/ https://bugs.python.org/issue26331 Practically accepted as of 2016-03-19: http://thread.gmane.org/gmane.comp.python.devel/156533/focus=156734
-
- 17 Mar, 2016 5 commits
-
-
Robert Bradshaw authored
-
Robert Bradshaw authored
This partially revert the change introduced in 767fce81. Turns out AttributeNodes always start with type error, which we don't want to propagate in some places.
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Robert Bradshaw authored
-
- 11 Mar, 2016 7 commits
-
-
Robert Bradshaw authored
-
Robert Bradshaw authored
-
Robert Bradshaw authored
-
Robert Bradshaw authored
-
Robert Bradshaw authored
Add visibility kwarg to cython.declare.
-
Robert Bradshaw authored
Add declarations for C++11/14 smart pointer factories (make_shared & make_unique)
-
Robert Bradshaw authored
-
- 05 Mar, 2016 2 commits
-
-
Robert Bradshaw authored
DOCS: Fix typo
-
Aditya Bhosale authored
-
- 04 Mar, 2016 4 commits
-
-
Robert Bradshaw authored
Don't error out when non-const value is passed as const function parameter
-
Stefan Behnel authored
-
Robert Bradshaw authored
Silence a warning about applying unary minus to an unsigned integer
-
Ian Henriksen authored
with MSVC.
-
- 03 Mar, 2016 2 commits
-
-
Ian Henriksen authored
function parameter.
-
Ian Henriksen authored
parameter to a function. When function arguments are marked as const, this means that the function should not modify them, not that non-const arguments are not allowed. This also fixes a test that began failing because this change resulted in a slightly different error message when conversion to a const qualified argument is not possible.
-
- 29 Feb, 2016 5 commits
-
-
scoder authored
__Pyx_PyInt_TrueDivideObjC: switch comparison order
-
scoder authored
FROM_PY_FUNCTION: Cast to sdigit after unary minus, not before
-
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 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.
-
- 25 Feb, 2016 2 commits
-
-
Kevin R. Thornton authored
-
Kevin R. Thornton authored
-
- 22 Feb, 2016 8 commits
-
-
Kevin R. Thornton authored
-
Kevin R. Thornton authored
-
Kevin R. Thornton authored
-
Kevin R. Thornton authored
-
Kevin R. Thornton authored
-
Kevin R. Thornton authored
-
Kevin R. Thornton authored
template argument
-
Kevin R. Thornton authored
-