summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Py3 test fix0.13.beta0Stefan Behnel2010-07-231-2/+2
* mergeStefan Behnel2010-07-231-1/+3
|\
| * safety fix for unicode literals test - otherwise fails to print on some platf...Stefan Behnel2010-07-231-1/+3
* | Merge closures into main development branch.Robert Bradshaw2010-07-2252-457/+6316
|\ \
| * | typoStefan Behnel2010-07-211-1/+1
| * | generate the expected (fast) code for isinstance() checks on builtin typesStefan Behnel2010-07-212-12/+104
| * | fix 'set' type checks (prevent match with frozenset)Stefan Behnel2010-07-212-9/+22
| * | provide 'complex' type as Builtin.complex_typeStefan Behnel2010-07-211-1/+2
| * | fix return types of PyBytes_* C-API functionsStefan Behnel2010-07-201-6/+6
| * | fix code annotation of 'finally' blockStefan Behnel2010-07-201-0/+1
| * | applied fix by haoyu for bug #543Stefan Behnel2010-07-171-1/+1
| * | merged in latest cython-develStefan Behnel2010-07-1712-68/+78
| |\ \ | | |/
| * | moved new listcomp test over to existing test module for list comprehensionsStefan Behnel2010-07-172-8/+8
| * | reminder for code fix when general genexprs are supportedStefan Behnel2010-07-171-0/+6
| * | code cleanup and fixes for genexprsStefan Behnel2010-07-171-25/+24
| * | mergeCraig Citro2010-07-173-15/+21
| |\ \
| | * \ mergeStefan Behnel2010-07-171-1/+1
| | |\ \
| | * | | fix tree structure for generator expressionsStefan Behnel2010-07-172-9/+17
| | * | | merged in latest cython-develStefan Behnel2010-07-171-6/+4
| | |\ \ \
| * | | | | Fix bug in type analysis for ComprehensionNodes.Craig Citro2010-07-172-0/+11
| | |_|/ / | |/| | |
| * | | | Re-disable debug_trace_code_generationRobert Bradshaw2010-07-161-1/+1
| |/ / /
| * | | Disable closures inside cdef functions for now.Robert Bradshaw2010-07-162-1/+7
| * | | test fixStefan Behnel2010-07-161-6/+6
| * | | reimplement min()/max() optimisation before type analysisStefan Behnel2010-07-162-56/+68
| * | | rewrite of min()/max() optimisation, now correctly handling temps and typesStefan Behnel2010-07-162-36/+170
| * | | mergeStefan Behnel2010-07-1525-62/+284
| |\ \ \
| | * \ \ merged in latest cython-develStefan Behnel2010-07-1425-62/+284
| | |\ \ \
| * | | | | Test for #554, closures inside cdef block.Robert Bradshaw2010-07-072-0/+11
| |/ / / /
| * | | | minor cleanupStefan Behnel2010-07-061-1/+1
| * | | | do not let set/dict comprehensions leak in Py2, only list comprehensionsStefan Behnel2010-07-065-8/+56
| * | | | merged in latest cython-develStefan Behnel2010-06-251-1/+1
| |\ \ \ \
| * \ \ \ \ merged in latest cython-develStefan Behnel2010-06-1558-87/+157
| |\ \ \ \ \
| * | | | | | extended test caseStefan Behnel2010-06-151-0/+32
| * | | | | | fix node traversal in yield expressionsStefan Behnel2010-06-151-1/+1
| * | | | | | merged in latest cython-develStefan Behnel2010-06-014-2/+22
| |\ \ \ \ \ \
| * \ \ \ \ \ \ merged in latest cython-develStefan Behnel2010-05-319-6/+86
| |\ \ \ \ \ \ \
| * | | | | | | | disable tuple(genexpr) as it has a non-obvious negative effect on memory usag...Stefan Behnel2010-05-302-7/+7
| * | | | | | | | avoid potential 32bit issues in testStefan Behnel2010-05-281-6/+6
| * | | | | | | | cleanupStefan Behnel2010-05-281-4/+2
| * | | | | | | | cleanupStefan Behnel2010-05-272-22/+1
| * | | | | | | | test commentStefan Behnel2010-05-271-1/+2
| * | | | | | | | extended test caseStefan Behnel2010-05-271-0/+22
| * | | | | | | | merged in latest cython-develStefan Behnel2010-05-274-3/+38
| |\ \ \ \ \ \ \ \
| * | | | | | | | | implement tuple(genexp) as tuple(list(genexp))Stefan Behnel2010-05-272-0/+29
| * | | | | | | | | clean up comprehensions to bring them closer to generator expressions, make t...Stefan Behnel2010-05-278-141/+279
| * | | | | | | | | extended test caseStefan Behnel2010-05-271-0/+18
| * | | | | | | | | drop sum(genexpr) into plain C code when the result is C typedStefan Behnel2010-05-273-3/+27
| * | | | | | | | | docstringsStefan Behnel2010-05-271-1/+3
| * | | | | | | | | test for min/max builtinsStefan Behnel2010-05-271-0/+92
| * | | | | | | | | implement min(a,b,...) and max(a,b,...) in unrolled conditional codeStefan Behnel2010-05-271-0/+57