cython.git
13 years agoActualy use PyNumber_Inplace* operations.
Robert Bradshaw [Fri, 12 Nov 2010 09:10:37 +0000 (01:10 -0800)]
Actualy use PyNumber_Inplace* operations.

13 years agocleanup
Robert Bradshaw [Fri, 12 Nov 2010 08:57:20 +0000 (00:57 -0800)]
cleanup

13 years agoOne more buffer fix.
Robert Bradshaw [Fri, 12 Nov 2010 08:52:02 +0000 (00:52 -0800)]
One more buffer fix.

13 years agoTree structure test changes.
Robert Bradshaw [Fri, 12 Nov 2010 08:51:41 +0000 (00:51 -0800)]
Tree structure test changes.

13 years agoBuffer fix.
Robert Bradshaw [Fri, 12 Nov 2010 08:51:15 +0000 (00:51 -0800)]
Buffer fix.

13 years agoHandle inplace arithmatic via parse tree transform.
Robert Bradshaw [Fri, 12 Nov 2010 07:58:11 +0000 (23:58 -0800)]
Handle inplace arithmatic via parse tree transform.
Excludes buffers and C++, which have their own code.
This is in preparation for #591 (inline vs. cdivision) and
support for inline complex arithamtic.

13 years agotimely close Cython source file when generating C source comments
Stefan Behnel [Fri, 12 Nov 2010 07:19:23 +0000 (08:19 +0100)]
timely close Cython source file when generating C source comments

13 years agodeclare purely internal methods of Scanner class as 'cdef'
Stefan Behnel [Thu, 11 Nov 2010 22:39:24 +0000 (23:39 +0100)]
declare purely internal methods of Scanner class as 'cdef'

13 years agocleanup
Stefan Behnel [Thu, 11 Nov 2010 22:24:51 +0000 (23:24 +0100)]
cleanup

13 years agofix TupleNode typing as tuple_type instead of py_object_type
Stefan Behnel [Thu, 11 Nov 2010 22:19:13 +0000 (23:19 +0100)]
fix TupleNode typing as tuple_type instead of py_object_type

13 years agotrial fix for bizarre build bug
Stefan Behnel [Thu, 11 Nov 2010 21:35:48 +0000 (22:35 +0100)]
trial fix for bizarre build bug

13 years agoVisitor cleanup: mark internal (cdef) methods with leading underscore in .py files
Stefan Behnel [Thu, 11 Nov 2010 21:13:47 +0000 (22:13 +0100)]
Visitor cleanup: mark internal (cdef) methods with leading underscore in .py files

13 years agoanother tiny bit faster Visitors
Stefan Behnel [Thu, 11 Nov 2010 20:20:14 +0000 (21:20 +0100)]
another tiny bit faster Visitors

13 years agoanother bit less overhead inside of Visitor classes
Stefan Behnel [Thu, 11 Nov 2010 20:08:34 +0000 (21:08 +0100)]
another bit less overhead inside of Visitor classes

13 years agodeclare purely internal method of Visitor class as 'cdef'
Stefan Behnel [Thu, 11 Nov 2010 19:40:32 +0000 (20:40 +0100)]
declare purely internal method of Visitor class as 'cdef'

13 years agorecompile Cython source files when .pxd override files change
Stefan Behnel [Thu, 11 Nov 2010 14:01:25 +0000 (15:01 +0100)]
recompile Cython source files when .pxd override files change

13 years agoskip None checks on a node if we know its constant value as being not None
Stefan Behnel [Thu, 11 Nov 2010 13:32:32 +0000 (14:32 +0100)]
skip None checks on a node if we know its constant value as being not None

13 years agoreplace literal None check by a NoneCheckNode
Stefan Behnel [Thu, 11 Nov 2010 13:20:42 +0000 (14:20 +0100)]
replace literal None check by a NoneCheckNode

13 years agocomment
Stefan Behnel [Thu, 11 Nov 2010 12:46:04 +0000 (13:46 +0100)]
comment

13 years agofaster equality check for unicode strings (speeds up the parser)
Stefan Behnel [Thu, 11 Nov 2010 12:01:12 +0000 (13:01 +0100)]
faster equality check for unicode strings (speeds up the parser)

13 years agoextended test case
Stefan Behnel [Thu, 11 Nov 2010 06:48:55 +0000 (07:48 +0100)]
extended test case

