cython.git
14 years agofix tuple parsing after last commit, some cleanup
Stefan Behnel [Thu, 6 May 2010 20:47:57 +0000 (22:47 +0200)]
fix tuple parsing after last commit, some cleanup

14 years agoparser support for generator expressions so that we can give a better error message...
Stefan Behnel [Thu, 6 May 2010 20:11:25 +0000 (22:11 +0200)]
parser support for generator expressions so that we can give a better error message than "Expected ')'"

14 years agotest for generator expressions (disabled)
Stefan Behnel [Thu, 6 May 2010 19:57:51 +0000 (21:57 +0200)]
test for generator expressions (disabled)

14 years agomerged in latest cython-devel
Stefan Behnel [Wed, 5 May 2010 19:27:34 +0000 (21:27 +0200)]
merged in latest cython-devel

14 years agofix ticket #145 also for CondExprNode, make "bint (+) non-bint -> object" a general...
Stefan Behnel [Wed, 5 May 2010 19:16:49 +0000 (21:16 +0200)]
fix ticket #145 also for CondExprNode, make "bint (+) non-bint -> object" a general rule for independent spanning type finding, merge duplicated type determination functionality from CondExprNode back into PyrexTypes.py

14 years agoadd some POSIX pxd's and a few tests
Lisandro Dalcin [Wed, 5 May 2010 17:51:56 +0000 (14:51 -0300)]
add some POSIX pxd's and a few tests

14 years agocollapse BoolBinopNode during constant folding, small fix for BoolNode folding
Stefan Behnel [Tue, 4 May 2010 19:11:33 +0000 (21:11 +0200)]
collapse BoolBinopNode during constant folding, small fix for BoolNode folding

14 years agofix ticket #145: the result of 'True or 5' must not be coerced into an integer
Stefan Behnel [Tue, 4 May 2010 19:00:24 +0000 (21:00 +0200)]
fix ticket #145: the result of 'True or 5' must not be coerced into an integer

14 years agoseveral test cases for ticket 145
Stefan Behnel [Tue, 4 May 2010 12:12:54 +0000 (14:12 +0200)]
several test cases for ticket 145

14 years agoextended test case based on ticket #145
Stefan Behnel [Tue, 4 May 2010 11:26:03 +0000 (13:26 +0200)]
extended test case based on ticket #145

14 years agonew test for ticket #354
Stefan Behnel [Tue, 4 May 2010 07:52:05 +0000 (09:52 +0200)]
new test for ticket #354

14 years agoenable .pop() optimisation also for typed lists
Stefan Behnel [Tue, 4 May 2010 05:55:20 +0000 (07:55 +0200)]
enable .pop() optimisation also for typed lists

14 years agoslight speed-up in unicode/bytes indexing
Stefan Behnel [Mon, 3 May 2010 16:13:59 +0000 (18:13 +0200)]
slight speed-up in unicode/bytes indexing

14 years agoMSVC: quick fix for int complex test failing in C++, do not use std::complex<int>
dalcinl [Mon, 3 May 2010 01:22:36 +0000 (22:22 -0300)]
MSVC: quick fix for int complex test failing in C++, do not use std::complex<int>

14 years agoDisable test for libc.stdint (missing stdint.h in MSVC)
dalcinl [Mon, 3 May 2010 00:43:09 +0000 (21:43 -0300)]
Disable test for libc.stdint (missing stdint.h in MSVC)

