summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | Merge branch '0.29.x'Stefan Behnel2020-05-162-3/+5
|\ \ | |/
| * Uncomment timedelta macros in datetime.pxd, because why not have them?Stefan Behnel2020-05-162-3/+5
* | Add yet another branch hint for an exception case.Stefan Behnel2020-05-161-1/+1
* | Merge branch '0.29.x'Stefan Behnel2020-05-161-1/+2
|\ \ | |/
| * Update changelog.Stefan Behnel2020-05-161-1/+2
| * Also mark the case of an uninitialised memory view slice as "unlikely()" when...Stefan Behnel2020-05-161-4/+3
| * Mark the last deletion of a memory view slice as "unlikely()" to ask the C co...Stefan Behnel2020-05-161-1/+2
| * Sprinkle "unlikely()" branch hints in all places where the memory view C code...Stefan Behnel2020-05-161-1/+1
| * Mark the first creation of a memory view slice as "unlikely()" to ask the C c...Stefan Behnel2020-05-161-1/+1
| * Sprinkle "unlikely()" branch hints in all places where the memory view C code...Stefan Behnel2020-05-161-23/+20
* | Merge branch '0.29.x'Stefan Behnel2020-05-160-0/+0
|\ \ | |/
| * Fix up the NumPy warnings hack by using the actual "import_array()" function ...Stefan Behnel2020-05-161-2/+2
| * Fix PyArray_SearchSorted signature (GH-3606)jbrockmendel2020-05-162-5/+19
* | Fix PyArray_SearchSorted signature (GH-3606)jbrockmendel2020-05-162-2/+15
* | Also mark the case of an uninitialised memory view slice as "unlikely()" when...Stefan Behnel2020-05-151-4/+3
* | Merge branch '0.29.x'Stefan Behnel2020-05-151-1/+1
|\ \ | |/
| * Fix test output in Py2.Stefan Behnel2020-05-151-1/+1
* | Mark the last deletion of a memory view slice as "unlikely()" to ask the C co...Stefan Behnel2020-05-151-1/+2
* | Sprinkle "unlikely()" branch hints in all places where the memory view C code...Stefan Behnel2020-05-151-1/+1
* | Mark the first creation of a memory view slice as "unlikely()" to ask the C c...Stefan Behnel2020-05-151-1/+1
* | Sprinkle "unlikely()" branch hints in all places where the memory view C code...Stefan Behnel2020-05-151-23/+20
* | Merge branch '0.29.x'Stefan Behnel2020-05-151-0/+3
|\ \ | |/
| * Update changelog.Stefan Behnel2020-05-151-0/+3
| * Run ParallelRangeTransform also recursively on function arguments (GH-3608)da-woods2020-05-152-0/+7
* | Run ParallelRangeTransform also recursively on function arguments (GH-3608)da-woods2020-05-152-0/+7
* | Merge branch '0.29.x'Stefan Behnel2020-05-153-1/+31
|\ \ | |/
| * Allow decorators on nested async-def functions.Stefan Behnel2020-05-153-1/+31
* | Merge branch '0.29.x'Stefan Behnel2020-05-151-0/+4
|\ \ | |/
| * Update changelog.Stefan Behnel2020-05-151-0/+4
| * Move the work directory of the examples tests into an 'examples/' subdirector...Stefan Behnel2020-05-151-1/+2
| * Allow '# cython: …' module level directives in Cython utility code.Stefan Behnel2020-05-151-1/+1
| * Avoid unnecessary generation of unused error handling code in memory view sli...Stefan Behnel2020-05-152-5/+4
* | Move the work directory of the examples tests into an 'examples/' subdirector...Stefan Behnel2020-05-151-1/+2
* | Allow '# cython: …' module level directives in Cython utility code.Stefan Behnel2020-05-151-1/+1
* | Add comment that 'binding' directive default was changed from False to True i...Stefan Behnel2020-05-151-1/+1
* | Avoid unnecessary generation of unused error handling code in memory view sli...Stefan Behnel2020-05-152-5/+4
* | Fix a macro name that was accidentally broken in c9dec706354b06a8689223cfb92b...Stefan Behnel2020-05-141-1/+1
* | Update changelog.Stefan Behnel2020-05-131-0/+4
* | Merge branch '0.29.x'Stefan Behnel2020-05-132-12/+16
|\ \ | |/
| * Make sure the module init function is declared as 'extern "C"' in C++ also wh...Stefan Behnel2020-05-132-12/+16
* | Update changelog.Stefan Behnel2020-05-121-0/+3
* | Merge branch '0.29.x'Stefan Behnel2020-05-121-1/+4
|\ \ | |/
| * Update changelog.Stefan Behnel2020-05-121-0/+3
| * Remove illegal casting of structs when using ctuple (GH-3599)MegaIng2020-05-122-1/+3
| * Fix typo in changelog.Stefan Behnel2020-05-101-1/+1
* | Remove illegal casting of structs when using ctuple (GH-3599)MegaIng2020-05-122-1/+3
* | Re-add previously removed NumPy C-API functions, following the same change in...Stefan Behnel2020-05-121-4/+4
* | Fix __Pyx_RefNannyFinishContextNogil() macro in threadless Pythons.Stefan Behnel2020-05-111-4/+5
* | Avoid MSVC warning in refnanny about an integer assignment that reduces the v...Stefan Behnel2020-05-112-19/+19
* | Avoid an additional utility code section for 2-exception matching by relying ...Stefan Behnel2020-05-113-12/+2