13 years agoanother minor scanner speed-up
Stefan Behnel [Thu, 11 Nov 2010 06:24:00 +0000 (07:24 +0100)]
another minor scanner speed-up

13 years agomore typing in Scanners.pxd for slightly faster scanning
Stefan Behnel [Wed, 10 Nov 2010 22:49:36 +0000 (23:49 +0100)]
more typing in Scanners.pxd for slightly faster scanning

13 years agominor code cleanup
Stefan Behnel [Tue, 9 Nov 2010 09:24:46 +0000 (10:24 +0100)]
minor code cleanup

13 years agoerror handling fix in metaclass utility code
Stefan Behnel [Mon, 8 Nov 2010 18:30:57 +0000 (19:30 +0100)]
error handling fix in metaclass utility code

13 years agoPy2.3 fix
Stefan Behnel [Mon, 8 Nov 2010 18:21:44 +0000 (19:21 +0100)]
Py2.3 fix

13 years agoclean up metaclass code
Stefan Behnel [Mon, 8 Nov 2010 14:33:43 +0000 (15:33 +0100)]
clean up metaclass code

13 years agobetter function names in parser, declare new functions as C functions in Parsing.pxd
Stefan Behnel [Mon, 8 Nov 2010 13:17:11 +0000 (14:17 +0100)]
better function names in parser, declare new functions as C functions in Parsing.pxd

13 years agoPy3 metaclasses initial support.
Vitja Makarov [Fri, 5 Nov 2010 10:56:18 +0000 (13:56 +0300)]
Py3 metaclasses initial support.

13 years agosecond try to fix ticket #583: method signatures of overridden C methods in pure...
Stefan Behnel [Mon, 8 Nov 2010 11:34:32 +0000 (12:34 +0100)]
second try to fix ticket #583: method signatures of overridden C methods in pure mode

13 years agoremoved dead code
Stefan Behnel [Mon, 8 Nov 2010 11:05:24 +0000 (12:05 +0100)]
removed dead code

13 years agoreverted last change - generates problematic C code
Stefan Behnel [Mon, 8 Nov 2010 09:20:01 +0000 (10:20 +0100)]
reverted last change - generates problematic C code

13 years agotrial fix for ticket #583: method signatures of overridden C methods in pure mode
Stefan Behnel [Mon, 8 Nov 2010 09:14:32 +0000 (10:14 +0100)]
trial fix for ticket #583: method signatures of overridden C methods in pure mode

13 years agofailing test for ticket #583
Stefan Behnel [Mon, 8 Nov 2010 08:06:33 +0000 (09:06 +0100)]
failing test for ticket #583

13 years agofix ticket #589: bound methods of optimised builtin types
Stefan Behnel [Mon, 8 Nov 2010 07:46:41 +0000 (08:46 +0100)]
fix ticket #589: bound methods of optimised builtin types

13 years agofailing test case for ticket #589
Stefan Behnel [Sun, 7 Nov 2010 21:21:14 +0000 (22:21 +0100)]
failing test case for ticket #589

13 years agoextended test case
Stefan Behnel [Sun, 7 Nov 2010 21:18:24 +0000 (22:18 +0100)]
extended test case

13 years agoremoved (hopefully) dead code
Stefan Behnel [Sun, 7 Nov 2010 21:05:22 +0000 (22:05 +0100)]
removed (hopefully) dead code

13 years agoreminder comment: need to disable C-API mapping for dict.keys/values/items() in ...
Stefan Behnel [Sun, 7 Nov 2010 17:30:55 +0000 (18:30 +0100)]
reminder comment: need to disable C-API mapping for dict.keys/values/items() in -3 mode to let them return a dict view in Py3

13 years agooptimise iteration over dict.keys/values/items() in -3 mode
Stefan Behnel [Sun, 7 Nov 2010 17:29:24 +0000 (18:29 +0100)]
optimise iteration over dict.keys/values/items() in -3 mode

13 years agomajor refactoring of builtin method/function overrides to support explicit function...
Stefan Behnel [Sun, 7 Nov 2010 15:06:23 +0000 (16:06 +0100)]
major refactoring of builtin method/function overrides to support explicit function types and utility code dependencies

