Don't store yield expressions list as yields can be copied
[cython.git] / Cython / Compiler / ParseTreeTransforms.py
2011-01-09 Vitja MakarovDon't store yield expressions list as yields can be...
2011-01-09 Vitja MakarovOops, Remove commented lines
2011-01-09 Vitja MakarovAdd support for return with no value inside generator
2011-01-09 Vitja MakarovAdd support for generator expressions, currently breaki...
2011-01-08 Vitja MakarovSkip LambdaNode too
2011-01-08 Vitja MakarovMerge remote branch 'upstream/master'
2011-01-07 Vitja MakarovTransform generator into GeneratorDefNode and Generator...
2011-01-05 Vitja MakarovMerge remote branch 'upstream/master'
2010-12-30 Stefan Behnelmerged reverted patches from cython-devel
2010-12-30 Stefan Behnelmerge
2010-12-30 Stefan Behnelmerge
2010-12-30 Stefan BehnelBacked out changeset 291e2bdd20d5 - currently breaks...
2010-12-30 Stefan BehnelBacked out changeset 1fa88c894da7 - currently breaks...
2010-12-29 Stefan Behnelmerged in latest cython-devel
2010-12-29 Stefan Behnelmerged in latest cython-devel
2010-12-29 Stefan Behnelfix closure handling for decorated methods
2010-12-29 Stefan Behnelfix decorator lookup by avoiding (re-)assignments to...
2010-12-28 Vitja MakarovMerge remote branch 'upstream/master'
2010-12-21 Vitja MakarovMerge remote branch 'upstream/master'
2010-12-19 Vitja MakarovRemove OldYieldExprNode
2010-12-19 Vitja MakarovMerge remote branch 'upstream/master'
2010-12-14 Stefan Behnelmerge
2010-12-13 Robert Bradshawmerge whitespace changes
2010-12-13 Robert BradshawRemove trailing whitespace.
2010-12-13 Vitja MakarovFix error handling add error tests
2010-12-13 Stefan Behnelmerge
2010-12-13 Vitja MakarovRename create_abstract_generator to create_generator_cl...
2010-12-12 Vitja MakarovMove ClosureTempAllocator to Code.py
2010-12-12 Vitja MakarovRename stuff from CyGenerator to __Pyx_Generator
2010-12-12 Vitja MakarovMerge MarkClosureVisitor and MarkGeneratorVisitor
2010-12-12 Vitja MakarovTurn YieldNodeCollector into TreeVisitor
2010-12-12 Vitja MakarovMerge remote branch 'upstream/master'
2010-12-11 Vitja MakarovMerge remote branch 'upstream/master'
2010-12-11 Stefan Behneleliminate StopIterationNode
2010-12-10 Vitja MakarovGenerators: add throw() support
2010-12-10 Vitja MakarovAdd close() support
2010-12-10 Robert Bradshawmerge
2010-12-09 Vitja MakarovMake Refnanny happy, fix some errors. More testcases.
2010-12-09 Vitja MakarovExperimental support for generators
2010-12-09 Stefan Behnelcompile fix for Cython/Compiler/ParseTreeTransforms.py
2010-12-09 Robert Bradshawmerge
2010-12-09 Robert BradshawMerge https://github.com/markflorisson88/cython
2010-12-05 Mark FlorissonMerge branch 'master' of https://github.com/cython...
2010-12-04 Robert BradshawMerge branch 'math' of https://github.com/certik/cython
2010-12-04 Robert BradshawMerge branch 'fatal_errors' of https://github.com/certi...
2010-12-02 Stefan Behnelclean up evil import collisions in ParseTreeTransforms.py
2010-12-01 Mark FlorissonExcluded cygdb from python 2.3 and 2.4 installations...
2010-12-01 Mark Florissonbranch merge
2010-11-30 Stefan Behnelmerge
2010-11-30 Stefan Behnelrefactor scope handling in ScopedExprNode, enable type...
2010-11-29 Stefan Behnelminor code optimisations
2010-11-28 Stefan Behnelcdef another class in ParseTreeTransforms
2010-11-27 Vitja MakarovSupport lambda in module scope #603
2010-11-26 Stefan Behnelmerge
2010-11-26 Stefan Behnelanother Py3 fix for compiled Cython module
2010-11-26 Stefan Behnelmissing import
2010-11-26 Stefan Behnelfix several Py3 and import issues in the compiled modules
2010-11-26 Stefan Behnelcompile Cython.Compiler.ParseTreeTransforms module
2010-11-26 Stefan Behnelreally fix parallel/cascaded assignments this time...
2010-11-26 Stefan Behnelcomments
2010-11-25 Stefan Behnelfix for parallel assignments: subexpressions were incor...
2010-11-25 Vitja MakarovClosure optimization
2010-11-24 Mark Florissonbranch merge
2010-11-23 Stefan Behnelanother fix for str() handling that works around intern...
2010-11-23 Stefan Behnelmerge
2010-11-22 Stefan Behnelfix locals() in -3 mode
2010-11-21 Mark Florissonbranch merge
2010-11-18 Vitja MakarovSupport class closures and nested classes.
2010-11-19 Stefan Behnelresolve 'cython' compiler directives also on Python...
2010-11-16 Mark FlorissonEnsure 'cy locals' and 'cy exec' don't use uninitialize...
2010-11-18 Stefan Behnelbacked out class closures patch - breaks CPython regres...
2010-11-17 Vitja MakarovSupport class closures and nested classes
2010-11-15 Stefan Behnelcleanup
2010-11-14 Robert Bradshawtiny fix, cleanup
2010-11-14 Robert BradshawInplace analysis fix.
2010-11-13 Mark FlorissonFix DebugTransform compiler crash
2010-11-13 Mark Florissonbranch merge
2010-11-12 Stefan Behnelfix PostParse transform after changing its superclass
2010-11-12 Stefan Behnellet PostParse transform inherit from ScopeTrackingTrans...
2010-11-12 Stefan Behnelmerge
2010-11-12 Stefan Behneldrop redundant code in ExpandInplaceOperators transform
2010-11-12 Stefan Behnelmerge
2010-11-12 Robert Bradshawmerge
2010-11-12 Robert BradshawActualy use PyNumber_Inplace* operations.
2010-11-12 Robert Bradshawcleanup
2010-11-12 Robert BradshawOne more buffer fix.
2010-11-12 Robert BradshawHandle inplace arithmatic via parse tree transform.
2010-11-06 Mark FlorissonSupport dereferencing variables in Cython frames
2010-11-05 Mark FlorissonDefault 'is_called' attribute to False if not set in...
2010-11-08 Stefan Behnelsecond try to fix ticket #583: method signatures of...
2010-11-04 Mark FlorissonFixed writing debug information with the --cplus flag
2010-11-03 Mark Florissonmerge with cython-devel
2010-11-03 Stefan Behnelin pure mode: rename 'with nogil' to 'with cython.nogil...
2010-11-01 Mark FlorissonReentrant gdb.execute()
2010-10-31 Mark Florissondispatch based on frame
2010-10-30 Stefan Behnelfix scope of closures that was missing a 'directives...
2010-10-30 Stefan Behnelfix decorators in external .pxd files after last commit
2010-10-30 Stefan Behnelclean up directive decorator parsing, support boolean...
2010-10-30 Stefan Behnelallow decorators on classes in the parser, just disable...
2010-10-27 Mark FlorissonTests!
next