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
/
ModuleSetupCode.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Allow cached threadstate to persist within nogil blocks.
Robert Bradshaw
2017-06-29
1
-14
/
+31
*
Avoid PyCapsule_Import for Python 2.6
Robert Bradshaw
2017-06-29
1
-0
/
+4
*
Fix actual method name for getting thread state.
Robert Bradshaw
2017-06-29
1
-1
/
+1
*
Fixes for other Python versions.
Robert Bradshaw
2017-06-29
1
-1
/
+13
*
Fix pedantic compiler error.
Robert Bradshaw
2017-06-29
1
-1
/
+2
*
Add an optimization for re-aquiring the GIL.
Robert Bradshaw
2017-06-29
1
-0
/
+130
*
Add a Pythran backend for Numpy operation
Adrien Guinet
2017-06-17
1
-0
/
+29
*
Excape comma in dll_linkage macros.
Robert Bradshaw
2017-02-25
1
-0
/
+3
*
Allow taking address of fake references.
Robert Bradshaw
2016-11-15
1
-0
/
+1
*
Suppress unused function warnings for Clang.
Robert Bradshaw
2016-11-15
1
-2
/
+8
*
Suppress self-assignment warning.
Robert Bradshaw
2016-11-15
1
-0
/
+8
*
Remove superfluous semicolons.
Robert Bradshaw
2016-11-14
1
-2
/
+2
*
Merge pull request #1503 from jdemeyer/cython_unused
scoder
2016-10-29
1
-23
/
+23
|
\
|
*
Move CYTHON_UNUSED macro up such that included files can use it
Jeroen Demeyer
2016-10-26
1
-23
/
+23
*
|
Safelify macro.
Stefan Behnel
2016-10-28
1
-1
/
+1
|
/
*
Fix builtin Exception type checking.
Robert Bradshaw
2016-10-25
1
-0
/
+1
*
avoid potential conflict with typedefed name in CPython
Stefan Behnel
2016-10-15
1
-2
/
+4
*
special case METH_FASTCALL signatures of PyCFunctions in Py3.6+
Stefan Behnel
2016-10-15
1
-0
/
+11
*
correctly handle PyCFunctions with METH_FASTCALL signature in Py3.6
Stefan Behnel
2016-10-15
1
-0
/
+6
*
define HAVE_LONG_LONG if CPython does not but we know that it requires it
Stefan Behnel
2016-09-18
1
-0
/
+7
*
Merge branch 'typeid'
Robert Bradshaw
2016-09-08
1
-0
/
+3
|
\
|
*
Add some more typeid tests.
Robert Bradshaw
2016-09-08
1
-0
/
+3
*
|
copy and adapt fast Python function calling code from CPython 3.6
Stefan Behnel
2016-08-21
1
-0
/
+7
*
|
directly call into CPython's Unicode writers to format float/int values, rath...
Stefan Behnel
2016-08-21
1
-0
/
+10
*
|
speed up f-string building with a specialised PyUnicode_Join() implementation
Stefan Behnel
2016-08-20
1
-0
/
+2
*
|
add comment
Stefan Behnel
2016-08-16
1
-0
/
+1
*
|
clean up Pyston macro setup
Stefan Behnel
2016-08-16
1
-6
/
+12
*
|
Add Pyston support
Boxiang Sun
2016-08-08
1
-2
/
+35
|
/
*
fold CYTHON_USE_PYLONG_INTERNALS feature macro into the same initialisation s...
Stefan Behnel
2016-07-31
1
-3
/
+8
*
add macro indirections that apparently help making pyston happier
Stefan Behnel
2016-07-31
1
-0
/
+3
*
guard the usage of the new PEP 492 async type slots by an explicit feature macro
Stefan Behnel
2016-07-31
1
-11
/
+21
*
make new feature-specific guards overridable by user #defines in CPython to a...
Stefan Behnel
2016-07-30
1
-7
/
+28
*
replace generic "COMPILING_IN_*" C macros with feature specific guards that a...
Stefan Behnel
2016-07-30
1
-1
/
+15
*
Work around missing Cygwin truncl.
Robert Bradshaw
2016-05-17
1
-0
/
+6
*
avoid code duplication in utility function by using macros
Stefan Behnel
2016-04-22
1
-0
/
+5
*
add fallback implementation for PyByteArray_Check() in PyPy
Stefan Behnel
2016-04-06
1
-0
/
+4
*
provide fallback implementation for PyObject_Format() in PyPy
Stefan Behnel
2016-03-28
1
-0
/
+4
*
F strings (PEP 498)
Robert Bradshaw
2016-03-24
1
-0
/
+4
|
\
|
*
simplify code generated for f-string formatting using simple utility functions
Stefan Behnel
2016-03-22
1
-1
/
+0
|
*
make missing PyObject_ASCII() function sort-of available in Py2 (to be used b...
Stefan Behnel
2016-03-21
1
-0
/
+4
|
*
avoid formatting call overhead for simple Unicode value case
Stefan Behnel
2016-03-21
1
-0
/
+1
*
|
fix copy&paste bug
Stefan Behnel
2016-03-24
1
-1
/
+1
*
|
avoid truth-testing overhead in Py3.3+ also for non-ready (wchar_t) Unicode s...
Stefan Behnel
2016-03-24
1
-0
/
+2
*
|
avoid alignment overhead in internal struct
Stefan Behnel
2016-03-24
1
-1
/
+1
|
/
*
generally #define PyObject_Malloc() and friends to their PyMem_*() counterpar...
Stefan Behnel
2016-03-17
1
-0
/
+6
*
Merge branch '0.23.x'
Stefan Behnel
2015-09-30
1
-1
/
+1
|
\
|
*
suppress warning about unused value by casting it to (void)
Stefan Behnel
2015-09-30
1
-1
/
+1
|
*
Use reference rather than pointer for destructor calling.
Robert Bradshaw
2015-09-01
1
-2
/
+2
*
|
undef unwanted defines from longintrepr.h
Jeroen Demeyer
2015-09-04
1
-0
/
+4
*
|
Use reference rather than pointer for destructor calling.
Robert Bradshaw
2015-08-28
1
-2
/
+2
[prev]
[next]