cython.git
13 years agoBump version. 0.14.alpha0
Robert Bradshaw [Sun, 5 Dec 2010 12:37:10 +0000 (04:37 -0800)]
Bump version.

13 years agotypo
Robert Bradshaw [Sun, 5 Dec 2010 12:20:02 +0000 (04:20 -0800)]
typo

13 years agoMore robust include searching.
Robert Bradshaw [Sun, 5 Dec 2010 12:18:47 +0000 (04:18 -0800)]
More robust include searching.

13 years agostring literal parsing
Robert Bradshaw [Sun, 5 Dec 2010 12:12:00 +0000 (04:12 -0800)]
string literal parsing

13 years agoInclude srctree in sdist.
Robert Bradshaw [Sun, 5 Dec 2010 11:47:54 +0000 (03:47 -0800)]
Include srctree in sdist.

13 years agoHigher-level import.
Robert Bradshaw [Sun, 5 Dec 2010 11:22:12 +0000 (03:22 -0800)]
Higher-level import.

13 years agomerge
Robert Bradshaw [Sun, 5 Dec 2010 10:24:17 +0000 (02:24 -0800)]
merge

13 years agoComplicated cythonize setup.
Robert Bradshaw [Sun, 5 Dec 2010 10:04:11 +0000 (02:04 -0800)]
Complicated cythonize setup.

13 years agoC++ cythonize test.
Robert Bradshaw [Sun, 5 Dec 2010 09:45:57 +0000 (01:45 -0800)]
C++ cythonize test.

13 years agopropagate build options
Robert Bradshaw [Sun, 5 Dec 2010 09:37:51 +0000 (01:37 -0800)]
propagate build options

13 years agoPy3 fix in test runner
Stefan Behnel [Sun, 5 Dec 2010 09:35:00 +0000 (10:35 +0100)]
Py3 fix in test runner

13 years agoCython build cleanup.
Robert Bradshaw [Sun, 5 Dec 2010 09:02:43 +0000 (01:02 -0800)]
Cython build cleanup.

13 years agoFix #610 - Compiler crash on --no-docstrings.
Robert Bradshaw [Sun, 5 Dec 2010 07:48:18 +0000 (23:48 -0800)]
Fix #610 - Compiler crash on --no-docstrings.

13 years agoMore graceful fail for fatal-errors option.
Robert Bradshaw [Sun, 5 Dec 2010 07:21:54 +0000 (23:21 -0800)]
More graceful fail for fatal-errors option.

13 years agoPython 2.3 fix
Robert Bradshaw [Sun, 5 Dec 2010 07:17:16 +0000 (23:17 -0800)]
Python 2.3 fix

13 years agohide output in end-to-end tests
Robert Bradshaw [Sun, 5 Dec 2010 06:55:17 +0000 (22:55 -0800)]
hide output in end-to-end tests

13 years agotab fix
Stefan Behnel [Sat, 4 Dec 2010 19:02:02 +0000 (20:02 +0100)]
tab fix

13 years agotest for ticket #608
Stefan Behnel [Sat, 4 Dec 2010 18:56:53 +0000 (19:56 +0100)]
test for ticket #608

13 years agoMerge branch 'math' of https://github.com/certik/cython
Robert Bradshaw [Sat, 4 Dec 2010 17:51:59 +0000 (09:51 -0800)]
Merge branch 'math' of https://github.com/certik/cython

13 years agoMerge branch 'fatal_errors' of https://github.com/certik/cython
Robert Bradshaw [Sat, 4 Dec 2010 17:44:12 +0000 (09:44 -0800)]
Merge branch 'fatal_errors' of https://github.com/certik/cython

13 years agoprevent inheriting from PyVarObjects: tuple, bytes and str
Stefan Behnel [Sat, 4 Dec 2010 11:54:05 +0000 (12:54 +0100)]
prevent inheriting from PyVarObjects: tuple, bytes and str

13 years agosupport ext type inheritance from builtin types
Stefan Behnel [Sat, 4 Dec 2010 11:39:59 +0000 (12:39 +0100)]
support ext type inheritance from builtin types

13 years agoextended test case
Stefan Behnel [Sat, 4 Dec 2010 10:48:18 +0000 (11:48 +0100)]
extended test case