14 years agofix ssize_t tescase (ticket #399)
Lisandro Dalcin [Sun, 2 May 2010 21:46:17 +0000 (18:46 -0300)]
fix ssize_t tescase (ticket #399)

14 years agoreverted last commit, cast must happen to the value, not its pointer
Stefan Behnel [Sun, 2 May 2010 16:10:39 +0000 (18:10 +0200)]
reverted last commit, cast must happen to the value, not its pointer

14 years agocode simplification
Stefan Behnel [Sun, 2 May 2010 15:59:06 +0000 (17:59 +0200)]
code simplification

14 years agonew test case for bug found in cython-devel that is fixed in cython-closures
Stefan Behnel [Sat, 1 May 2010 16:56:04 +0000 (18:56 +0200)]
new test case for bug found in cython-devel that is fixed in cython-closures

14 years agomerged in latest cython-devel
Stefan Behnel [Sat, 1 May 2010 16:54:43 +0000 (18:54 +0200)]
merged in latest cython-devel

14 years agofix 'cython.set' and 'cython.frozenset' when set/frozenset are declared names in...
Stefan Behnel [Sat, 1 May 2010 16:29:44 +0000 (18:29 +0200)]
fix 'cython.set' and 'cython.frozenset' when set/frozenset are declared names in the module

14 years agocode cleanup
Stefan Behnel [Sat, 1 May 2010 16:20:25 +0000 (18:20 +0200)]
code cleanup

14 years agocode cleanup
Stefan Behnel [Sat, 1 May 2010 16:10:42 +0000 (18:10 +0200)]
code cleanup

14 years agoavoid GIL error for optimised container bool tests that run in plain C
Stefan Behnel [Sat, 1 May 2010 15:38:23 +0000 (17:38 +0200)]
avoid GIL error for optimised container bool tests that run in plain C

14 years agofix error on def-nogil functions
Stefan Behnel [Sat, 1 May 2010 15:28:46 +0000 (17:28 +0200)]
fix error on def-nogil functions

14 years agoremoved dead copy of test file
Stefan Behnel [Sat, 1 May 2010 15:26:38 +0000 (17:26 +0200)]
removed dead copy of test file

14 years agossize_t in Cython now means Py_ssize_t in C ((ticket #399))
Lisandro Dalcin [Fri, 30 Apr 2010 18:35:39 +0000 (15:35 -0300)]
ssize_t in Cython now means Py_ssize_t in C ((ticket #399))

14 years agotest fix after extending dead code removal
Stefan Behnel [Thu, 29 Apr 2010 06:48:19 +0000 (08:48 +0200)]
test fix after extending dead code removal

14 years agoextended test case
Stefan Behnel [Thu, 29 Apr 2010 06:35:35 +0000 (08:35 +0200)]
extended test case

14 years agocode cleanup for if-const dead code removal
Stefan Behnel [Thu, 29 Apr 2010 06:26:06 +0000 (08:26 +0200)]
code cleanup for if-const dead code removal

14 years agoextended test case
Stefan Behnel [Thu, 29 Apr 2010 06:06:02 +0000 (08:06 +0200)]
extended test case

14 years agoextended test case
Stefan Behnel [Thu, 29 Apr 2010 06:01:34 +0000 (08:01 +0200)]
extended test case

14 years agocode cleanup for if-const dead code removal: move handling into ConstantFolding trans...
Stefan Behnel [Thu, 29 Apr 2010 06:00:37 +0000 (08:00 +0200)]
code cleanup for if-const dead code removal: move handling into ConstantFolding transform, where it can also replace the entire node

--HG--
rename : tests/run/consts.pyx => tests/run/if_const.pyx

14 years agonew test case
Stefan Behnel [Thu, 29 Apr 2010 05:49:46 +0000 (07:49 +0200)]
new test case

14 years agosizeof(long double)==sizeof(double) in MSVC conficts with numpy built with MinGW
dalcinl [Wed, 28 Apr 2010 23:30:58 +0000 (20:30 -0300)]
sizeof(long double)==sizeof(double) in MSVC conficts with numpy built with MinGW

14 years agofix testcase
Lisandro Dalcin [Wed, 28 Apr 2010 19:29:02 +0000 (16:29 -0300)]
fix testcase

14 years agointroduce CYTHON_UNUSED macro to annotate functions and parametes
Lisandro Dalcin [Wed, 28 Apr 2010 19:18:43 +0000 (16:18 -0300)]
introduce CYTHON_UNUSED macro to annotate functions and parametes
- Silent compiler warnings about unused function/parametes
- Defined to __attribute__((__unused__)) for GCC(>3.4) and ICC
- Applied to a __{get|release}buffer__ special methods
- Applied to a couple of (self,unused) parameter pairs

14 years agomerged in latest cython-devel
Stefan Behnel [Wed, 28 Apr 2010 16:52:44 +0000 (18:52 +0200)]
merged in latest cython-devel

14 years agoPy3: __cmp__ is gone, __bool__ instead of __nonzero__
Lisandro Dalcin [Wed, 28 Apr 2010 15:04:13 +0000 (12:04 -0300)]
Py3: __cmp__ is gone, __bool__ instead of __nonzero__

14 years agoextended test case
Stefan Behnel [Wed, 28 Apr 2010 11:34:36 +0000 (13:34 +0200)]
extended test case

14 years agoextended test
Stefan Behnel [Tue, 27 Apr 2010 19:36:49 +0000 (21:36 +0200)]
extended test

14 years agomore dead code removal for conditionals
Stefan Behnel [Tue, 27 Apr 2010 19:31:20 +0000 (21:31 +0200)]
more dead code removal for conditionals

14 years agoavoid generating code for 'if' conditions that are known to be False
Stefan Behnel [Tue, 27 Apr 2010 18:37:32 +0000 (20:37 +0200)]
avoid generating code for 'if' conditions that are known to be False

14 years agofix constant folding in PrimaryCmpNode/CascadedCmpNode
Stefan Behnel [Tue, 27 Apr 2010 15:25:42 +0000 (17:25 +0200)]
fix constant folding in PrimaryCmpNode/CascadedCmpNode

14 years agosupport casting '<bytes>int_val' and coercing integers to bytes on assignment
Stefan Behnel [Tue, 27 Apr 2010 05:34:45 +0000 (07:34 +0200)]
support casting '<bytes>int_val' and coercing integers to bytes on assignment

14 years agoextended test case
Stefan Behnel [Mon, 26 Apr 2010 06:38:34 +0000 (08:38 +0200)]
extended test case

14 years agofix bytes indexing
Stefan Behnel [Mon, 26 Apr 2010 06:38:24 +0000 (08:38 +0200)]
fix bytes indexing

14 years agoPy3 test fix
Stefan Behnel [Mon, 26 Apr 2010 05:17:52 +0000 (07:17 +0200)]
Py3 test fix

14 years agokeep 'constant_result' set when injecting new constant nodes
Stefan Behnel [Mon, 26 Apr 2010 04:51:23 +0000 (06:51 +0200)]
keep 'constant_result' set when injecting new constant nodes

14 years agomerge
Stefan Behnel [Sun, 25 Apr 2010 19:55:39 +0000 (21:55 +0200)]
merge

14 years agooptimised char/Py_UNICODE indexing of bytes/unicode objects
Stefan Behnel [Sun, 25 Apr 2010 19:55:26 +0000 (21:55 +0200)]
optimised char/Py_UNICODE indexing of bytes/unicode objects

14 years agowhitespace
Stefan Behnel [Sun, 25 Apr 2010 18:31:19 +0000 (20:31 +0200)]
whitespace

14 years agocoerce Py_UNICODE to and from single character unicode strings by default
Stefan Behnel [Sun, 25 Apr 2010 16:14:58 +0000 (18:14 +0200)]
coerce Py_UNICODE to and from single character unicode strings by default

14 years agotiny cleanup
Robert Bradshaw [Sun, 25 Apr 2010 06:49:39 +0000 (23:49 -0700)]
tiny cleanup

14 years agocomment fix
Stefan Behnel [Sat, 24 Apr 2010 18:31:32 +0000 (20:31 +0200)]
comment fix

14 years agogetbuffer slot was broken by the ref-counting fixes for closures
Stefan Behnel [Sat, 24 Apr 2010 17:38:42 +0000 (19:38 +0200)]
getbuffer slot was broken by the ref-counting fixes for closures

14 years agomerged in latest cython-devel
Stefan Behnel [Sat, 24 Apr 2010 17:20:45 +0000 (19:20 +0200)]
merged in latest cython-devel

14 years agofix several ref-counting issues with closure variables, especially in error cases
Stefan Behnel [Sat, 24 Apr 2010 17:19:56 +0000 (19:19 +0200)]
fix several ref-counting issues with closure variables, especially in error cases

14 years agoSome SCons fixups
Dag Sverre Seljebotn [Fri, 23 Apr 2010 17:49:29 +0000 (19:49 +0200)]
Some SCons fixups

14 years agosupport arbitrarily sized typedef integral types
Lisandro Dalcin [Fri, 23 Apr 2010 16:02:07 +0000 (13:02 -0300)]
support arbitrarily sized typedef integral types

14 years agosort variable entries in closure scope to get a predictable C code result
Stefan Behnel [Fri, 23 Apr 2010 13:21:52 +0000 (15:21 +0200)]
sort variable entries in closure scope to get a predictable C code result

14 years agoreverted last commit - only a problem for closure scope
Stefan Behnel [Fri, 23 Apr 2010 13:00:34 +0000 (15:00 +0200)]
reverted last commit - only a problem for closure scope

14 years agosort ext type fields in GC functions to get a more predictable C code result
Stefan Behnel [Fri, 23 Apr 2010 12:41:32 +0000 (14:41 +0200)]
sort ext type fields in GC functions to get a more predictable C code result

14 years agofix signatures in numpy.pxd
Stefan Behnel [Fri, 23 Apr 2010 10:50:45 +0000 (12:50 +0200)]
fix signatures in numpy.pxd

14 years agomerged in latest cython-devel
Stefan Behnel [Thu, 22 Apr 2010 18:29:10 +0000 (20:29 +0200)]
merged in latest cython-devel

14 years agoPyrexTypes: reworked ranking of numeric types and cleanup
Lisandro Dalcin [Thu, 22 Apr 2010 17:10:16 +0000 (14:10 -0300)]
PyrexTypes: reworked ranking of numeric types and cleanup

14 years agocustom from_py converter for Py_UNICODE
Lisandro Dalcin [Thu, 22 Apr 2010 15:31:52 +0000 (12:31 -0300)]
custom from_py converter for Py_UNICODE

14 years agocleanup
Stefan Behnel [Thu, 22 Apr 2010 13:09:04 +0000 (15:09 +0200)]
cleanup

14 years agoextended test case
Stefan Behnel [Thu, 22 Apr 2010 13:08:42 +0000 (15:08 +0200)]
extended test case

14 years agoextended test cases
Stefan Behnel [Thu, 22 Apr 2010 12:24:26 +0000 (14:24 +0200)]
extended test cases

14 years agoextended test case
Stefan Behnel [Thu, 22 Apr 2010 12:13:58 +0000 (14:13 +0200)]
extended test case

14 years agoadded PyUnicode_FromOrdinal() to unicode.pxd
Stefan Behnel [Thu, 22 Apr 2010 11:03:14 +0000 (13:03 +0200)]
added PyUnicode_FromOrdinal() to unicode.pxd

14 years agoadded PyUnicode_FromOrdinal() to unicode.pxd
Stefan Behnel [Thu, 22 Apr 2010 11:02:56 +0000 (13:02 +0200)]
added PyUnicode_FromOrdinal() to unicode.pxd

14 years agoremove Py_UNICODE from standard imports as it is now a builtin type
Stefan Behnel [Thu, 22 Apr 2010 10:57:28 +0000 (12:57 +0200)]
remove Py_UNICODE from standard imports as it is now a builtin type

14 years agofix gcc warning in test
Stefan Behnel [Thu, 22 Apr 2010 10:53:57 +0000 (12:53 +0200)]
fix gcc warning in test

14 years agocleanup
Stefan Behnel [Thu, 22 Apr 2010 10:30:04 +0000 (12:30 +0200)]
cleanup

14 years agogenerate switch-case characters in sorted order for 'char_val in bytes'
Stefan Behnel [Thu, 22 Apr 2010 10:27:49 +0000 (12:27 +0200)]
generate switch-case characters in sorted order for 'char_val in bytes'

14 years agosimplify ExprNode.as_none_safe_node() with a sensible default exception type
Stefan Behnel [Thu, 22 Apr 2010 06:03:46 +0000 (08:03 +0200)]
simplify ExprNode.as_none_safe_node() with a sensible default exception type

14 years agoLet ssize_t be a native type (ticket #399)
Lisandro Dalcin [Thu, 22 Apr 2010 00:47:54 +0000 (21:47 -0300)]
Let ssize_t be a native type (ticket #399)

14 years agoPyrexTypes: simplify CIntType, add CReturnCodeType
Lisandro Dalcin [Wed, 21 Apr 2010 22:11:14 +0000 (19:11 -0300)]
PyrexTypes: simplify CIntType, add CReturnCodeType

14 years agogeneric way to wrap an ExprNode in a NoneCheckNode
Stefan Behnel [Wed, 21 Apr 2010 13:36:27 +0000 (15:36 +0200)]
generic way to wrap an ExprNode in a NoneCheckNode

14 years agoset default debug flag to write out exceptions
Stefan Behnel [Wed, 21 Apr 2010 13:35:09 +0000 (15:35 +0200)]
set default debug flag to write out exceptions

14 years agoextended test case for unicode characters in switch statement
Stefan Behnel [Wed, 21 Apr 2010 12:01:11 +0000 (14:01 +0200)]
extended test case for unicode characters in switch statement

14 years agotest fix
Stefan Behnel [Wed, 21 Apr 2010 09:42:08 +0000 (11:42 +0200)]
test fix

14 years agoimplement 'char_val in bytes_string' and 'pyunicode_val in unicode_string'
Stefan Behnel [Tue, 20 Apr 2010 13:36:14 +0000 (15:36 +0200)]
implement 'char_val in bytes_string' and 'pyunicode_val in unicode_string'
optimise literal string case using a switch statement
enable switch transform for regular PrimaryCmpNode

14 years agoBugfix in numpy.pxd
Eric Firing [Tue, 20 Apr 2010 08:16:13 +0000 (10:16 +0200)]
Bugfix in numpy.pxd

14 years agosafety fix: why should the return type always be exactly PyObject if it is known...
Stefan Behnel [Tue, 20 Apr 2010 07:17:16 +0000 (09:17 +0200)]
safety fix: why should the return type always be exactly PyObject if it is known to be bool?

14 years agotypo
Stefan Behnel [Tue, 20 Apr 2010 06:27:40 +0000 (08:27 +0200)]
typo

14 years agoextended test case
Stefan Behnel [Tue, 20 Apr 2010 06:25:35 +0000 (08:25 +0200)]
extended test case

14 years agoPy2 test fix
Stefan Behnel [Mon, 19 Apr 2010 08:43:39 +0000 (10:43 +0200)]
Py2 test fix

14 years agoPy3 test fix
Stefan Behnel [Mon, 19 Apr 2010 08:39:49 +0000 (10:39 +0200)]
Py3 test fix

14 years agonative support for Py_UNICODE, coercion between 1-character unicode literals and...
Stefan Behnel [Mon, 19 Apr 2010 07:50:19 +0000 (09:50 +0200)]
native support for Py_UNICODE, coercion between 1-character unicode literals and Py_UNICODE, fix C iteration over unicode strings by using Py_UNICODE*

14 years agosignedness fix for unicode-for-loop iteration
Stefan Behnel [Sun, 18 Apr 2010 21:21:10 +0000 (23:21 +0200)]
signedness fix for unicode-for-loop iteration

14 years agoimplement "for int_var in bytes_string" and "for int_var in unicode_string"
Stefan Behnel [Sun, 18 Apr 2010 21:06:11 +0000 (23:06 +0200)]
implement "for int_var in bytes_string" and "for int_var in unicode_string"

14 years agoremoved dead code from test
Stefan Behnel [Sun, 18 Apr 2010 14:45:41 +0000 (16:45 +0200)]
removed dead code from test

14 years agocleanup
Stefan Behnel [Sun, 18 Apr 2010 11:39:47 +0000 (13:39 +0200)]
cleanup

14 years agore-enable working test in Py2.4
Stefan Behnel [Sun, 18 Apr 2010 11:38:51 +0000 (13:38 +0200)]
re-enable working test in Py2.4

14 years agosupport for all C scalar types in pure mode
Lisandro Dalcin [Fri, 16 Apr 2010 14:08:48 +0000 (11:08 -0300)]
support for all C scalar types in pure mode

14 years agoremove unused sign_and_rank_to_type mapping
Lisandro Dalcin [Fri, 16 Apr 2010 13:58:54 +0000 (10:58 -0300)]
remove unused sign_and_rank_to_type mapping

14 years agodefine PyBytes_XXX for Py<2.6 and use these through the codebase
Lisandro Dalcin [Fri, 16 Apr 2010 13:31:25 +0000 (10:31 -0300)]
define PyBytes_XXX for Py<2.6 and use these through the codebase