cython.git
13 years agoMove generate_preamble() stuff back into generate_function_definitions()
Vitja Makarov [Fri, 7 Jan 2011 08:17:03 +0000 (11:17 +0300)]
Move generate_preamble() stuff back into generate_function_definitions()

13 years agoRemove generators hack
Vitja Makarov [Fri, 7 Jan 2011 08:13:28 +0000 (11:13 +0300)]
Remove generators hack

13 years agoTransform generator into GeneratorDefNode and GeneratorBodyDefNode
Vitja Makarov [Fri, 7 Jan 2011 08:03:14 +0000 (11:03 +0300)]
Transform generator into GeneratorDefNode and GeneratorBodyDefNode

13 years agoAdd new tests for generators
Vitja Makarov [Fri, 7 Jan 2011 07:59:11 +0000 (10:59 +0300)]
Add new tests for generators

13 years agoAdd semicolon after __PyxRefNannyDeclareContext
Vitja Makarov [Thu, 6 Jan 2011 07:01:14 +0000 (10:01 +0300)]
Add semicolon after __PyxRefNannyDeclareContext

13 years agoMerge remote branch 'upstream/master'
Vitja Makarov [Wed, 5 Jan 2011 15:56:10 +0000 (18:56 +0300)]
Merge remote branch 'upstream/master'

13 years agofix ticket #602: let bytes literals start off as 'bytes' instead of 'char*'
Stefan Behnel [Mon, 3 Jan 2011 21:36:35 +0000 (22:36 +0100)]
fix ticket #602: let bytes literals start off as 'bytes' instead of 'char*'

13 years agocode cleanup
Stefan Behnel [Fri, 31 Dec 2010 08:28:38 +0000 (09:28 +0100)]
code cleanup

13 years agominor code cleanup: more selective utility code usage in argument handling code
Stefan Behnel [Thu, 30 Dec 2010 20:09:18 +0000 (21:09 +0100)]
minor code cleanup: more selective utility code usage in argument handling code

13 years agofix strict aliasing issues for type importing code in __Pyx_GetVtable()
Stefan Behnel [Thu, 30 Dec 2010 18:17:02 +0000 (19:17 +0100)]
fix strict aliasing issues for type importing code in __Pyx_GetVtable()

13 years agoclean up cmd line usage description
Stefan Behnel [Thu, 30 Dec 2010 07:54:39 +0000 (08:54 +0100)]
clean up cmd line usage description

13 years agosupport -h/--help in cmd line utility
Stefan Behnel [Thu, 30 Dec 2010 07:44:24 +0000 (08:44 +0100)]
support -h/--help in cmd line utility

13 years agomerged reverted patches from cython-devel
Stefan Behnel [Thu, 30 Dec 2010 00:26:48 +0000 (01:26 +0100)]
merged reverted patches from cython-devel

13 years agore-disable test
Stefan Behnel [Thu, 30 Dec 2010 00:25:46 +0000 (01:25 +0100)]
re-disable test

13 years agomerge
Stefan Behnel [Thu, 30 Dec 2010 00:23:19 +0000 (01:23 +0100)]
merge

13 years agomerge
Stefan Behnel [Thu, 30 Dec 2010 00:23:00 +0000 (01:23 +0100)]
merge

13 years agoBacked out changeset 291e2bdd20d5 - currently breaks Sage build
Stefan Behnel [Thu, 30 Dec 2010 00:22:20 +0000 (01:22 +0100)]
Backed out changeset 291e2bdd20d5 - currently breaks Sage build

13 years agoBacked out changeset 1fa88c894da7 - currently breaks Sage build
Stefan Behnel [Thu, 30 Dec 2010 00:21:58 +0000 (01:21 +0100)]
Backed out changeset 1fa88c894da7 - currently breaks Sage build

13 years agoextended test case
Stefan Behnel [Thu, 30 Dec 2010 00:14:22 +0000 (01:14 +0100)]
extended test case

13 years agomerged in latest cython-devel
Stefan Behnel [Wed, 29 Dec 2010 22:54:34 +0000 (23:54 +0100)]
merged in latest cython-devel

13 years agoenable extended test case for ticket #593
Stefan Behnel [Wed, 29 Dec 2010 22:53:29 +0000 (23:53 +0100)]
enable extended test case for ticket #593

