summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* prepare release of 0.23 beta 10.23.beta1Stefan Behnel2015-07-201-1/+1
* Avoid fake enums in test.Robert Bradshaw2015-07-182-4/+4
* replace stupid code in __Pyx_PyGen_FetchStopIterationValue() by fast codeStefan Behnel2015-07-181-14/+2
* Generate custom conversion code for enums.Robert Bradshaw2015-07-183-17/+44
* prevent in-place type list modificationStefan Behnel2015-07-171-1/+1
* make it explicit where type sorting is used in fused function dispatchStefan Behnel2015-07-172-5/+7
* make 'object' predictably the last fallback option for fused typed argumentsStefan Behnel2015-07-172-39/+45
* clean up and simplify code generation code for fused typesStefan Behnel2015-07-171-53/+53
* extend fused types dispatching test to include the generic 'object' fallback ...Stefan Behnel2015-07-171-0/+49
* use absolute import for numpy in fused types codeStefan Behnel2015-07-171-0/+4
* Fix issue with const reference returned results.Robert Bradshaw2015-07-153-1/+18
* exclude non-builtin C methods from builtins optimisation againStefan Behnel2015-07-143-11/+18
* adapt coverage plugin to new API in coverage.py 4.0a7, minor changesStefan Behnel2015-07-141-1/+7
* changelogStefan Behnel2015-07-141-3/+10
* Fix calls for all cdef methods whose names coincide with optimized ones.Robert Bradshaw2015-07-132-1/+21
* Fix bug when calling cdef append.Robert Bradshaw2015-07-132-1/+11
* guard strdup() call in embedding main function against memory errorsStefan Behnel2015-07-131-4/+4
* also free() the allocated argument strings on error in embedding main functionStefan Behnel2015-07-131-8/+4
* free()-ing a NULL pointer should be fineStefan Behnel2015-07-131-7/+5
* Merge pull request #417 from mic-e/fixembedleakscoder2015-07-131-1/+11
|\
| * Fixed some memory leaks in Utility/Embed.cMichael Ensslin2015-07-121-1/+11
* | Merge pull request #416 from mic-e/fixabscpp11scoder2015-07-131-0/+1
|\ \ | |/ |/|
| * Fixed __Pyx_sst_abs with C++11Michael Ensslin2015-07-121-0/+1
|/
* repair fused typesStefan Behnel2015-07-121-6/+0
* fix compiler crash in error caseStefan Behnel2015-07-121-1/+4
* deep-copy finally clauses of try-finally statements earlier to properly suppo...Stefan Behnel2015-07-127-32/+115
* fake a module frame in pyregr tests to enable relative doctest file lookups (...Stefan Behnel2015-07-111-1/+9
* minor code formattingStefan Behnel2015-07-101-12/+13
* delete old test results before starting new run (even with sharding)Stefan Behnel2015-07-101-0/+3
* remove dead legacy codeStefan Behnel2015-07-101-2/+0
* add alias "-jN" for sharding to test runnerStefan Behnel2015-07-101-1/+1
* move simple compile test cvardef.pyx out of run directory to avoid some test ...Stefan Behnel2015-07-101-3/+3
* fix conflict between genexpr inlining and dict iteration optimisationsStefan Behnel2015-07-102-6/+28
* use inlined generator expression for unicode.join(genexpr)Stefan Behnel2015-07-105-56/+137
* use inlined generator expressions for set(genexpr), list(genexpr), dict(genexpr)Stefan Behnel2015-07-104-48/+27
* use inlined generator expression for sorted(genexpr)Stefan Behnel2015-07-105-101/+78
* work around C-API deficiencies in PyPyStefan Behnel2015-07-081-3/+12
* work around missing C-API function PyBytes_FromFormat() in pypy3Stefan Behnel2015-07-081-1/+6
* disable "tp_reserved" usage in PyPy (part 2)Stefan Behnel2015-07-081-1/+1
* write XML results before printing test results to make it more likely that we...Stefan Behnel2015-07-081-5/+5
* work around incorrect C-API signature in PyPy3Stefan Behnel2015-07-081-1/+1
* disable "tp_reserved" usage in PyPyStefan Behnel2015-07-082-3/+3
* support XML report generation in sharded test runsStefan Behnel2015-07-081-3/+9
* type loop variables in memoryview example codeStefan Behnel2015-07-081-0/+1
* fix typoStefan Behnel2015-07-081-1/+1
* fix duplicate option in Sphinx configStefan Behnel2015-07-081-3/+1
* avoid using Py2 syntax in memoryview doc examplesStefan Behnel2015-07-081-9/+14
* minor doc fixStefan Behnel2015-07-081-1/+1
* add section on basic syntax and indexing to memoryview docsStefan Behnel2015-07-081-9/+79
* Merge pull request #409 from jdemeyer/find_pxdscoder2015-07-084-10/+61
|\