13 years agoextended test case
Stefan Behnel [Sat, 4 Dec 2010 09:46:51 +0000 (10:46 +0100)]
extended test case

13 years agoprovide Python complex type as cpython.complex.complex
Stefan Behnel [Sat, 4 Dec 2010 09:41:44 +0000 (10:41 +0100)]
provide Python complex type as cpython.complex.complex

13 years agomake 'complex' the C double complex type instead of Python's complex object type
Stefan Behnel [Sat, 4 Dec 2010 09:40:12 +0000 (10:40 +0100)]
make 'complex' the C double complex type instead of Python's complex object type

13 years agocomment
Stefan Behnel [Sat, 4 Dec 2010 09:11:18 +0000 (10:11 +0100)]
comment

13 years agofix following PEP 384
Stefan Behnel [Sat, 4 Dec 2010 08:45:56 +0000 (09:45 +0100)]
fix following PEP 384

13 years agokeep type information when coercing from C complex to Python complex
Stefan Behnel [Sat, 4 Dec 2010 06:49:57 +0000 (07:49 +0100)]
keep type information when coercing from C complex to Python complex

13 years agofix line number reporting in AST stack traces
Stefan Behnel [Sat, 4 Dec 2010 05:55:55 +0000 (06:55 +0100)]
fix line number reporting in AST stack traces

13 years agoImplement the --fatal-errors command line option
Ondrej Certik [Sat, 4 Dec 2010 03:26:14 +0000 (19:26 -0800)]
Implement the --fatal-errors command line option

If enabled, it will abort on the first error occured. Just like "gcc
-Wfatal-errors".

Signed-off-by: Ondrej Certik <ondrej@certik.cz>
13 years agoImplement libc.math and test it
Ondrej Certik [Sat, 4 Dec 2010 02:24:33 +0000 (18:24 -0800)]
Implement libc.math and test it

Basic math.h constants and functions were added. Now when one wants to speedup
the following code::

    from math import sin, cos
    e = sin(5) + cos(6)

one can do::

    from libc.math cimport sin, cos
    e = sin(5) + cos(6)

Not all math.h features are wrapped (yet), but basic functions should work.

Signed-off-by: Ondrej Certik <ondrej@certik.cz>
13 years agoremoved 'complex' type test that depends on 'cdef complex' refering to the Python...
Stefan Behnel [Fri, 3 Dec 2010 20:18:08 +0000 (21:18 +0100)]
removed 'complex' type test that depends on 'cdef complex' refering to the Python type

13 years agomade fields of builtin objects immutable
Stefan Behnel [Fri, 3 Dec 2010 20:17:30 +0000 (21:17 +0100)]
made fields of builtin objects immutable

13 years agoticket #607: access inner fields of CPython's builtin objects
Stefan Behnel [Fri, 3 Dec 2010 18:14:08 +0000 (19:14 +0100)]
ticket #607: access inner fields of CPython's builtin objects

--HG--
rename : tests/broken/builtinslice.pyx => tests/run/builtinslice.pyx

13 years agofix type check as 'slice'
Stefan Behnel [Fri, 3 Dec 2010 15:49:43 +0000 (16:49 +0100)]
fix type check as 'slice'

13 years agofix compiler crash after last change
Stefan Behnel [Fri, 3 Dec 2010 14:37:47 +0000 (15:37 +0100)]
fix compiler crash after last change

13 years agoSupport lambda in class and cclass scope, ticket #605.
Vitja Makarov [Fri, 3 Dec 2010 13:24:03 +0000 (16:24 +0300)]
Support lambda in class and cclass scope, ticket #605.

13 years agoadditional test case
Stefan Behnel [Thu, 2 Dec 2010 07:03:14 +0000 (08:03 +0100)]
additional test case

13 years agoclean up evil import collisions in ParseTreeTransforms.py
Stefan Behnel [Thu, 2 Dec 2010 06:38:33 +0000 (07:38 +0100)]
clean up evil import collisions in ParseTreeTransforms.py

13 years agomerge
Stefan Behnel [Wed, 1 Dec 2010 10:40:37 +0000 (11:40 +0100)]
merge

