Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | original Py3 code generation patch by Lisandro Dalcin | Stefan Behnel | 2008-05-09 | 1 | -18/+75 | |
| | | | ||||||
* | | | Removed str conversion from SourceDescriptors in order to be more explicit. | Dag Sverre Seljebotn | 2008-05-27 | 1 | -1/+1 | |
| | | | ||||||
* | | | Fixed typo children_attrs -> child_attrs | Dag Sverre Seljebotn | 2008-05-16 | 1 | -1/+1 | |
| | | | ||||||
* | | | Replace filename strings with more generic source descriptors. | Dag Sverre Seljebotn | 2008-05-16 | 1 | -2/+2 | |
| |/ |/| | | | | | | | This facilitates using the parser and compiler with runtime sources (such as strings), while still being able to provide context for error messages/C debugging comments. | |||||
* | | put the annotated .html file next to the .c file to fix annotation when the ↵ | Stefan Behnel | 2008-05-09 | 1 | -1/+1 | |
| | | | | | | | | .c file is not in the same directory as the .pyx file | |||||
* | | support enabling source annotation via CompilerOptions | Stefan Behnel | 2008-05-09 | 1 | -3/+2 | |
| | | ||||||
* | | __getattr(ibute)__ special methods now work with subclasses. | Peter Todd | 2008-05-04 | 1 | -4/+15 | |
| | | ||||||
* | | First stage of __getattribute__ special method support. | Peter Todd | 2008-05-02 | 1 | -13/+22 | |
|/ | | | | | Works with test cases for a single class, have not dealt with subclass issues yet. | |||||
* | another simplification of type inheritance sorting | Stefan Behnel | 2008-04-26 | 1 | -20/+18 | |
| | ||||||
* | merge | Stefan Behnel | 2008-04-26 | 1 | -4/+5 | |
|\ | ||||||
| * | Merge circular imports stuff | Robert Bradshaw | 2008-04-26 | 1 | -4/+5 | |
| |\ | ||||||
| | * | More extendable Setup.py | Robert Bradshaw | 2008-04-26 | 1 | -1/+0 | |
| | | | ||||||
| | * | Fix weakref issue for classes inheriting from a pxd | Robert Bradshaw | 2008-04-26 | 1 | -3/+5 | |
| | | | ||||||
| * | | Circular imports | Gary Furnish | 2008-04-26 | 1 | -32/+139 | |
| | | | ||||||
* | | | rewrite of type hierarchy sorting patch | Stefan Behnel | 2008-04-26 | 1 | -90/+67 | |
| | | | ||||||
* | | | Circular imports | Gary Furnish | 2008-04-26 | 1 | -32/+139 | |
| |/ |/| | ||||||
* | | source code encoding support (PEP 263) and UTF-8 default source encoding ↵ | Stefan Behnel | 2008-04-22 | 1 | -1/+1 | |
|/ | | | | (PEP 3120) | |||||
* | reverted 'circular cdef' patch, leaving unrelated changes intact | Stefan Behnel | 2008-04-09 | 1 | -205/+43 | |
| | ||||||
* | Fix cdef extern classes | Robert Bradshaw | 2008-04-08 | 1 | -4/+6 | |
| | ||||||
* | Cleanup unsused functions/labels | Robert Bradshaw | 2008-04-04 | 1 | -2/+1 | |
| | ||||||
* | Misc little fixes. Sage now builds and passes all tests. | Robert Bradshaw | 2008-04-03 | 1 | -5/+9 | |
| | ||||||
* | minor fixes | Robert Bradshaw | 2008-04-03 | 1 | -2/+2 | |
| | ||||||
* | c line numbers optional | Robert Bradshaw | 2008-03-30 | 1 | -2/+2 | |
| | ||||||
* | Circular cdef's | Gary Furnish | 2008-03-23 | 1 | -42/+206 | |
| | ||||||
* | [Cython] Small patch for __stdcall | Jim Kleckner | 2008-03-30 | 1 | -1/+3 | |
| | | | | | | | | | | The following small patch gets rid of some warnings on the cygwin platform (it it not WIN32 but does have definitions of __stdcall resulting in warnings). Please let me know if it will or won't get into the upstream release. Thanks. | |||||
* | Support for parse tree transformations. | "Dag Sverre Seljebotn" | 2008-03-09 | 1 | -3/+5 | |
| | ||||||
* | pre-Py3k fixes | Stefan Behnel | 2008-03-02 | 1 | -4/+4 | |
| | ||||||
* | Cleanup warnings | Robert Bradshaw | 2008-02-12 | 1 | -0/+1 | |
| | ||||||
* | Cython disregards the c-name for "cdef public" class members | bluecreature@gmail.com | 2008-02-12 | 1 | -1/+1 | |
| | ||||||
* | Mangle naming for cleanup function. | Robert Bradshaw | 2008-02-01 | 1 | -4/+6 | |
| | ||||||
* | revert C++ assignment fix as it breaks gcc | Stefan Behnel | 2008-01-17 | 1 | -4/+2 | |
| | ||||||
* | tp_new must always be generated to set the vtab | Robert Bradshaw | 2008-01-17 | 1 | -2/+0 | |
| | | | | but we can get away with skipping intermediate classes if nothing new happens | |||||
* | C++ assignment fix | Robert Bradshaw | 2008-01-17 | 1 | -1/+3 | |
| | ||||||
* | Allow trivial __cinit__ that ignores __init__ values for speed. | Robert Bradshaw | 2008-01-17 | 1 | -2/+6 | |
| | | | | The signatures are no longer required to match if the only argument to __cinit__ is self. | |||||
* | tp_new, etc. cleanup | Robert Bradshaw | 2008-01-17 | 1 | -16/+10 | |
| | ||||||
* | Optimize tp_new and tp_dealloc | Robert Bradshaw | 2008-01-17 | 1 | -7/+25 | |
| | ||||||
* | Further optimizations on tp_clear/traverse | Robert Bradshaw | 2008-01-17 | 1 | -17/+30 | |
| | ||||||
* | empty tuple optimization | Robert Bradshaw | 2008-01-17 | 1 | -0/+4 | |
| | ||||||
* | Merge Stefan Behnel's work. | Robert Bradshaw | 2008-01-17 | 1 | -4/+11 | |
|\ | ||||||
| * | reset to None instead of NULL in tp_clear() | Stefan Behnel | 2008-01-13 | 1 | -1/+2 | |
| | | ||||||
| * | fix tp_clear() according to Python docs: zero out member pointer before ↵ | Stefan Behnel | 2008-01-12 | 1 | -2/+3 | |
| | | | | | | | | decrefing its content | |||||
| * | only generate tp_clear/traverse functions if type supports GC | Stefan Behnel | 2008-01-12 | 1 | -2/+3 | |
| | | ||||||
| * | fix subclassing non-GC types like 'unicode' | Stefan Behnel | 2008-01-09 | 1 | -0/+4 | |
| | | ||||||
| * | Backed out changeset 4a6021b8a18c | Stefan Behnel | 2008-01-09 | 1 | -4/+0 | |
| | | | | | | | | there is a better way to do that | |||||
| * | fix subclassing non-GC types like 'unicode' | Stefan Behnel | 2008-01-09 | 1 | -0/+4 | |
| | | ||||||
* | | Annotation work | Robert Bradshaw | 2008-01-15 | 1 | -0/+4 | |
|/ | ||||||
* | Pyrex type conversion with overflow check for all int types. | Robert Bradshaw | 2007-12-05 | 1 | -2/+4 | |
| | ||||||
* | HTML source annotation module | Robert Bradshaw | 2007-11-16 | 1 | -1/+13 | |
| | ||||||
* | ignore METH_COEXIST for python < 2.4 | Robert Bradshaw | 2007-11-07 | 1 | -0/+3 | |
| | ||||||
* | fix DECREF of borrowed reference | Stefan Behnel | 2007-10-29 | 1 | -2/+0 | |
| |