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
Commit message (
Expand
)
Author
Age
Files
Lines
*
fold CYTHON_USE_PYLONG_INTERNALS feature macro into the same initialisation s...
Stefan Behnel
2016-07-31
1
-3
/
+8
*
use new macro in two more places
Stefan Behnel
2016-07-31
1
-2
/
+2
*
add macro indirections that apparently help making pyston happier
Stefan Behnel
2016-07-31
3
-2
/
+5
*
guard the usage of the new PEP 492 async type slots by an explicit feature macro
Stefan Behnel
2016-07-31
2
-18
/
+28
*
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
10
-83
/
+95
*
streamline FetchStopIterationValue()
Stefan Behnel
2016-07-28
1
-25
/
+23
*
move slow code out of the way
Stefan Behnel
2016-07-28
1
-1
/
+1
*
speed up FetchStopIterationValue() by moving slow code out of the way
Stefan Behnel
2016-07-28
1
-1
/
+1
*
use correct (and originally intended) optimisation in CPython instead of *dis...
Stefan Behnel
2016-07-28
1
-1
/
+1
*
speed up delegation of generators and coroutines a little by avoiding an indi...
Stefan Behnel
2016-07-28
1
-1
/
+6
*
Allow conversion of std::complex to/from Python objects.
Robert Bradshaw
2016-06-18
1
-0
/
+32
*
follow PEP492 change in Py3.5.2 that makes __aiter__() a simple function inst...
Stefan Behnel
2016-06-11
1
-3
/
+80
*
Work around missing Cygwin truncl.
Robert Bradshaw
2016-05-17
1
-0
/
+6
*
add "__module__" attribute to coroutines and generators
Stefan Behnel
2016-05-16
1
-8
/
+14
*
avoid code duplication in utility function by using macros
Stefan Behnel
2016-04-22
2
-18
/
+10
*
comment
Stefan Behnel
2016-04-21
1
-1
/
+1
*
support really long paddings in f-string formatting of C integers
Stefan Behnel
2016-04-21
1
-3
/
+3
*
Merge branch '0.24.x'
Robert Bradshaw
2016-04-14
1
-0
/
+4
|
\
|
*
add fallback implementation for PyByteArray_Check() in PyPy
Stefan Behnel
2016-04-06
1
-0
/
+4
*
|
Fix complex division for native complex type.
Robert Bradshaw
2016-04-12
1
-5
/
+32
*
|
Move complex type support into a utility code file.
Robert Bradshaw
2016-04-12
1
-0
/
+255
*
|
implement width based format specs for integer formatting
Stefan Behnel
2016-04-09
1
-25
/
+111
*
|
generalise C type specific string formatting
Stefan Behnel
2016-04-09
1
-1
/
+1
*
|
assure constant declarations in bint->PyUnicode conversion code
Stefan Behnel
2016-04-09
1
-1
/
+1
*
|
replace dead left-over code by the actually intended fast bint->True/False fo...
Stefan Behnel
2016-04-09
1
-9
/
+3
*
|
minor code cleanups
Stefan Behnel
2016-04-09
1
-2
/
+2
*
|
optimise C integer formatting
Stefan Behnel
2016-04-09
1
-32
/
+68
*
|
avoid intermediate PyInt/Long creation when formatting C integer values
Stefan Behnel
2016-04-08
1
-0
/
+62
|
/
*
fix typo in PyPy fallback
Stefan Behnel
2016-03-28
1
-1
/
+1
*
provide fallback implementation for PyObject_Format() in PyPy
Stefan Behnel
2016-03-28
1
-0
/
+4
*
make sure f-string formatting always returns a Unicode string (even when not ...
Stefan Behnel
2016-03-26
1
-3
/
+9
*
fix repeated expression evaluation in f-string implementation for !s/r/a conv...
Stefan Behnel
2016-03-26
1
-2
/
+10
*
reduce string formatting overhead for the very likely case of str values in Py2
Stefan Behnel
2016-03-26
1
-2
/
+7
*
reduce string formatting overhead for the very likely case of integer values
Stefan Behnel
2016-03-26
1
-1
/
+11
*
F strings (PEP 498)
Robert Bradshaw
2016-03-24
2
-0
/
+24
|
\
|
*
simplify code generated for f-string formatting using simple utility functions
Stefan Behnel
2016-03-22
2
-1
/
+20
|
*
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
*
|
Forward declare some memoryview utility code functions.
Robert Bradshaw
2016-03-21
1
-0
/
+5
|
/
*
generally #define PyObject_Malloc() and friends to their PyMem_*() counterpar...
Stefan Behnel
2016-03-17
2
-8
/
+6
*
fall back to PyMem_Malloc() in PyPy (which doesn't have PyObject_Malloc() and...
Stefan Behnel
2016-03-17
1
-0
/
+8
*
Remove deprecated property syntax from MemoryView utility code.
Robert Bradshaw
2016-03-17
1
-58
/
+50
*
Silence a warning about applying unary minus to an unsigned integer
Ian Henriksen
2016-03-03
1
-1
/
+1
*
Merge pull request #493 from Nikratio/master
scoder
2016-02-29
2
-2
/
+3
|
\
|
*
__Pyx_PyInt_TrueDivideObjC: switch comparison order
Nikolaus Rath
2016-02-29
1
-1
/
+2
|
*
FROM_PY_FUNCTION: Cast to sdigit after unary minus, not before
Nikolaus Rath
2016-02-29
1
-1
/
+1
[next]