index
:
delta/cython.git
0.17
0.18.x
0.19.x
0.20.x
0.21.x
0.22.x
0.23.x
0.24.x
0.25.x
0.27.x
0.28.x
0.29.x
cgetter_rewrite
ci_compile_all
clean_up_capi_features
cy3str
dalcinl-embedsignature
dalcinl/fix-c-used-variable
dalcinl/fix-c-warning
dalcinl/fix-cpdef-warning
dalcinl/fix-getbuffer
dalcinl/fix-module-cleanup
dalcinl/fix-release
dalcinl/fix-travis
dalcinl/fix-try-finally
dalcinl/mark-unused-vars
dalcinl/no-old-python
dalcinl/numpy
dropPy32
enable_limited_api_file_tests
faster_absolute_reimports
faster_pymultiply
fix-pypy3
fix_build_ext
fix_gh3246
fix_srctree_tests_on_windows
fixed_code_objects
full_code_writer
gh1461_cover_sig_line
gh1461_cover_sig_line_master
gh1807_getitem_mapping_first
gh2056_special_binop
gh2306_coro_frame
gh2343_heap_types
gh2564_enable_binding
gh2565_language_level_3str
gh2580_enable_generator_stop
gh2665_package_init_pyx
gh2670_win_intop
gh2692_remove_py26_support
gh2781_pep487_init_subclass
gh2983_lambda_sig
gh3090_always_allow_keywords
gh3092_percent_d_format
gh3481_defaults_warning
gh3545_reduce_cython_reimport
gh3554_smart_exit_gil
gh3573_versioned_pxds
gh3578_refleak
gh3625_returns_exc
gh3678_undep_unicode
gh884_docstrings
gsoc-kurt-regraft
ipython711
ipython711_master
less_tp_new
linting
ll3_new_style_classes
master
msvc_cpp
neg-overflow
no-old-python
optimise_pysequence_list
patma-preview
pep484_typing
pep515_underscores_in_numbers
pkg_init_windows
release
robertwb-rect
simplify_utility_loading
smarter_bounds_checks
test_stats
travis-ci
travis_cleanup
tune_calls
update_test_dependencies
github.com: cython/cython.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Cython
/
Utility
/
CythonFunction.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
replace generic "COMPILING_IN_*" C macros with feature specific guards that a...
Stefan Behnel
2016-07-30
1
-10
/
+10
*
generally #define PyObject_Malloc() and friends to their PyMem_*() counterpar...
Stefan Behnel
2016-03-17
1
-8
/
+0
*
fall back to PyMem_Malloc() in PyPy (which doesn't have PyObject_Malloc() and...
Stefan Behnel
2016-03-17
1
-0
/
+8
*
use slightly faster PyObject_Malloc() instead of PyMem_Malloc() for small mem...
Stefan Behnel
2016-02-07
1
-2
/
+2
*
split Cython's Generator type into separate Coroutine and Generator types to ...
Stefan Behnel
2015-05-23
1
-2
/
+2
*
Merge branch '0.22.x'
Stefan Behnel
2015-05-03
1
-7
/
+11
|
\
|
*
fix some cases where errors in IsInstance()/IsSubtype() calls were not handled
Stefan Behnel
2015-05-03
1
-7
/
+11
*
|
even static methods need their closure class in pypy
Stefan Behnel
2015-04-12
1
-1
/
+1
*
|
avoid dependency on pypy C-API functions in CyFunction_Call()
Stefan Behnel
2015-04-11
1
-3
/
+3
*
|
pypy: avoid borrowed references and improve error handling where it differs f...
Stefan Behnel
2015-04-11
1
-20
/
+68
|
/
*
remove leftover 2.5 compatibility code
Lars Buitinck
2014-12-23
1
-4
/
+0
*
escape two more places where '%zd' is used
Stefan Behnel
2014-10-29
1
-2
/
+2
*
fix PyMethod_New() in pypy3
Stefan Behnel
2014-10-08
1
-3
/
+2
*
Get rid of obsolete Python cruft
Lisandro Dalcin
2014-08-31
1
-5
/
+5
*
fix accidental argument name reuse in C macro
Stefan Behnel
2014-08-08
1
-6
/
+7
*
fix Py3.5 support: PyCFunction is now weak referencible itself, need to remov...
Stefan Behnel
2014-08-08
1
-3
/
+15
*
clean up C comments in CyFunction/Generator utility code files to avoid writi...
Stefan Behnel
2014-08-02
1
-28
/
+34
*
fix typos
Stefan Behnel
2014-08-02
1
-1
/
+1
*
Merge pull request #275 from cython/no-old-python
scoder
2014-03-22
1
-4
/
+0
|
\
|
*
Restore some over-eager 3.1 removals.
Robert Bradshaw
2014-02-22
1
-0
/
+4
|
*
More obsolete code removal.
Robert Bradshaw
2014-02-22
1
-4
/
+0
|
*
Remove obsolete utility code.
Robert Bradshaw
2014-02-22
1
-4
/
+0
*
|
remove reference to unused utility code
Stefan Behnel
2014-02-26
1
-1
/
+1
|
/
*
get rid of __signature__ property for cyfunctions again as inspect.py in Py3....
Stefan Behnel
2014-02-22
1
-27
/
+27
*
fix typo
Stefan Behnel
2014-02-14
1
-1
/
+1
*
avoid C compiler warning about unused helper function in Py<3.4
Stefan Behnel
2014-02-14
1
-2
/
+1
*
support __signature__ property on CyFunction in Py3.4
Stefan Behnel
2014-02-14
1
-0
/
+30
*
improve alignment in __pyx_CyFunctionObject struct
Stefan Behnel
2014-02-02
1
-1
/
+1
*
Backed out changeset 6bf1959d8f95
Stefan Behnel
2014-02-02
1
-4
/
+0
*
make CyFunction's inheritance from PyCFunction visible at the Python level to...
Stefan Behnel
2014-02-01
1
-0
/
+4
*
clean up lots of places where exceptions are being raised to reduce the messa...
Stefan Behnel
2013-12-06
1
-5
/
+5
*
Correct globals for shared function types.
Robert Bradshaw
2013-08-15
1
-19
/
+21
*
Use shared module for more Cython types.
Robert Bradshaw
2013-08-12
1
-9
/
+4
*
Share common type object for Cython functions.
Robert Bradshaw
2013-08-11
1
-0
/
+7
*
fix CPython version check for tp_finalize()
Stefan Behnel
2013-08-06
1
-2
/
+2
*
revert actual tp_finalize() usages, needs more thought
Stefan Behnel
2013-08-06
1
-2
/
+2
*
fix CPython version checking for tp_finalize()
Stefan Behnel
2013-08-04
1
-2
/
+2
*
adapt more type structs to Py3.4
Stefan Behnel
2013-08-03
1
-0
/
+6
*
implement __annotations__ attribute on CyFunction (PEP 3107)
Stefan Behnel
2013-03-29
1
-3
/
+44
*
implement __kwdefaults__ for CyFunction
Stefan Behnel
2013-03-29
1
-17
/
+88
*
Remove duplicate DECREF, tp_clear does it already
Pauli Virtanen
2013-03-17
1
-1
/
+0
*
Fix fused tp_clear function prototype
Mark Florisson
2013-03-17
1
-1
/
+1
*
Properly decref objects held by fused functions
Mark Florisson
2013-03-17
1
-1
/
+2
*
replace lots of dynamically created string constants in utility code by stati...
Stefan Behnel
2013-02-12
1
-1
/
+1
*
Fully initialize allocated memory.
J Robert Ray
2013-02-07
1
-1
/
+1
*
safety fixes and a little branch prediction helping in CyFunction utility code
Stefan Behnel
2013-01-06
1
-21
/
+25
*
implement __qualname__ special attribute on Python functions/classes (PEP 3155)
Stefan Behnel
2013-01-04
1
-14
/
+48
*
Fix fused types delimiter, add pure-mode memoryview syntax like cython.double...
Mark Florisson
2012-11-04
1
-1
/
+1
*
minor code simplification
Stefan Behnel
2012-07-08
1
-1
/
+2
*
avoid a useless level of indirection for CyFunction.tp_call() in CPython
Stefan Behnel
2012-07-08
1
-0
/
+4
[next]