summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* version bump0.20rc1Robert Bradshaw2014-01-161-1/+1
* Merge branch '0.20.x'Robert Bradshaw2014-01-162-32/+12
|\
| * Completely re-do out-of-order class declarations.Robert Bradshaw2014-01-162-32/+12
* | fix non-CPython C compile problem (variable declaration after code)Stefan Behnel2014-01-151-0/+2
* | avoid unused fallback code also for typed list unpackingStefan Behnel2014-01-151-2/+2
* | avoid generating lots of unused iteration fallback code for tuple unpackingStefan Behnel2014-01-151-12/+21
|/
* fix crash in Python object to C++ string conversionStefan Behnel2014-01-153-1/+14
* remove duplication of type analysis for base type tuple of Python classes (co...Stefan Behnel2014-01-142-1/+26
* Py3 test fixesStefan Behnel2014-01-141-3/+3
* Remove debugging.Robert Bradshaw2014-01-141-2/+0
* Fix cdef class ordering in the presence of pxi includes.Robert Bradshaw2014-01-141-2/+15
* Merge branch 'master' into 0.20.xRobert Bradshaw2014-01-1311-18/+175
|\
| * Avoid use of grep, ls on WindowsRobert Bradshaw2014-01-131-4/+26
| * Remove use of symlink on Windows.Robert Bradshaw2014-01-131-2/+13
| * Type inference comments, enable test.Robert Bradshaw2014-01-132-1/+3
| * fix (doc-)string usage in .pxd filesStefan Behnel2014-01-133-2/+68
| * fix some more potential C compiler warningsStefan Behnel2014-01-131-2/+2
| * use inferred NameNode type for builtin types instead of more generic entry typeStefan Behnel2014-01-132-0/+21
| * fix MSVC compiler warningStefan Behnel2014-01-131-3/+3
| * fix some C compiler warningsStefan Behnel2014-01-131-4/+4
| * explicitly allow docstrings in .pxd filesStefan Behnel2014-01-131-0/+2
| * doc update: present simple copy&paste cythonize() dummy when not regenerating...Stefan Behnel2014-01-121-0/+22
| * call object.__new__() only when we expect an error due to an abstract class b...Stefan Behnel2014-01-121-3/+14
* | version bumpRobert Bradshaw2014-01-131-1/+1
|/
* Merge branch 'master' into 0.20.x0.20b2Robert Bradshaw2014-01-1113-76/+582
|\
| * changelogStefan Behnel2014-01-111-0/+3
| * implement another try-finally corner case (the Py3 way only for now!): rerais...Stefan Behnel2014-01-113-2/+34
| * optimise string-to-something comparisons also when we know that the result is...Stefan Behnel2014-01-112-5/+411
| * extend testStefan Behnel2014-01-111-4/+8
| * add str comparison fallback to Py2 version of unicode comparisonStefan Behnel2014-01-101-0/+3
| * optimise x == basestring / basestring == xStefan Behnel2014-01-101-0/+4
| * optimise str == unicode / unicode == str in Py2Stefan Behnel2014-01-101-12/+49
| * revert dynamic tp_new() override because it breaks instantiating types with a...Stefan Behnel2014-01-105-112/+9
| * Backed out changeset d0470fb1d881Stefan Behnel2014-01-101-3/+0
| * changelogStefan Behnel2014-01-101-0/+3
| * reuse object's tp_new() for simple extension types if possible to improve sup...Stefan Behnel2014-01-105-9/+112
| * changelogStefan Behnel2014-01-101-0/+4
| * changelogStefan Behnel2014-01-101-0/+3
| * fix set.add(some_tuple) in Py2.4Stefan Behnel2014-01-102-6/+11
| * move set compatibility helpers into Builtins.cStefan Behnel2014-01-102-46/+46
| * call PyBaseObject_Type.tp_new() in tp_new() functions instead of tp_alloc() d...Stefan Behnel2014-01-102-3/+5
| * fix ref-counting bug when writing traceback of unraisable exceptionsStefan Behnel2014-01-101-0/+3
* | Merge branch 'master' into 0.20.xRobert Bradshaw2014-01-0915-18/+111
|\ \ | |/
| * more verbose non-trivial declarators errorRobert Bradshaw2014-01-091-1/+3
| * Merge pull request #270 from ohanar/special_method_docstring_guardRobert Bradshaw2014-01-082-1/+7
| |\
| | * test to ensure special methods are properly guardedR. Andrew Ohana2014-01-031-1/+1
| | * add guarding for special method docstringsR. Andrew Ohana2014-01-031-0/+6
| * | changelogStefan Behnel2014-01-071-0/+3
| * | Unraisable traceback docs.Robert Bradshaw2014-01-072-0/+6
| * | Traceback on unraisable exceptions.Robert Bradshaw2014-01-073-7/+15