13 years agofix ticket #606: move scoped local variables back into ScopedExprNode/GeneratorExpres...
Stefan Behnel [Tue, 30 Nov 2010 22:52:57 +0000 (23:52 +0100)]
fix ticket #606: move scoped local variables back into ScopedExprNode/GeneratorExpressionScope to make sure they are cleaned up timely

13 years agoChange version number for dev branch.
Robert Bradshaw [Tue, 30 Nov 2010 17:01:15 +0000 (09:01 -0800)]
Change version number for dev branch.

13 years agomerge
Stefan Behnel [Tue, 30 Nov 2010 13:13:54 +0000 (14:13 +0100)]
merge

13 years agoadditional tests
Stefan Behnel [Tue, 30 Nov 2010 13:08:50 +0000 (14:08 +0100)]
additional tests

13 years agomerge
Stefan Behnel [Tue, 30 Nov 2010 12:46:07 +0000 (13:46 +0100)]
merge

13 years agocomment
Stefan Behnel [Tue, 30 Nov 2010 09:32:47 +0000 (10:32 +0100)]
comment

13 years agoreduce code redundancy in IterationNode, skip None test if we know the iterable is...
Stefan Behnel [Tue, 30 Nov 2010 08:03:55 +0000 (09:03 +0100)]
reduce code redundancy in IterationNode, skip None test if we know the iterable is not None

13 years agoadditional tests
Stefan Behnel [Tue, 30 Nov 2010 07:35:31 +0000 (08:35 +0100)]
additional tests

13 years agooptimise sum([int_const for ...]) into an inlined sum(genexpr)
Stefan Behnel [Tue, 30 Nov 2010 07:06:03 +0000 (08:06 +0100)]
optimise sum([int_const for ...]) into an inlined sum(genexpr)

13 years agorefactor scope handling in ScopedExprNode, enable type inference for inlined genexpr...
Stefan Behnel [Tue, 30 Nov 2010 07:04:20 +0000 (08:04 +0100)]
refactor scope handling in ScopedExprNode, enable type inference for inlined genexpr nodes, fix type coercion of sum(genexpr)

13 years agofix type inference for ResultRefNode
Stefan Behnel [Tue, 30 Nov 2010 06:58:52 +0000 (07:58 +0100)]
fix type inference for ResultRefNode

13 years agotypedef in namespace test
Robert Bradshaw [Tue, 30 Nov 2010 04:42:18 +0000 (20:42 -0800)]
typedef in namespace test

13 years agominor code optimisations
Stefan Behnel [Mon, 29 Nov 2010 08:07:15 +0000 (09:07 +0100)]
minor code optimisations

13 years agocdef another class in ParseTreeTransforms
Stefan Behnel [Sun, 28 Nov 2010 19:44:17 +0000 (20:44 +0100)]
cdef another class in ParseTreeTransforms

13 years agofix ticket #604: refcounting bugs in 'from ... import *'
Stefan Behnel [Sun, 28 Nov 2010 18:00:19 +0000 (19:00 +0100)]
fix ticket #604: refcounting bugs in 'from ... import *'

13 years agosupport building Cython itself with the refnanny enabled
Stefan Behnel [Sun, 28 Nov 2010 17:28:37 +0000 (18:28 +0100)]
support building Cython itself with the refnanny enabled

13 years agotest case for ticket #601
Stefan Behnel [Sun, 28 Nov 2010 15:55:56 +0000 (16:55 +0100)]
test case for ticket #601

13 years agorenamed test module
Stefan Behnel [Sat, 27 Nov 2010 18:50:17 +0000 (19:50 +0100)]
renamed test module

--HG--
rename : tests/run/lambda_module.pyx => tests/run/lambda_module_T603.pyx

13 years agoSupport lambda in module scope #603
Vitja Makarov [Sat, 27 Nov 2010 16:09:38 +0000 (19:09 +0300)]
Support lambda in module scope #603

13 years agosetup.py option '--cython-compile-all' to compile more Cython modules during installa...
Stefan Behnel [Sat, 27 Nov 2010 15:26:31 +0000 (16:26 +0100)]
setup.py option '--cython-compile-all' to compile more Cython modules during installation than enabled by default

