summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Update release date in changelog.0.27Stefan Behnel2017-09-231-1/+1
* Replace usage of internal C-API by correctly exported function.Stefan Behnel2017-09-231-6/+6
* Re-simplify fallback abs() expression.Stefan Behnel2017-09-221-1/+1
* Fix abs(long long) test in 32bit MSVC: need to calculate max value in Python ...Stefan Behnel2017-09-221-1/+1
* Add obvious branch hint.Stefan Behnel2017-09-221-1/+1
* Remove all (incorrect) casts in abs(long long).Stefan Behnel2017-09-221-5/+5
* Replace usage of internal C-API by correctly exported function.Stefan Behnel2017-09-221-3/+3
* Try to fix abs(long long) in MSVC by returning the negative value for the "un...Stefan Behnel2017-09-221-2/+2
* Prevent C compiler from seeing "1/0" in test code. MSVC is heavily upset abou...Stefan Behnel2017-09-221-12/+14
* Get rid of copy&paste type struct setup in favour of the normal way it's done...Stefan Behnel2017-09-221-4/+4
* Use more testing shards in appveyor build to see if we can speed things up fu...Stefan Behnel2017-09-221-1/+1
* Configure another Cython option in test runner from *inside* the shard runner...Stefan Behnel2017-09-221-4/+3
* Configure Cython options in test runner from *inside* the shard runner to sup...Stefan Behnel2017-09-221-14/+19
* Always use _abs64() for "long long" on Windows, not only on 64bit.Stefan Behnel2017-09-222-3/+3
* Add missing "static" modifiers for async-gen type structs.Stefan Behnel2017-09-221-4/+4
* Remove Py2.6 from Appveyor build as it is no longer supported for wheel builds.Stefan Behnel2017-09-221-8/+0
* Try to speed up tests on Appveyor.Stefan Behnel2017-09-221-1/+2
* Fix scanner index types on systems where size_t > long, namely Win64.Stefan Behnel2017-09-221-4/+4
* Fix _PyGen_Send() usage in Windows.Stefan Behnel2017-09-221-3/+6
* Add missing cast.Stefan Behnel2017-09-221-1/+1
* Avoid stdint types to make MSVC happy.Stefan Behnel2017-09-221-43/+31
* Prepare release of 0.27.Stefan Behnel2017-09-222-2/+2
* Update changelog.Stefan Behnel2017-09-211-1/+2
* Merge pull request #1878 from rlamy/pypy3-fixesscoder2017-09-214-12/+33
|\
| * Add a PyPy-compatible definition of getrefcount()Ronan Lamy2017-09-211-10/+20
| * Define __Pyx_PyUnicode_AsStringAndSize() on PyPyRonan Lamy2017-09-211-2/+2
| * Skip some tests that can't work on pypyRonan Lamy2017-09-211-0/+7
| * Guard call to tp_iternext slot function with CYTHON_USE_TYPE_SLOTSRonan Lamy2017-09-211-0/+4
|/
* Fix a test in PyPy.Stefan Behnel2017-09-211-2/+3
* Last change accidentally disallowed mismatching 'nogil' assignments even when...Stefan Behnel2017-09-211-8/+17
* Remove debug statement.Stefan Behnel2017-09-211-1/+0
* Update changelog.Stefan Behnel2017-09-211-0/+5
* Allow assignment of C function pointers with compatible exception declaration...Stefan Behnel2017-09-213-15/+46
* Rename test file to match similar ones.Stefan Behnel2017-09-211-0/+0
* Allow mismatches of broader exception declarations in .pxd signatures as long...Stefan Behnel2017-09-215-17/+119
* Merge pull request #1876 from treuherz/patch-1Robert Bradshaw2017-09-201-2/+4
|\
| * Pass pyx_library kwargs to py_librarytreuherz2017-09-201-2/+4
* | Prepare 0.27rc1.0.27rc1Stefan Behnel2017-09-201-1/+1
* | Safely generate all used "is contiguous" helper macros even when they occur i...Stefan Behnel2017-09-205-29/+86
* | Update changelog.Stefan Behnel2017-09-201-0/+1
* | Make vtable order of extension types with fused methods only dependant on the...Stefan Behnel2017-09-206-16/+283
|/
* Mention a fixed bug in changelog.Stefan Behnel2017-09-191-0/+3
* Prepare first beta release of 0.27.0.27b1Stefan Behnel2017-09-191-1/+1
* Prepare first alpha release of 0.270.27a1Stefan Behnel2017-09-161-1/+1
* Fix Makefile output.Stefan Behnel2017-09-151-1/+1
* Avoid memory leak in NumPy test.Stefan Behnel2017-09-151-4/+5
* Avoid calling _PyDict_NewPresized() for len(dict) <=8, which is the minimum d...Stefan Behnel2017-09-153-4/+4
* Avoid dict resizing while creating fixed-size dicts.Stefan Behnel2017-09-145-5/+13
* Merge pull request #1871 from rlamy/pypy3-fixesscoder2017-09-139-28/+38
|\
| * Fix module.__file__ checks to work on pypyRonan Lamy2017-09-133-6/+6