summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* rst fix0.23.50.23.xStefan Behnel2016-03-241-2/+2
* changelogStefan Behnel2016-03-241-2/+2
* remove dead left-over code in any()/all() optimisation that issued an "unreac...Stefan Behnel2016-03-244-21/+79
* improve commentsStefan Behnel2016-03-241-4/+4
* changelogStefan Behnel2016-03-241-0/+5
* Fixed a bugAaron M. Watson2016-03-241-1/+1
* Silence a warning about applying unary minus to an unsigned integerIan Henriksen2016-03-241-1/+1
* __Pyx_PyInt_TrueDivideObjC: switch comparison orderNikolaus Rath2016-03-241-1/+2
* FROM_PY_FUNCTION: Cast to sdigit after unary minus, not beforeNikolaus Rath2016-03-241-1/+1
* Fix typoAditya Bhosale2016-03-241-1/+1
* fix reference leak in closure when reassigning to "*args" argumentStefan Behnel2016-03-242-1/+12
* use portable #define instead of directly calling a Py3.3+ only functionStefan Behnel2016-03-241-1/+1
* prepare release of 0.23.5Stefan Behnel2016-03-242-2/+4
* release hand break from truth tests on Unicode strings in Py3.3+Stefan Behnel2016-03-241-1/+1
* changelogStefan Behnel2016-03-181-1/+5
* prevent CPython from swallowing the StopIteration return value in Coroutine.s...Stefan Behnel2016-02-121-2/+1
* repair deep-copying (and pickling) of the control flow state in compiled Cyth...Stefan Behnel2016-01-162-0/+76
* Fix widest type calculation to never return references.Robert Bradshaw2015-10-311-0/+4
* Fix prange() end condition for (stop - start) % step != 0.Robert Bradshaw2015-10-263-1/+39
* prepare release of 0.23.40.23.4Stefan Behnel2015-10-102-2/+2
* changelogStefan Behnel2015-10-101-0/+2
* Merge pull request #450 from pubnub/pr/0.23.x-1Robert Bradshaw2015-10-091-2/+6
|\
| * Fix a memory leak in ObjectHandling.cJay Oster2015-10-091-2/+6
|/
* extend testStefan Behnel2015-10-041-0/+10
* fix 1-arg min/max caseStefan Behnel2015-10-041-1/+1
* do not use cythonize() but Cython.Distutils in setup.py to avoid Cython compi...Stefan Behnel2015-10-031-14/+11
* clean up extension building in setup.py: clarify what's Py3.2-specific and us...Stefan Behnel2015-10-021-40/+46
* AppVeyor: Do not build legacy msi and exe installersLisandro Dalcin2015-10-021-4/+1
* setup.py: Use Cython.Distutils to cythonize itselfLisandro Dalcin2015-10-021-87/+33
* Fix cython.declare() after importLisandro Dalcin2015-10-021-2/+2
* minor safety fixStefan Behnel2015-10-011-1/+1
* AppVeyor: Update config file and install scriptLisandro Dalcin2015-10-012-44/+58
* Travis-CI: Add Python 3.5Lisandro Dalcin2015-10-011-0/+1
* fix testStefan Behnel2015-09-301-1/+1
* Merge branch '0.23.x' of git+ssh://github.com/cython/cython into 0.23.xStefan Behnel2015-09-303-60/+54
|\
| * AppVeyor: UpdateLisandro Dalcin2015-09-303-60/+54
* | changelogStefan Behnel2015-09-301-0/+11
* | suppress warning about unused value by casting it to (void)Stefan Behnel2015-09-301-1/+1
|/
* prefer MSVC special case over C99 compliant case to support VS-2008 quirksStefan Behnel2015-09-301-2/+2
* prepare release of 0.23.30.23.3Stefan Behnel2015-09-292-2/+2
* guess longness suffix of negative decimal integer literals based on their typ...Stefan Behnel2015-09-291-1/+9
* changelogStefan Behnel2015-09-281-1/+1
* automatically register with "backports_abc" module if availableStefan Behnel2015-09-282-13/+37
* changelogStefan Behnel2015-09-271-0/+3
* C++ signed enum conversion fix.Robert Bradshaw2015-09-261-1/+1
* Avoid taking the negation of an unsigned type in int conversion code.Robert Bradshaw2015-09-241-1/+1
* fix error output in cython.inline()Stefan Behnel2015-09-211-1/+1
* improve handling of large negative integer constants once more, including neg...Stefan Behnel2015-09-211-13/+25
* handle "-" sign in str_to_number() helperStefan Behnel2015-09-211-5/+10
* extend integer literal testsStefan Behnel2015-09-211-0/+20