13 years agodisabled compilation of Cython.Compiler.ParseTreeTransforms as it leads to hard crashes
Stefan Behnel [Fri, 26 Nov 2010 16:41:46 +0000 (17:41 +0100)]
disabled compilation of Cython.Compiler.ParseTreeTransforms as it leads to hard crashes

13 years agomerge
Stefan Behnel [Fri, 26 Nov 2010 16:01:43 +0000 (17:01 +0100)]
merge

13 years agoanother Py3 fix for compiled Cython module
Stefan Behnel [Fri, 26 Nov 2010 16:01:19 +0000 (17:01 +0100)]
another Py3 fix for compiled Cython module

13 years agorename PYREX_WITHOUT_ASSERTIONS -> CYTHON_WITHOUT_ASSERTIONS
Lisandro Dalcin [Fri, 26 Nov 2010 15:58:15 +0000 (12:58 -0300)]
rename PYREX_WITHOUT_ASSERTIONS -> CYTHON_WITHOUT_ASSERTIONS

--HG--
extra : rebase_source : 7fea7f050894df69b66a2bdb843ce1885ef7ef7a

13 years agore-disable compilation for some Cython modules as they let the build take too long
Stefan Behnel [Fri, 26 Nov 2010 15:54:05 +0000 (16:54 +0100)]
re-disable compilation for some Cython modules as they let the build take too long

13 years agomissing import
Stefan Behnel [Fri, 26 Nov 2010 15:53:24 +0000 (16:53 +0100)]
missing import

13 years agoanother Py3 fix for the compiled modules
Stefan Behnel [Fri, 26 Nov 2010 15:20:18 +0000 (16:20 +0100)]
another Py3 fix for the compiled modules

13 years agoanother Py3 fix for the compiled modules
Stefan Behnel [Fri, 26 Nov 2010 15:18:23 +0000 (16:18 +0100)]
another Py3 fix for the compiled modules

13 years agomissing imports
Stefan Behnel [Fri, 26 Nov 2010 14:39:46 +0000 (15:39 +0100)]
missing imports

13 years agofix several Py3 and import issues in the compiled modules
Stefan Behnel [Fri, 26 Nov 2010 14:37:02 +0000 (15:37 +0100)]
fix several Py3 and import issues in the compiled modules

13 years agocompile modules Cython.Compiler.Nodes and Cython.Compiler.ExprNodes
Stefan Behnel [Fri, 26 Nov 2010 13:00:21 +0000 (14:00 +0100)]
compile modules Cython.Compiler.Nodes and Cython.Compiler.ExprNodes

13 years agocompile Cython.Compiler.ModuleNode module
Stefan Behnel [Fri, 26 Nov 2010 12:42:34 +0000 (13:42 +0100)]
compile Cython.Compiler.ModuleNode module

13 years agofix unknown names in Nodes.py
Stefan Behnel [Fri, 26 Nov 2010 12:41:29 +0000 (13:41 +0100)]
fix unknown names in Nodes.py

13 years agocompile Cython.Compiler.Optimize module
Stefan Behnel [Fri, 26 Nov 2010 11:03:05 +0000 (12:03 +0100)]
compile Cython.Compiler.Optimize module

13 years agotypo
Stefan Behnel [Fri, 26 Nov 2010 10:37:02 +0000 (11:37 +0100)]
typo

13 years agocompile Cython.Compiler.ParseTreeTransforms module
Stefan Behnel [Fri, 26 Nov 2010 10:35:55 +0000 (11:35 +0100)]
compile Cython.Compiler.ParseTreeTransforms module

13 years agoreally fix parallel/cascaded assignments this time (and test it): make sure the rhs...
Stefan Behnel [Fri, 26 Nov 2010 08:52:45 +0000 (09:52 +0100)]
really fix parallel/cascaded assignments this time (and test it): make sure the rhs values are evaluated in source code order

13 years agocomments
Stefan Behnel [Fri, 26 Nov 2010 08:06:07 +0000 (09:06 +0100)]
comments

13 years agoextended test case
Stefan Behnel [Fri, 26 Nov 2010 07:50:19 +0000 (08:50 +0100)]
extended test case

13 years agoadded __future__.nested_scopes as an importable dummy
Stefan Behnel [Thu, 25 Nov 2010 22:44:14 +0000 (23:44 +0100)]
added __future__.nested_scopes as an importable dummy

