- 10 Aug, 2018 13 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Remove duplicated C compiler option from tests that is already set by the test runner via the cpp11 tag.
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
See #2509.
-
- 09 Aug, 2018 4 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 04 Aug, 2018 2 commits
-
-
scoder authored
Use the print function in the nonecheck example
-
John Kirkham authored
-
- 03 Aug, 2018 12 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Enable some tests that were unintentionally not being executed because docstrings in cdef functions are not visible to Python.
-
Stefan Behnel authored
-
Stefan Behnel authored
Repair incorrect return value usage in test runner when checking gcc version. Fails on Windows when gcc is not available (with an error trying to regex parse None).
-
Stefan Behnel authored
Make a test work in Py3.7 that changed behaviour in Python 3.7 ("generator_stop" future import became active by default).
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Closes #2494.
-
Stefan Behnel authored
-
Stefan Behnel authored
Closes #2484.
-
- 01 Aug, 2018 2 commits
-
-
Robert Bradshaw authored
-
Robert Bradshaw authored
-
- 31 Jul, 2018 2 commits
-
-
Robert Bradshaw authored
Fix calling va_arg function with a NULL argument from generated C++ code
-
Orivej Desh authored
C++ allows NULL to be a literal 0 [1], and this actually happens on some Linux systems when linux/stddef.h happens to be included [2]. When 0 is passed to a variadic function as a 7th or later argument, it is passed on the stack, and Clang encodes this on AMD64 with "mov dword ptr [rsp], 0" because it is an int. This sets lower 32 bits to zero, but leaves upper 32 bits unchanged. When they happen to be non zero, the called function that expects the last argument to be a zero pointer reads past the last intended argument and eventually segfaults. [1] https://en.cppreference.com/w/cpp/types/NULL [2] https://stackoverflow.com/a/31285400/1687334 [3] https://godbolt.org/g/o4Av7Q
-
- 28 Jul, 2018 1 commit
-
-
Stefan Behnel authored
-
- 23 Jul, 2018 4 commits
-
-
Stefan Behnel authored
-
-
scoder authored
Pythran: verify that pythran supports called Numpy APIs
-
scoder authored
Moving compilation from the reference guide to the userguide Part 3
-