summaryrefslogtreecommitdiff
path: root/Cython
Commit message (Expand)AuthorAgeFilesLines
* correctly tie one PyCodeObject instance to one function to allow for proper t...fixed_code_objectsStefan Behnel2016-07-315-99/+81
* reformat some codeStefan Behnel2016-07-312-10/+8
* add "e" and "pi" aliases to libc.math declarations to bring it closer to a dr...Stefan Behnel2016-07-311-0/+3
* fold CYTHON_USE_PYLONG_INTERNALS feature macro into the same initialisation s...Stefan Behnel2016-07-311-3/+8
* use new macro in two more placesStefan Behnel2016-07-311-2/+2
* add macro indirections that apparently help making pyston happierStefan Behnel2016-07-313-2/+5
* silence a C compiler warning for trivial generators that do not use their clo...Stefan Behnel2016-07-311-0/+3
* guard the usage of the new PEP 492 async type slots by an explicit feature macroStefan Behnel2016-07-312-18/+28
* make new feature-specific guards overridable by user #defines in CPython to a...Stefan Behnel2016-07-301-7/+28
* replace generic "COMPILING_IN_*" C macros with feature specific guards that a...Stefan Behnel2016-07-3012-88/+100
* streamline FetchStopIterationValue()Stefan Behnel2016-07-281-25/+23
* move slow code out of the wayStefan Behnel2016-07-281-1/+1
* speed up FetchStopIterationValue() by moving slow code out of the wayStefan Behnel2016-07-281-1/+1
* use correct (and originally intended) optimisation in CPython instead of *dis...Stefan Behnel2016-07-281-1/+1
* speed up delegation of generators and coroutines a little by avoiding an indi...Stefan Behnel2016-07-281-1/+6
* Test fixes.Robert Bradshaw2016-07-283-3/+3
* Allow old_style_globals to be set via a directive.Robert Bradshaw2016-07-274-6/+16
* Add infrastructure for migrating options to compiler directives.Robert Bradshaw2016-07-273-8/+48
* pass relevant scopes into _save_annotation_body() in AnnotationCCodeWriterStefan Behnel2016-07-241-2/+3
* make annotation items available per file and source line in AnnotationCCodeWr...Stefan Behnel2016-07-241-6/+10
* make current scope available to FunctionState and CCodeWriter to give access ...Stefan Behnel2016-07-245-8/+16
* update master versionStefan Behnel2016-07-151-1/+1
* Merge branch '0.24.x'Stefan Behnel2016-07-151-1/+1
|\
| * set version to 0.24.1Stefan Behnel2016-07-151-1/+1
* | Merge branch '0.24.x'Stefan Behnel2016-07-151-0/+6
|\ \ | |/
| * support "%%cython -3" cell magic in IPythonStefan Behnel2016-07-152-4/+27
| * fix typoStefan Behnel2016-07-151-1/+1
| * Add tp_dict and tp_descr_* declarationsJeroen Demeyer2016-07-151-0/+7
| * simplify some codeStefan Behnel2016-07-151-7/+6
| * allow '=' to occur in C defined macro values when parsing distutils optionsStefan Behnel2016-07-151-1/+1
| * Forward define macros without specified values properlyIan Henriksen2016-07-151-1/+3
| * Improve "missing cimport" messageJeroen Demeyer2016-07-151-1/+1
| * Cleanup C++ buffer type name mangling.Robert Bradshaw2016-07-151-5/+2
| * Mangle C++ namespaced typesIvan Smirnov2016-07-151-0/+1
| * Work around missing Cygwin truncl.Robert Bradshaw2016-07-152-1/+12
| * add "__module__" attribute to coroutines and generatorsStefan Behnel2016-07-152-10/+17
| * Fix timestamps option to work when generating a C++ output file and whenIan Henriksen2016-07-151-15/+21
| * Add module name to metadata.Robert Bradshaw2016-07-151-1/+1
| * Fix typoRobert Bradshaw2016-07-151-3/+3
| * follow PEP492 change in Py3.5.2 that makes __aiter__() a simple function inst...Stefan Behnel2016-07-153-6/+90
| * Work around MCVS else if stacking limit.Robert Bradshaw2016-04-181-0/+6
* | minor code cleanupStefan Behnel2016-07-151-2/+2
* | fix error handling in "__dict__" slot implementationStefan Behnel2016-07-151-9/+17
* | Merge pull request #527 from empyrical/dynamic-attributesscoder2016-07-154-4/+56
|\ \
| * | Use property system for __dict__ attributeempyrical2016-07-144-47/+50
| * | Add special __dict__ attribute to extension typesempyrical2016-07-104-18/+67
* | | support "%%cython -3" cell magic in IPythonStefan Behnel2016-07-082-4/+27
* | | Merge branch 'master' of git+ssh://github.com/cython/cythonStefan Behnel2016-07-083-1/+34
|\ \ \ | |/ /
| * | Allow C++ class methods to use base class' methodsempyrical2016-06-291-1/+1
| * | Allow conversion of std::complex to/from Python objects.Robert Bradshaw2016-06-182-0/+33