13 years agomerged in latest cython-devel
Stefan Behnel [Wed, 29 Dec 2010 22:37:31 +0000 (23:37 +0100)]
merged in latest cython-devel

13 years agofix closure handling for decorated methods
Stefan Behnel [Wed, 29 Dec 2010 22:34:13 +0000 (23:34 +0100)]
fix closure handling for decorated methods

13 years agofix decorator lookup by avoiding (re-)assignments to the function/class name before...
Stefan Behnel [Wed, 29 Dec 2010 22:04:25 +0000 (23:04 +0100)]
fix decorator lookup by avoiding (re-)assignments to the function/class name before their execution (ticket #593)

13 years agoMerge remote branch 'upstream/master'
Vitja Makarov [Tue, 28 Dec 2010 18:50:58 +0000 (21:50 +0300)]
Merge remote branch 'upstream/master'

Conflicts:
Cython/Compiler/Nodes.py

13 years agoMerge https://github.com/snaury/cython
Robert Bradshaw [Mon, 27 Dec 2010 22:51:28 +0000 (14:51 -0800)]
Merge https://github.com/snaury/cython

14 years agoanother post-#633 fix: accidentally wasn't restricted to Python references
Stefan Behnel [Mon, 27 Dec 2010 10:13:55 +0000 (11:13 +0100)]
another post-#633 fix: accidentally wasn't restricted to Python references

14 years agore-allow Python values in ExprStatNode and NameNode in nogil sections if they do...
Stefan Behnel [Mon, 27 Dec 2010 09:38:00 +0000 (10:38 +0100)]
re-allow Python values in ExprStatNode and NameNode in nogil sections if they do not need cleanup (e.g. cached builtin names or constants)

14 years agonogil fix: disallow ExprStatNode to clean up Python expression results without holdin...
Stefan Behnel [Mon, 27 Dec 2010 09:21:58 +0000 (10:21 +0100)]
nogil fix: disallow ExprStatNode to clean up Python expression results without holding the GIL

14 years agoalways INCREF Python arguments in 'with gil' C functions as we cannot know who owns...
Stefan Behnel [Mon, 27 Dec 2010 09:05:37 +0000 (10:05 +0100)]
always INCREF Python arguments in 'with gil' C functions as we cannot know who owns them

14 years agofix for the #633 fix: cannot create owned reference in nogil sections
Stefan Behnel [Mon, 27 Dec 2010 08:36:10 +0000 (09:36 +0100)]
fix for the #633 fix: cannot create owned reference in nogil sections

14 years agofix bug 633: make sure we own references to Python arguments passed into C functions
Stefan Behnel [Sun, 26 Dec 2010 21:34:22 +0000 (22:34 +0100)]
fix bug 633: make sure we own references to Python arguments passed into C functions

14 years agoFix --pyrex-c-in-temp compiling package1/module.pyx and package2/module.pyx
Alexey Borzenkov [Wed, 22 Dec 2010 07:45:20 +0000 (10:45 +0300)]
Fix --pyrex-c-in-temp compiling package1/module.pyx and package2/module.pyx

14 years agoFix .pyxdep files in pyximport and tests
Alexey Borzenkov [Wed, 22 Dec 2010 07:40:06 +0000 (10:40 +0300)]
Fix .pyxdep files in pyximport and tests

14 years agoMerge remote branch 'upstream/master'
Vitja Makarov [Tue, 21 Dec 2010 10:16:19 +0000 (13:16 +0300)]
Merge remote branch 'upstream/master'

14 years agoMake __new__ -> __cinit__ into an error, fix compiler crash.
Robert Bradshaw [Tue, 21 Dec 2010 10:09:22 +0000 (02:09 -0800)]
Make __new__ -> __cinit__ into an error, fix compiler crash.

14 years agoFix #632 isinstance bugs.
Robert Bradshaw [Tue, 21 Dec 2010 09:45:27 +0000 (01:45 -0800)]
Fix #632 isinstance bugs.

14 years agoRegression tests for #632.
Robert Bradshaw [Tue, 21 Dec 2010 08:31:05 +0000 (00:31 -0800)]
Regression tests for #632.

14 years agofix ticket #631: temp leak when deleting slices
Stefan Behnel [Sun, 19 Dec 2010 18:55:56 +0000 (19:55 +0100)]
fix ticket #631: temp leak when deleting slices

14 years agotest cleanup
Stefan Behnel [Sun, 19 Dec 2010 18:46:22 +0000 (19:46 +0100)]
test cleanup

14 years agoUpdate PyBuffer_Release() declaration to match new buffer API.
W. Trevor King [Sun, 19 Dec 2010 12:07:49 +0000 (07:07 -0500)]
Update PyBuffer_Release() declaration to match new buffer API.

See
  http://docs.python.org/c-api/buffer.html#PyBuffer_Release
for the authoritative definition.

14 years agoRemove OldYieldExprNode
Vitja Makarov [Sun, 19 Dec 2010 08:32:43 +0000 (11:32 +0300)]
Remove OldYieldExprNode

14 years agoBackport generators to python < 2.5, use StopIteration instead of GeneratorExit.
Vitja Makarov [Sun, 19 Dec 2010 07:47:58 +0000 (10:47 +0300)]
Backport generators to python < 2.5, use StopIteration instead of GeneratorExit.

14 years agoMerge remote branch 'upstream/master'
Vitja Makarov [Sun, 19 Dec 2010 07:17:35 +0000 (10:17 +0300)]
Merge remote branch 'upstream/master'

Conflicts:
Cython/Compiler/ExprNodes.py
Cython/Compiler/Nodes.py
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/Symtab.py

14 years agoerror tests for nonlocal, fixes to properly detect these errors (Python gives warning...
Stefan Behnel [Fri, 17 Dec 2010 07:43:42 +0000 (08:43 +0100)]
error tests for nonlocal, fixes to properly detect these errors (Python gives warnings for redefs, but I find errors more appropriate)

14 years agostatic storage for typeobjects of private cdef classes
Lisandro Dalcin [Fri, 17 Dec 2010 01:40:25 +0000 (22:40 -0300)]
static storage for typeobjects of private cdef classes

14 years agomoved 'nonlocal' generator test over to generator test module to make all nonlocal...
Stefan Behnel [Fri, 17 Dec 2010 00:23:45 +0000 (01:23 +0100)]
moved 'nonlocal' generator test over to generator test module to make all nonlocal tests compile in Py2.4

14 years agofix 'nonlocal' for class scope
Stefan Behnel [Fri, 17 Dec 2010 00:15:19 +0000 (01:15 +0100)]
fix 'nonlocal' for class scope

14 years agoextended test case for nonlocal
Stefan Behnel [Thu, 16 Dec 2010 23:42:12 +0000 (00:42 +0100)]
extended test case for nonlocal

14 years agomanual merge of Haoyu's nonlocal implementation
Stefan Behnel [Thu, 16 Dec 2010 23:19:19 +0000 (00:19 +0100)]
manual merge of Haoyu's nonlocal implementation

14 years agoadd missing static storage specifiers
Lisandro Dalcin [Thu, 16 Dec 2010 23:19:10 +0000 (20:19 -0300)]
add missing static storage specifiers

14 years agomerge
Stefan Behnel [Thu, 16 Dec 2010 22:27:56 +0000 (23:27 +0100)]
merge

14 years agofix compile crash
Stefan Behnel [Thu, 16 Dec 2010 22:24:42 +0000 (23:24 +0100)]
fix compile crash

14 years agoaesthetic code generation fix for module preamble
Lisandro Dalcin [Thu, 16 Dec 2010 21:24:50 +0000 (18:24 -0300)]
aesthetic code generation fix for module preamble

14 years agofix ticket #576: builtin 'str' type must be 'unicode' type in -3 mode
Stefan Behnel [Thu, 16 Dec 2010 19:46:07 +0000 (20:46 +0100)]
fix ticket #576: builtin 'str' type must be 'unicode' type in -3 mode

14 years agoprovide 'builtins' builtin module in -3 mode
Stefan Behnel [Thu, 16 Dec 2010 19:11:29 +0000 (20:11 +0100)]
provide 'builtins' builtin module in -3 mode

14 years agosafer way to check for builtins in Optimize.py
Stefan Behnel [Thu, 16 Dec 2010 19:04:54 +0000 (20:04 +0100)]
safer way to check for builtins in Optimize.py

14 years agodrop unused import
Stefan Behnel [Thu, 16 Dec 2010 18:49:55 +0000 (19:49 +0100)]
drop unused import

14 years agoworking test for ticket #87
Stefan Behnel [Thu, 16 Dec 2010 17:26:09 +0000 (18:26 +0100)]
working test for ticket #87

14 years agofix ResourceWarning about unclosed files in Py 3.2
Lisandro Dalcin [Thu, 16 Dec 2010 16:48:38 +0000 (13:48 -0300)]
fix ResourceWarning about unclosed files in Py 3.2

14 years agoInline: Py3 fixes
Lisandro Dalcin [Wed, 15 Dec 2010 19:29:31 +0000 (16:29 -0300)]
Inline: Py3 fixes

14 years agoremove ancient MANIFEST.in entries
Lisandro Dalcin [Wed, 15 Dec 2010 16:13:13 +0000 (13:13 -0300)]
remove ancient MANIFEST.in entries

14 years agoBump version number for devel branch.
Robert Bradshaw [Tue, 14 Dec 2010 21:59:36 +0000 (13:59 -0800)]
Bump version number for devel branch.

14 years agomerge
Robert Bradshaw [Tue, 14 Dec 2010 19:17:20 +0000 (11:17 -0800)]
merge

14 years agoAdded tag 0.14 for changeset 15bf34c93874
Robert Bradshaw [Tue, 14 Dec 2010 18:55:24 +0000 (10:55 -0800)]
Added tag 0.14 for changeset 15bf34c93874

14 years agoBump version number. 0.14
Robert Bradshaw [Tue, 14 Dec 2010 18:55:20 +0000 (10:55 -0800)]
Bump version number.

14 years agodo not generate vtable for subtypes of builtin types that do not define methods thems...
Stefan Behnel [Tue, 14 Dec 2010 10:01:48 +0000 (11:01 +0100)]
do not generate vtable for subtypes of builtin types that do not define methods themselves

14 years agomerge
Stefan Behnel [Tue, 14 Dec 2010 08:04:35 +0000 (09:04 +0100)]
merge

14 years agoactually, drop the comments, they don't tell much anyway
Stefan Behnel [Tue, 14 Dec 2010 08:00:14 +0000 (09:00 +0100)]
actually, drop the comments, they don't tell much anyway

14 years agomerge
Robert Bradshaw [Tue, 14 Dec 2010 07:18:02 +0000 (23:18 -0800)]
merge

14 years agoAdd --disable-function-redefinition for legacy code.
Robert Bradshaw [Tue, 14 Dec 2010 07:17:14 +0000 (23:17 -0800)]
Add --disable-function-redefinition for legacy code.

14 years agocomments, code cleanup
Stefan Behnel [Tue, 14 Dec 2010 06:28:17 +0000 (07:28 +0100)]
comments, code cleanup

14 years agoextended test case
Stefan Behnel [Tue, 14 Dec 2010 06:15:07 +0000 (07:15 +0100)]
extended test case

14 years agofix first assignments to closure variables
Stefan Behnel [Tue, 14 Dec 2010 05:57:34 +0000 (06:57 +0100)]
fix first assignments to closure variables

14 years agoC code simplification
Stefan Behnel [Tue, 14 Dec 2010 05:49:49 +0000 (06:49 +0100)]
C code simplification

14 years agoFix any/all.
Robert Bradshaw [Tue, 14 Dec 2010 04:31:48 +0000 (20:31 -0800)]
Fix any/all.

14 years agoMSVC: fixes for complex types
Lisandro Dalcin [Mon, 13 Dec 2010 23:10:55 +0000 (20:10 -0300)]
MSVC: fixes for complex types

14 years agomerge
Robert Bradshaw [Mon, 13 Dec 2010 21:39:16 +0000 (13:39 -0800)]
merge

14 years agoPut back trailing whitespace in doctest output.
Robert Bradshaw [Mon, 13 Dec 2010 21:37:28 +0000 (13:37 -0800)]
Put back trailing whitespace in doctest output.

14 years agoemit code comment before generator wrapper function
Stefan Behnel [Mon, 13 Dec 2010 21:19:52 +0000 (22:19 +0100)]
emit code comment before generator wrapper function

14 years agocomment
Stefan Behnel [Mon, 13 Dec 2010 21:11:03 +0000 (22:11 +0100)]
comment

14 years agofix reference leak in error case
Stefan Behnel [Mon, 13 Dec 2010 21:09:26 +0000 (22:09 +0100)]
fix reference leak in error case

14 years agomerge
Robert Bradshaw [Mon, 13 Dec 2010 20:36:08 +0000 (12:36 -0800)]
merge

14 years agoCouple more trailing whitespace deletions.
Robert Bradshaw [Mon, 13 Dec 2010 20:34:49 +0000 (12:34 -0800)]
Couple more trailing whitespace deletions.

14 years agomerge whitespace changes
Robert Bradshaw [Mon, 13 Dec 2010 20:31:42 +0000 (12:31 -0800)]
merge whitespace changes

14 years agoRemove trailing whitespace.
Robert Bradshaw [Mon, 13 Dec 2010 19:06:26 +0000 (11:06 -0800)]
Remove trailing whitespace.

14 years agoAdd closure_temps .pxd declaration
Vitja Makarov [Mon, 13 Dec 2010 17:54:32 +0000 (20:54 +0300)]
Add closure_temps .pxd declaration

14 years agoFix error handling add error tests
Vitja Makarov [Mon, 13 Dec 2010 17:50:41 +0000 (20:50 +0300)]
Fix error handling add error tests

14 years agoRename temps_allocator to closure_temps and move it to funcstate
Vitja Makarov [Mon, 13 Dec 2010 17:28:55 +0000 (20:28 +0300)]
Rename temps_allocator to closure_temps and move it to funcstate

14 years agomerge
Stefan Behnel [Mon, 13 Dec 2010 13:35:29 +0000 (14:35 +0100)]
merge

14 years agofix reference counting for function arguments that live in closures and for closure...
Stefan Behnel [Mon, 13 Dec 2010 08:01:16 +0000 (09:01 +0100)]
fix reference counting for function arguments that live in closures and for closure variables in generators

14 years agofix assignments to closure variables
Stefan Behnel [Mon, 13 Dec 2010 07:45:02 +0000 (08:45 +0100)]
fix assignments to closure variables

14 years agoRename create_abstract_generator to create_generator_class, don't set entry cname
Vitja Makarov [Mon, 13 Dec 2010 07:07:18 +0000 (10:07 +0300)]
Rename create_abstract_generator to create_generator_class, don't set entry cname

14 years agoMove ClosureTempAllocator to Code.py
Vitja Makarov [Sun, 12 Dec 2010 17:46:20 +0000 (20:46 +0300)]
Move ClosureTempAllocator to Code.py

14 years agoRename stuff from CyGenerator to __Pyx_Generator
Vitja Makarov [Sun, 12 Dec 2010 15:31:50 +0000 (18:31 +0300)]
Rename stuff from CyGenerator to __Pyx_Generator

14 years agoMerge MarkClosureVisitor and MarkGeneratorVisitor
Vitja Makarov [Sun, 12 Dec 2010 14:18:19 +0000 (17:18 +0300)]
Merge MarkClosureVisitor and MarkGeneratorVisitor

14 years agoTurn YieldNodeCollector into TreeVisitor
Vitja Makarov [Sun, 12 Dec 2010 13:55:45 +0000 (16:55 +0300)]
Turn YieldNodeCollector into TreeVisitor

14 years agoMerge remote branch 'upstream/master'
Vitja Makarov [Sun, 12 Dec 2010 10:58:31 +0000 (13:58 +0300)]
Merge remote branch 'upstream/master'

14 years agoFix #559, <void *> [] is not caught by Cython but by gcc
Robert Bradshaw [Sun, 12 Dec 2010 05:10:52 +0000 (21:10 -0800)]
Fix #559, <void *> [] is not caught by Cython but by gcc

14 years agoFix #528, x.conjugate() not available in nogil mode
Robert Bradshaw [Sun, 12 Dec 2010 04:59:48 +0000 (20:59 -0800)]
Fix #528, x.conjugate() not available in nogil mode