13 years agomore builtin method cleanups
Stefan Behnel [Sun, 7 Nov 2010 13:11:48 +0000 (14:11 +0100)]
more builtin method cleanups

13 years agofix exception type on None error
Stefan Behnel [Sun, 7 Nov 2010 09:44:16 +0000 (10:44 +0100)]
fix exception type on None error

13 years agosimplify some builtin method optimisations
Stefan Behnel [Sun, 7 Nov 2010 09:24:21 +0000 (10:24 +0100)]
simplify some builtin method optimisations

13 years agoforgotten test fix
Stefan Behnel [Sun, 7 Nov 2010 09:18:04 +0000 (10:18 +0100)]
forgotten test fix

13 years agofix 'self' argument type in generic builtin method overrides, test for None at call...
Stefan Behnel [Sun, 7 Nov 2010 09:10:31 +0000 (10:10 +0100)]
fix 'self' argument type in generic builtin method overrides, test for None at call time (ticket #571)

13 years agomoved string.h utility code over to Builtin.py to make it generally available to...
Stefan Behnel [Sat, 6 Nov 2010 19:19:08 +0000 (20:19 +0100)]
moved string.h utility code over to Builtin.py to make it generally available to other modules

13 years agoCompile decorator.
Robert Bradshaw [Sat, 6 Nov 2010 06:34:10 +0000 (23:34 -0700)]
Compile decorator.

13 years agoextended test case
Stefan Behnel [Fri, 5 Nov 2010 18:17:56 +0000 (19:17 +0100)]
extended test case

13 years agoimplement builtin next() to make it available in Py2
Stefan Behnel [Fri, 5 Nov 2010 18:02:35 +0000 (19:02 +0100)]
implement builtin next() to make it available in Py2

13 years agoextended test case for builtin pow()
Stefan Behnel [Fri, 5 Nov 2010 17:30:15 +0000 (18:30 +0100)]
extended test case for builtin pow()

13 years agoAdd build package.
Robert Bradshaw [Fri, 5 Nov 2010 16:10:20 +0000 (09:10 -0700)]
Add build package.

13 years agomerge
Robert Bradshaw [Fri, 5 Nov 2010 08:46:49 +0000 (01:46 -0700)]
merge

13 years agoInline numpy support.
Robert Bradshaw [Fri, 5 Nov 2010 08:46:19 +0000 (01:46 -0700)]
Inline numpy support.

13 years agoMore module caching.
Robert Bradshaw [Fri, 5 Nov 2010 08:34:58 +0000 (01:34 -0700)]
More module caching.

13 years agoString literal parsing in inline mode, hook up to cythonize.
Robert Bradshaw [Fri, 5 Nov 2010 08:28:04 +0000 (01:28 -0700)]
String literal parsing in inline mode, hook up to cythonize.

13 years agoslightly more telling error message on generic syntax errors
Stefan Behnel [Fri, 5 Nov 2010 07:19:34 +0000 (08:19 +0100)]
slightly more telling error message on generic syntax errors

13 years agoFix doctests.
Robert Bradshaw [Fri, 5 Nov 2010 06:53:42 +0000 (23:53 -0700)]
Fix doctests.

13 years agoMove deps to new build directory.
Robert Bradshaw [Fri, 5 Nov 2010 06:43:25 +0000 (23:43 -0700)]
Move deps to new build directory.

--HG--
rename : Cython/Compiler/Dependencies.py => Cython/Build/Dependencies.py

13 years agoenable two-value form of builtin pow()
Stefan Behnel [Thu, 4 Nov 2010 22:45:44 +0000 (23:45 +0100)]
enable two-value form of builtin pow()

13 years agofix ref-leak in Py2 metaclass support
Stefan Behnel [Wed, 3 Nov 2010 20:44:55 +0000 (21:44 +0100)]
fix ref-leak in Py2 metaclass support

13 years agotest cleanup
Stefan Behnel [Wed, 3 Nov 2010 20:44:37 +0000 (21:44 +0100)]
test cleanup

13 years agomake sure the cname really is unique when overriding its signature
Stefan Behnel [Wed, 3 Nov 2010 20:24:09 +0000 (21:24 +0100)]
make sure the cname really is unique when overriding its signature

13 years agomerge getattr() optimisation into builtin function support by overriding its signature
Stefan Behnel [Wed, 3 Nov 2010 20:11:54 +0000 (21:11 +0100)]
merge getattr() optimisation into builtin function support by overriding its signature

13 years agocleanup
Stefan Behnel [Wed, 3 Nov 2010 19:40:34 +0000 (20:40 +0100)]
cleanup

13 years agosimplify iter() optimisation based on signature override
Stefan Behnel [Wed, 3 Nov 2010 19:35:38 +0000 (20:35 +0100)]
simplify iter() optimisation based on signature override

13 years agosupport exec(cmd,g) as alternative signature for exec(cmd,g,l) in -3 mode
Stefan Behnel [Wed, 3 Nov 2010 19:20:06 +0000 (20:20 +0100)]
support exec(cmd,g) as alternative signature for exec(cmd,g,l) in -3 mode

13 years agosupport overriding builtins with different signatures as long as they map to differen...
Stefan Behnel [Wed, 3 Nov 2010 19:11:53 +0000 (20:11 +0100)]
support overriding builtins with different signatures as long as they map to different C names

13 years ago__metaclass__ support
Vitja Makarov [Tue, 2 Nov 2010 22:32:09 +0000 (01:32 +0300)]
__metaclass__ support
Fill class attributes dict before class creation. Use bindings for class methods.
And use PyCFunction for staticmethods and __new__. Add simple testcase for __metaclass__.
And test for staticmethod as decorator

13 years agoexclude Python regression tests from Python doctest runs
Stefan Behnel [Wed, 3 Nov 2010 15:09:26 +0000 (16:09 +0100)]
exclude Python regression tests from Python doctest runs

13 years agotest syntax fixes
Stefan Behnel [Wed, 3 Nov 2010 15:04:37 +0000 (16:04 +0100)]
test syntax fixes

13 years agoremoved test from pure.pyx that only works in real pure mode
Stefan Behnel [Wed, 3 Nov 2010 15:02:12 +0000 (16:02 +0100)]
removed test from pure.pyx that only works in real pure mode

13 years agoonly run pure doctests in runnable tests directories
Stefan Behnel [Wed, 3 Nov 2010 14:51:56 +0000 (15:51 +0100)]
only run pure doctests in runnable tests directories

13 years agofix test after changing autotestdict default setup
Stefan Behnel [Wed, 3 Nov 2010 14:14:29 +0000 (15:14 +0100)]
fix test after changing autotestdict default setup

13 years agodrop tests from pure_py.py test file that do not work in pure mode
Stefan Behnel [Wed, 3 Nov 2010 14:10:18 +0000 (15:10 +0100)]
drop tests from pure_py.py test file that do not work in pure mode

13 years agoenable CPython doctesting of .py files in tests/run/
Stefan Behnel [Wed, 3 Nov 2010 14:09:36 +0000 (15:09 +0100)]
enable CPython doctesting of .py files in tests/run/

13 years agoin pure mode: rename 'with nogil' to 'with cython.nogil', test 'real' pure mode by...
Stefan Behnel [Wed, 3 Nov 2010 13:06:10 +0000 (14:06 +0100)]
in pure mode: rename 'with nogil' to 'with cython.nogil', test 'real' pure mode by compiling .py file instead of .pyx file

--HG--
rename : tests/run/pure.pyx => tests/run/pure_py.py

13 years agomerge
Stefan Behnel [Wed, 3 Nov 2010 10:08:27 +0000 (11:08 +0100)]
merge

13 years agodisable 'with template' syntax in Python files
Stefan Behnel [Wed, 3 Nov 2010 09:45:48 +0000 (10:45 +0100)]
disable 'with template' syntax in Python files

13 years agomerge
Robert Bradshaw [Wed, 3 Nov 2010 09:36:48 +0000 (02:36 -0700)]
merge

13 years agoPy < 2.6 fix.
Robert Bradshaw [Wed, 3 Nov 2010 09:35:05 +0000 (02:35 -0700)]
Py < 2.6 fix.

13 years agomove 'official' version number to Cython/__init__.py to avoid importing the complete...
Stefan Behnel [Wed, 3 Nov 2010 09:34:30 +0000 (10:34 +0100)]
move 'official' version number to Cython/__init__.py to avoid importing the complete compiler package for a version check

13 years agomerge
Stefan Behnel [Wed, 3 Nov 2010 09:23:56 +0000 (10:23 +0100)]
merge

13 years agonew autotestdict.{cdef,all} directives that put cdef and non-doctest docstrings into...
Stefan Behnel [Wed, 3 Nov 2010 09:20:29 +0000 (10:20 +0100)]
new autotestdict.{cdef,all} directives that put cdef and non-doctest docstrings into __test__, skip non-doctest docstrings by default

--HG--
rename : tests/run/autotestdict.pyx => tests/run/autotestdict_all.pyx
rename : tests/run/autotestdict.pyx => tests/run/autotestdict_cdef.pyx

13 years agoFix __version__ for py3
Robert Bradshaw [Wed, 3 Nov 2010 09:11:17 +0000 (02:11 -0700)]
Fix __version__ for py3

13 years agoUnsigned PY_LONG_LONG.
Robert Bradshaw [Tue, 2 Nov 2010 17:24:24 +0000 (10:24 -0700)]
Unsigned PY_LONG_LONG.

13 years agofix test runner warning in Python 3.2 debug builds
Stefan Behnel [Tue, 2 Nov 2010 17:16:30 +0000 (18:16 +0100)]
fix test runner warning in Python 3.2 debug builds

13 years agofix octal literals as Python constants, convert octal/binary/hex integer literals...
Stefan Behnel [Tue, 2 Nov 2010 17:14:29 +0000 (18:14 +0100)]
fix octal literals as Python constants, convert octal/binary/hex integer literals to plain decimal integers when using them as Python integers

13 years agoprevent 'file' from being recognised as a builtin type - it's no longer available...
Stefan Behnel [Tue, 2 Nov 2010 15:58:59 +0000 (16:58 +0100)]
prevent 'file' from being recognised as a builtin type - it's no longer available in Py3

13 years agofix language level setting in test runner
Stefan Behnel [Tue, 2 Nov 2010 15:46:33 +0000 (16:46 +0100)]
fix language level setting in test runner

13 years agobuild fix
Stefan Behnel [Tue, 2 Nov 2010 13:46:51 +0000 (14:46 +0100)]
build fix

13 years agosupport running tests with language level 3 (mostly run the CPython regression tests)
Stefan Behnel [Tue, 2 Nov 2010 13:42:23 +0000 (14:42 +0100)]
support running tests with language level 3 (mostly run the CPython regression tests)

13 years agofix *args/**kwargs in lambda function declaration: was messed up with annotation...
Stefan Behnel [Tue, 2 Nov 2010 13:27:17 +0000 (14:27 +0100)]
fix *args/**kwargs in lambda function declaration: was messed up with annotation syntax

13 years agotest cleanup
Stefan Behnel [Tue, 2 Nov 2010 13:02:16 +0000 (14:02 +0100)]
test cleanup

13 years agoPy2.4 test fix
Stefan Behnel [Tue, 2 Nov 2010 11:43:14 +0000 (12:43 +0100)]
Py2.4 test fix

13 years agoreverted support for cdef functions in __test__ dict: increases module size and init...
Stefan Behnel [Tue, 2 Nov 2010 11:42:31 +0000 (12:42 +0100)]
reverted support for cdef functions in __test__ dict: increases module size and init code but rarely helps

13 years agoenable doctests in cdef functions/methods, do not rewrap docstrings in __test__ dict...
Stefan Behnel [Tue, 2 Nov 2010 08:44:27 +0000 (09:44 +0100)]
enable doctests in cdef functions/methods, do not rewrap docstrings in __test__ dict as EncodedString() but keep them as they are

13 years agouse branch hints in macros of slicing work-around
Stefan Behnel [Mon, 1 Nov 2010 18:39:48 +0000 (19:39 +0100)]
use branch hints in macros of slicing work-around

13 years agofix ticket #578 by working around CPython bug 9834: crash in Py3.[0-1.2] when slicing...
Stefan Behnel [Mon, 1 Nov 2010 18:33:18 +0000 (19:33 +0100)]
fix ticket #578 by working around CPython bug 9834: crash in Py3.[0-1.2] when slicing non-sliceable objects

13 years agoPy2.[34] fix
Stefan Behnel [Sun, 31 Oct 2010 18:47:12 +0000 (19:47 +0100)]
Py2.[34] fix