Stefan Behnel [Wed, 9 Apr 2008 09:14:48 +0000 (11:14 +0200)]
reverted 'circular cdef' patch, leaving unrelated changes intact
Robert Bradshaw [Tue, 8 Apr 2008 08:25:09 +0000 (01:25 -0700)]
Fix cdef extern classes
Robert Bradshaw [Tue, 8 Apr 2008 08:20:51 +0000 (01:20 -0700)]
Minor packaging changes
Robert Bradshaw [Fri, 4 Apr 2008 07:15:22 +0000 (00:15 -0700)]
Add untracked files to repo.
Robert Bradshaw [Fri, 4 Apr 2008 07:14:59 +0000 (00:14 -0700)]
Cleanup unsused functions/labels
Robert Bradshaw [Fri, 4 Apr 2008 06:44:29 +0000 (23:44 -0700)]
Merge package and compiler repositories.
Robert Bradshaw [Fri, 4 Apr 2008 05:28:40 +0000 (22:28 -0700)]
bump version number
Robert Bradshaw [Fri, 4 Apr 2008 05:07:13 +0000 (22:07 -0700)]
Misc little fixes. Sage now builds and passes all tests.
Robert Bradshaw [Thu, 3 Apr 2008 07:47:04 +0000 (00:47 -0700)]
minor fixes
Robert Bradshaw [Thu, 3 Apr 2008 07:23:51 +0000 (00:23 -0700)]
Transformation fixes
Robert Bradshaw [Thu, 3 Apr 2008 03:55:29 +0000 (20:55 -0700)]
Allow ctypedef my_struct_s my_struct_t[1] trick, can access members of my_struct_t as if it were a pointer.
Robert Bradshaw [Thu, 3 Apr 2008 02:55:50 +0000 (19:55 -0700)]
C++ error handling
"Felix Wu" [Mon, 31 Mar 2008 17:57:40 +0000 (10:57 -0700)]
Cython and C++ exceptions
Robert Bradshaw [Sun, 30 Mar 2008 11:04:13 +0000 (04:04 -0700)]
c line numbers optional
Gary Furnish [Sun, 23 Mar 2008 16:02:06 +0000 (10:02 -0600)]
Circular cdef's
Robert Bradshaw [Sun, 30 Mar 2008 10:26:32 +0000 (03:26 -0700)]
Fix enum bug (values weren't forced to ints)
Jim Kleckner [Sun, 30 Mar 2008 09:25:39 +0000 (02:25 -0700)]
[Cython] Small patch for __stdcall
The following small patch gets rid of some warnings on the cygwin
platform (it it not WIN32 but does have definitions of __stdcall
resulting in warnings).
Please let me know if it will or won't get into the upstream release.
Thanks.
Robert Bradshaw [Sun, 30 Mar 2008 09:18:18 +0000 (02:18 -0700)]
Fix cpdef functions with pointer return parameters, make cpdef functions coercable into objects.
Robert Bradshaw [Sun, 30 Mar 2008 08:31:03 +0000 (01:31 -0700)]
fix bug 206821 (incorrect ref count when single-arg converion failed)
Robert Bradshaw [Sat, 29 Mar 2008 22:09:01 +0000 (15:09 -0700)]
Added optimize_simple_methods to make it possible to accept keywords in 1-arg functions
ChrisPerkins [Sat, 29 Mar 2008 20:58:40 +0000 (13:58 -0700)]
Fix bug 208262 for files with odd characters in them
Robert Bradshaw [Sat, 29 Mar 2008 20:05:00 +0000 (13:05 -0700)]
...
Robert Bradshaw [Sat, 29 Mar 2008 20:03:23 +0000 (13:03 -0700)]
Fix comparison bug for longs and doubles #208053
Robert Bradshaw [Sat, 29 Mar 2008 18:41:46 +0000 (11:41 -0700)]
more comments on control flow
Robert Bradshaw [Tue, 25 Mar 2008 23:26:22 +0000 (16:26 -0700)]
More control flow work
Robert Bradshaw [Tue, 25 Mar 2008 09:19:38 +0000 (02:19 -0700)]
Basic control flow state processing
Stefan Behnel [Fri, 14 Mar 2008 09:34:53 +0000 (10:34 +0100)]
support adding pxd/pxi dependencies to Extension sources and force rebuild on dependency updates
Robert Bradshaw [Sun, 9 Mar 2008 08:40:34 +0000 (00:40 -0800)]
Some fixes to get it to run on 2.3
"Dag Sverre Seljebotn" [Sun, 9 Mar 2008 08:14:12 +0000 (00:14 -0800)]
Support for parse tree transformations.
Robert Bradshaw [Sun, 9 Mar 2008 08:12:06 +0000 (00:12 -0800)]
merge
Stefan Behnel [Thu, 6 Mar 2008 10:39:10 +0000 (11:39 +0100)]
fixes for escape sequences in unicode literals
Stefan Behnel [Wed, 5 Mar 2008 17:05:27 +0000 (18:05 +0100)]
prevent unicode strings from being interned
Stefan Behnel [Wed, 5 Mar 2008 15:12:53 +0000 (16:12 +0100)]
fix for unicode escapes (\u1234)
Stefan Behnel [Sun, 2 Mar 2008 11:29:08 +0000 (12:29 +0100)]
pre-Py3k fixes
Robert Bradshaw [Thu, 28 Feb 2008 20:43:28 +0000 (12:43 -0800)]
Allow single-character ascii strings to be treated as c character literals.
Stefan Behnel [Tue, 26 Feb 2008 20:59:27 +0000 (21:59 +0100)]
merge
Robert Bradshaw [Mon, 25 Feb 2008 20:47:30 +0000 (12:47 -0800)]
error on local cimport (rather than traceback)
Stefan Behnel [Mon, 25 Feb 2008 05:54:57 +0000 (06:54 +0100)]
merge
Robert Bradshaw [Sat, 23 Feb 2008 07:11:38 +0000 (23:11 -0800)]
num -> int for int constants
Stefan Behnel [Sat, 16 Feb 2008 18:15:52 +0000 (19:15 +0100)]
fix exception string formatting for Py_ssize_t values: needs %zd instead of %d on Python >= 2.5
Stefan Behnel [Sat, 16 Feb 2008 18:12:50 +0000 (19:12 +0100)]
make unpacking exception strings look like those generated by Python itself
Stefan Behnel [Sat, 16 Feb 2008 17:37:23 +0000 (18:37 +0100)]
fixes for True/False in compile time expressions; make sure True/False pass as objects (not just ints) where possible
Stefan Behnel [Sat, 16 Feb 2008 17:27:34 +0000 (18:27 +0100)]
removed 'builtin_functions' dict: broke referring to 'unicode' function by name
Stefan Behnel [Sat, 16 Feb 2008 12:21:36 +0000 (13:21 +0100)]
fix for 'raise' decref bug unter Python <= 2.4 in error case
Robert Bradshaw [Thu, 14 Feb 2008 01:27:31 +0000 (17:27 -0800)]
Bump version
Robert Bradshaw [Thu, 14 Feb 2008 01:09:26 +0000 (17:09 -0800)]
Warning when overriding cdef method with def method. (Perhaps this should be an error?)
Robert Bradshaw [Wed, 13 Feb 2008 12:13:44 +0000 (04:13 -0800)]
Module-level cpdef functions
Robert Bradshaw [Wed, 13 Feb 2008 10:58:13 +0000 (02:58 -0800)]
Undo botched api -> pxd
Robert Bradshaw [Wed, 13 Feb 2008 06:16:30 +0000 (22:16 -0800)]
Cleanup warnings
Robert Bradshaw [Wed, 13 Feb 2008 05:38:47 +0000 (21:38 -0800)]
Real fix for builtins caching + coercion bug (as reported by paul.metcalfe@gmail.com)
bluecreature@gmail.com [Wed, 13 Feb 2008 04:36:57 +0000 (20:36 -0800)]
Cython disregards the c-name for "cdef public" class members
Robert Bradshaw [Wed, 13 Feb 2008 04:09:14 +0000 (20:09 -0800)]
Export pxd functions by default
Robert Bradshaw [Wed, 13 Feb 2008 03:42:28 +0000 (19:42 -0800)]
Don't flatten list comprehension nodes
Robert Bradshaw [Wed, 13 Feb 2008 03:05:47 +0000 (19:05 -0800)]
Temporary python object casts OK for numeric types.
Robert Bradshaw [Wed, 13 Feb 2008 02:08:20 +0000 (18:08 -0800)]
Enable narrowing return type when subclassing
Robert Bradshaw [Wed, 13 Feb 2008 01:40:28 +0000 (17:40 -0800)]
...
Robert Bradshaw [Wed, 13 Feb 2008 01:40:13 +0000 (17:40 -0800)]
Error condition compile error on error type
Stefan Behnel [Sun, 10 Feb 2008 07:32:43 +0000 (08:32 +0100)]
support True/False in compile-time statements
Stefan Behnel [Sun, 10 Feb 2008 07:10:21 +0000 (08:10 +0100)]
fixed NameError
Stefan Behnel [Sat, 9 Feb 2008 16:25:17 +0000 (17:25 +0100)]
merge
Robert Bradshaw [Sat, 9 Feb 2008 14:40:27 +0000 (06:40 -0800)]
Always need optional struct.
Stefan Behnel [Fri, 8 Feb 2008 12:08:27 +0000 (13:08 +0100)]
huge cleanup of 'star-args only' unpacking code, incl. bug fixes for memory handling and non-string keywords
Robert Bradshaw [Fri, 8 Feb 2008 08:03:24 +0000 (00:03 -0800)]
Allow a cpdef function to override a cdef function
(But not the other way around...)
Robert Bradshaw [Fri, 8 Feb 2008 04:05:38 +0000 (20:05 -0800)]
Default argument literals, better True/False coercion
Robert Bradshaw [Thu, 7 Feb 2008 23:59:58 +0000 (15:59 -0800)]
Add optional args to any cdef overridden function
Robert Bradshaw [Thu, 7 Feb 2008 12:00:51 +0000 (04:00 -0800)]
Number of arguments can grow with overridden cdef functions.
Robert Bradshaw [Thu, 7 Feb 2008 09:46:57 +0000 (01:46 -0800)]
Default cdef args via struct
Stefan Behnel [Thu, 7 Feb 2008 06:17:14 +0000 (07:17 +0100)]
cleanup
Robert Bradshaw [Wed, 6 Feb 2008 23:49:48 +0000 (15:49 -0800)]
pxd with optional arguments
Robert Bradshaw [Wed, 6 Feb 2008 23:11:28 +0000 (15:11 -0800)]
Optional arguments in cpdef functions
Stefan Behnel [Wed, 6 Feb 2008 19:59:38 +0000 (20:59 +0100)]
avoid unpacking for functions that only have star args
Stefan Behnel [Sun, 3 Feb 2008 19:55:58 +0000 (20:55 +0100)]
downstream merge
Stefan Behnel [Sat, 2 Feb 2008 12:23:00 +0000 (13:23 +0100)]
refactoring to skip generating arg tuple unpacking code if we know there will be keyword arguments
Stefan Behnel [Sat, 2 Feb 2008 11:35:05 +0000 (12:35 +0100)]
Cython could generate useless argument tuple parsing code for functions with required kw-only args
Robert Bradshaw [Sat, 2 Feb 2008 09:18:43 +0000 (01:18 -0800)]
<type?> does type check for extension types
Robert Bradshaw [Sat, 2 Feb 2008 09:10:01 +0000 (01:10 -0800)]
Python object pointer cast warnings
Robert Bradshaw [Sat, 2 Feb 2008 09:07:03 +0000 (01:07 -0800)]
Actual conversion on <type> casts with one side Python
Robert Bradshaw [Sat, 2 Feb 2008 08:33:42 +0000 (00:33 -0800)]
Remove function pointer casting restriction
Robert Bradshaw [Fri, 1 Feb 2008 21:03:56 +0000 (13:03 -0800)]
Fix cython -v error when no source files given.
Reported by gpk@kochanski.org
Robert Bradshaw [Fri, 1 Feb 2008 19:43:33 +0000 (11:43 -0800)]
Mangle naming for cleanup function.
Stefan Behnel [Fri, 1 Feb 2008 13:30:17 +0000 (14:30 +0100)]
fix gcc 2.95 compile issue
Kirill Smelkov [Fri, 1 Feb 2008 10:46:15 +0000 (13:46 +0300)]
Demos: pyrexc -> cython
Robert Bradshaw [Sun, 30 Mar 2008 10:15:58 +0000 (03:15 -0700)]
Python/C API .pxi from Eric Huss
Robert Bradshaw [Sun, 30 Mar 2008 10:14:26 +0000 (03:14 -0700)]
merge
Stefan Behnel [Thu, 6 Mar 2008 11:11:11 +0000 (12:11 +0100)]
more unicode testing, also for null bytes
Stefan Behnel [Thu, 6 Mar 2008 10:36:52 +0000 (11:36 +0100)]
test fix
Stefan Behnel [Thu, 6 Mar 2008 10:33:07 +0000 (11:33 +0100)]
test runner fixes
Stefan Behnel [Thu, 6 Mar 2008 10:16:08 +0000 (11:16 +0100)]
extensive test case for unicode literals
Stefan Behnel [Thu, 6 Mar 2008 08:27:04 +0000 (09:27 +0100)]
little test for comparing loop code
Stefan Behnel [Sun, 2 Mar 2008 14:37:03 +0000 (15:37 +0100)]
generate coverage report from 'runtests.py -C' (requires coverage.py)
Stefan Behnel [Sun, 2 Mar 2008 10:59:40 +0000 (11:59 +0100)]
Py3k fixes
Stefan Behnel [Sat, 16 Feb 2008 18:21:50 +0000 (19:21 +0100)]
new tests for 'in' operator
Stefan Behnel [Sat, 16 Feb 2008 18:18:17 +0000 (19:18 +0100)]
test: too few arguments to unpack
Stefan Behnel [Sat, 16 Feb 2008 17:37:31 +0000 (18:37 +0100)]
test fix§
Stefan Behnel [Sat, 16 Feb 2008 16:53:03 +0000 (17:53 +0100)]
compile-time DEF test
Stefan Behnel [Sat, 16 Feb 2008 11:33:27 +0000 (12:33 +0100)]
new tests for various unicode()/str() usage patterns
Robert Bradshaw [Wed, 13 Feb 2008 02:10:48 +0000 (18:10 -0800)]
local merge
Stefan Behnel [Sun, 10 Feb 2008 07:34:03 +0000 (08:34 +0100)]
compile time IF/DEF tests
Stefan Behnel [Fri, 8 Feb 2008 12:26:34 +0000 (13:26 +0100)]
test for some problematic **kw use cases
Stefan Behnel [Wed, 6 Feb 2008 19:58:19 +0000 (20:58 +0100)]
extended test for star args in extension functions