13 years agodisable test in Py2.3
Stefan Behnel [Thu, 25 Nov 2010 22:32:21 +0000 (23:32 +0100)]
disable test in Py2.3

13 years agoenabled parallel assignments test
Stefan Behnel [Thu, 25 Nov 2010 22:14:45 +0000 (23:14 +0100)]
enabled parallel assignments test

13 years agofix for parallel assignments: subexpressions were incorrectly set up in reversed...
Stefan Behnel [Thu, 25 Nov 2010 22:13:21 +0000 (23:13 +0100)]
fix for parallel assignments: subexpressions were incorrectly set up in reversed order

13 years agooutput hex numbers for node ids in Node.dump() as in tracebacks etc.
Stefan Behnel [Thu, 25 Nov 2010 22:12:05 +0000 (23:12 +0100)]
output hex numbers for node ids in Node.dump() as in tracebacks etc.

13 years agooutput hex numbers for node ids in Node.dump() as in tracebacks etc.
Stefan Behnel [Thu, 25 Nov 2010 21:13:36 +0000 (22:13 +0100)]
output hex numbers for node ids in Node.dump() as in tracebacks etc.

13 years agofix ticket #598: list comprehensions in closures
Stefan Behnel [Thu, 25 Nov 2010 20:21:31 +0000 (21:21 +0100)]
fix ticket #598: list comprehensions in closures

13 years agotest fixes
Stefan Behnel [Thu, 25 Nov 2010 20:09:08 +0000 (21:09 +0100)]
test fixes

13 years agoextended test cases for tickets #600 and #598
Stefan Behnel [Thu, 25 Nov 2010 18:18:06 +0000 (19:18 +0100)]
extended test cases for tickets #600 and #598

13 years agoextended test cases for scoped genexprs at module level
Stefan Behnel [Thu, 25 Nov 2010 18:16:04 +0000 (19:16 +0100)]
extended test cases for scoped genexprs at module level

13 years agotest case for ticket #600: scope of iterable in genexprs
Stefan Behnel [Thu, 25 Nov 2010 18:05:40 +0000 (19:05 +0100)]
test case for ticket #600: scope of iterable in genexprs

13 years agotest that functions that do not need a closure know they do not need it
Stefan Behnel [Thu, 25 Nov 2010 14:54:32 +0000 (15:54 +0100)]
test that functions that do not need a closure know they do not need it

13 years agoadditional closure tests
Stefan Behnel [Thu, 25 Nov 2010 14:32:22 +0000 (15:32 +0100)]
additional closure tests

13 years agosplit module doctest into function doctests, enable now working test
Stefan Behnel [Thu, 25 Nov 2010 14:17:38 +0000 (15:17 +0100)]
split module doctest into function doctests, enable now working test

13 years agoClosure optimization
Vitja Makarov [Thu, 25 Nov 2010 12:32:45 +0000 (15:32 +0300)]
Closure optimization

13 years agocopied boolean tests from CPython's regr tests
Stefan Behnel [Thu, 25 Nov 2010 07:09:30 +0000 (08:09 +0100)]
copied boolean tests from CPython's regr tests

13 years agocode cleanup in ConstantFolding transform to make boolean handling less error prone
Stefan Behnel [Thu, 25 Nov 2010 06:49:03 +0000 (07:49 +0100)]
code cleanup in ConstantFolding transform to make boolean handling less error prone

13 years agofix result types for C math operations on Python booleans
Stefan Behnel [Thu, 25 Nov 2010 06:44:59 +0000 (07:44 +0100)]
fix result types for C math operations on Python booleans

13 years agofix '<int>bool(<int>x)' to always return 0 or 1 instead of plain '<int>x'
Stefan Behnel [Thu, 25 Nov 2010 06:03:10 +0000 (07:03 +0100)]
fix '<int>bool(<int>x)' to always return 0 or 1 instead of plain '<int>x'

13 years agotest case for ticket #598: scoped list comp in function closure
Stefan Behnel [Wed, 24 Nov 2010 22:00:04 +0000 (23:00 +0100)]
test case for ticket #598: scoped list comp in function closure