- 09 Feb, 2013 11 commits
-
-
Robert Bradshaw authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 08 Feb, 2013 3 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 07 Feb, 2013 15 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
add test for keyword arguments passed into cdef functions with optional arguments, fix parameter names in test
-
Stefan Behnel authored
-
Stefan Behnel authored
--HG-- rename : tests/run/simplify_calls.pyx => tests/run/cdef_function_kwargs.pyx
-
Stefan Behnel authored
convert function argument names in libc declarations to lower case to make their use as keyword arguments more natural
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
improve error reporting on mapped keyword arguments for C functions, implement out-of-order keywords and C method mapping
-
scoder authored
Fix runtime crash as described on cython-devel.
-
J Robert Ray authored
__pyx_CyFunctionObject.defaults must be fully zeroed or a segfault or memory corruption may occur if the object is visited by the garbage collector before defaults is later populated. Uninitialized memory is cast to PyObject* with undefined results: static int __Pyx_CyFunction_traverse(__pyx_CyFunctionObject *m, visitproc visit, void *arg) { ... if (m->defaults) { PyObject **pydefaults = __Pyx_CyFunction_Defaults(PyObject *, m); int i; for (i = 0; i < m->defaults_pyobjects; i++) Py_VISIT(pydefaults[i]); ^^^^^^^^^^^^^
-
Stefan Behnel authored
-
Stefan Behnel authored
refactor analyse_types() and friends to work more like a transform by returning the node or a replacement
-
- 06 Feb, 2013 6 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 05 Feb, 2013 1 commit
-
-
Stefan Behnel authored
simple optimisation that statically maps keyword arguments to positional arguments when called signature is known
-
- 04 Feb, 2013 4 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-