summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Reduce unnecessarily long sleep time in test.0.28b1Stefan Behnel2018-03-041-2/+2
* Add test case from #1685.Stefan Behnel2018-03-042-0/+59
* Re-enable "auto late includes" based on a preliminary directive. We have the ...Stefan Behnel2018-03-035-5/+6
* Disable still failing test for #2104 again.Stefan Behnel2018-03-031-1/+1
* Try to see if the last commit fixes #2104 on travis.Stefan Behnel2018-03-021-1/+1
* Work around BPO-32973: CPython 3 can rerun the module PyInit function if the ...Stefan Behnel2018-03-021-0/+6
* Fix another C89 "variable declared after code" compile error.Stefan Behnel2018-03-021-1/+2
* Merge pull request #2122 from jdemeyer/PyType_Ready_C89Robert Bradshaw2018-03-011-1/+2
|\
| * Declare variable at start of blockJeroen Demeyer2018-03-011-1/+2
|/
* Fix C++ compile error due to redefined type struct.Stefan Behnel2018-02-281-9/+17
* Update changelog: remove reference to late includes.Stefan Behnel2018-02-281-4/+0
* Update version to 0.28b1.Stefan Behnel2018-02-281-1/+1
* Do not hijack "@asyncio.coroutine" to make async-def functions iterable, sinc...Stefan Behnel2018-02-285-23/+88
* #1896: Disable late includes to avoid breakage of user code.Stefan Behnel2018-02-282-1/+4
* Fix method signature.Stefan Behnel2018-02-251-1/+1
* Fix crash during contiguity check in Pythran buffer type checking code: loop ...Stefan Behnel2018-02-251-1/+1
* Fix some variable usages in Pythran buffer type checking code.Stefan Behnel2018-02-251-6/+7
* Repair constant folding for % operator.Stefan Behnel2018-02-251-1/+1
* Optimise %-formatting of strings into f-strings when possible.Stefan Behnel2018-02-253-2/+113
* Clarify the documented semantics of "wraparound(False)" when bounds checks ar...Stefan Behnel2018-02-251-7/+15
* Avoid slow Pythran dtype checking code in fused function dispatch if pythran ...Stefan Behnel2018-02-241-11/+21
* Correct the fallback code for the builtin next() when slot usage is disabled ...Stefan Behnel2018-02-241-3/+14
* Avoid exception type check in next() implementation if we don't have a defaul...Stefan Behnel2018-02-241-5/+3
* Rename unit test method calls from "assertEquals" to "assertEqual" to fix a a...Stefan Behnel2018-02-233-47/+47
* Rename a variable: the iteration optimiser looks at iterables in loops, not i...Stefan Behnel2018-02-231-28/+28
* Disable failing new test for now.Stefan Behnel2018-02-231-0/+1
* Add an integration test for the setuptools based build from #2104.Stefan Behnel2018-02-232-0/+24
* Explicitly re-allow memoryviews in default argument structs after disallowing...Stefan Behnel2018-02-234-5/+29
* Merge pull request #2112 from candide-guevara/patch-1Robert Bradshaw2018-02-201-3/+3
|\
| * Restore indentation.Robert Bradshaw2018-02-201-2/+2
| * __dealloc__ should be def not cdefcandide guevara2018-02-191-3/+3
|/
* Merge pull request #2110 from xoviat/cimport-pyxscoder2018-02-191-0/+2
|\
| * Add cimport-from-pyx to command linexoviat2018-02-171-0/+2
* | Disable a type annotations test that now fails in Py3.7.Stefan Behnel2018-02-171-6/+6
* | Add FIXMEs to C-API functions that changed in Py3.7 but are not free of risk ...Stefan Behnel2018-02-171-2/+4
* | Disable yield-from integration test with asyncio in Py3.7 since asyncio Pytho...Stefan Behnel2018-02-171-11/+21
* | Refactor duplicate code.Stefan Behnel2018-02-171-15/+10
* | Avoid C compiler warning about an "always true" signedness check expression.Stefan Behnel2018-02-171-1/+1
* | Remove dead link from docs.Stefan Behnel2018-02-171-2/+1
* | Try to work around differing GC behaviour of NumPy 1.14 in a doctest.Stefan Behnel2018-02-171-2/+2
* | Try to work around differing GC behaviour of NumPy 1.14 in a doctest.Stefan Behnel2018-02-171-2/+10
* | Fix doctest issue due to different array display in NumPy 1.14.Stefan Behnel2018-02-171-11/+10
|/
* Re-enable method unpacking inside of the module init function if the call occ...Stefan Behnel2018-02-161-1/+14
* Disable method unpacking inside of module init function by default as it real...Stefan Behnel2018-02-163-4/+6
* Fix exttype inheritance from builtin bytearray type.Stefan Behnel2018-02-163-0/+17
* Re-allow copy assignments from const memory views into read/write memory views.Stefan Behnel2018-02-162-2/+27
* Do not compare the "writable_needed" flag when comparing memory views that co...Stefan Behnel2018-02-161-1/+1
* Merge pull request #1869 from scoder/readonly_buffersscoder2018-02-1616-196/+371
|\
| * Clarify doc section on const memoryviews.Stefan Behnel2018-02-151-8/+8
| * Repair memslice test after disabling auto-detection of read-only views, but k...Stefan Behnel2018-02-151-61/+61