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
/
Coroutine.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
guard the usage of the new PEP 492 async type slots by an explicit feature macro
Stefan Behnel
2016-07-31
1
-7
/
+7
*
replace generic "COMPILING_IN_*" C macros with feature specific guards that a...
Stefan Behnel
2016-07-30
1
-12
/
+12
*
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
*
follow PEP492 change in Py3.5.2 that makes __aiter__() a simple function inst...
Stefan Behnel
2016-06-11
1
-3
/
+80
*
add "__module__" attribute to coroutines and generators
Stefan Behnel
2016-05-16
1
-8
/
+14
*
Merge branch '0.23.x'
Stefan Behnel
2016-02-12
1
-2
/
+1
|
\
|
*
prevent CPython from swallowing the StopIteration return value in Coroutine.s...
Stefan Behnel
2016-02-12
1
-2
/
+1
*
|
Windows: Don't use _PyObject_GC_[UN]TRACK to fix linker error
Lisandro Dalcin
2015-10-05
1
-5
/
+1
*
|
Windows: Quick fix coroutine utility code for MSVC
Lisandro Dalcin
2015-10-05
1
-2
/
+2
*
|
Merge branch '0.23.x'
Stefan Behnel
2015-09-28
1
-13
/
+30
|
\
\
|
|
/
|
*
automatically register with "backports_abc" module if available
Stefan Behnel
2015-09-28
1
-13
/
+30
*
|
remove useless code
Stefan Behnel
2015-09-28
1
-5
/
+1
*
|
reuse current thread state in more places
Stefan Behnel
2015-09-20
1
-1
/
+9
*
|
fix one more helper function after PyThreadState_GET() change
Stefan Behnel
2015-09-20
1
-0
/
+2
*
|
avoid some redundant calls to PyThreadState_GET() to reduce locking etc. duri...
Stefan Behnel
2015-09-20
1
-10
/
+9
*
|
streamline exception type tests
Stefan Behnel
2015-09-17
1
-4
/
+6
|
/
*
fix crash where Coroutine deallocation could execute Python code to print a w...
Stefan Behnel
2015-08-17
1
-0
/
+3
*
hide unused label in Py3.4+
Stefan Behnel
2015-08-16
1
-2
/
+2
*
discard C++ style comment in C helper file
Stefan Behnel
2015-08-14
1
-1
/
+2
*
adapt coroutine docstrings to CPython
Stefan Behnel
2015-08-09
1
-3
/
+3
*
fix coroutine property name "cr_yieldfrom" -> "cr_await"
Stefan Behnel
2015-08-09
1
-1
/
+1
*
replace stupid code in __Pyx_PyGen_FetchStopIterationValue() by fast code
Stefan Behnel
2015-07-18
1
-14
/
+2
*
work around C-API deficiencies in PyPy
Stefan Behnel
2015-07-08
1
-3
/
+12
*
work around missing C-API function PyBytes_FromFormat() in pypy3
Stefan Behnel
2015-07-08
1
-1
/
+6
*
disable "tp_reserved" usage in PyPy (part 2)
Stefan Behnel
2015-07-08
1
-1
/
+1
*
disable "tp_reserved" usage in PyPy
Stefan Behnel
2015-07-08
1
-2
/
+2
*
avoid exit overhead in inlined generator expressions by directly returning th...
Stefan Behnel
2015-07-07
1
-23
/
+1
*
re-establish a simple form of generator inlining for any() and all() that doe...
Stefan Behnel
2015-07-06
1
-0
/
+22
*
remove ABC implementations from imports patching code and instead only regist...
Stefan Behnel
2015-07-05
1
-246
/
+57
*
add "gi_yieldfrom" to generators and "cr_await" to coroutines (Python issue 2...
Stefan Behnel
2015-06-25
1
-0
/
+4
*
adapt coroutine implementation to latest Py3.5
Stefan Behnel
2015-06-23
1
-26
/
+36
*
improve error message
Stefan Behnel
2015-06-20
1
-1
/
+1
*
rename "gi_running" attribute of coroutine type to "cr_running" and adapt som...
Stefan Behnel
2015-06-19
1
-15
/
+28
*
re-implement Coroutine.__await__() using a dedicated wrapper type to avoid ha...
Stefan Behnel
2015-06-11
1
-26
/
+168
*
avoid GCC warning about unused function
Stefan Behnel
2015-06-04
1
-0
/
+3
*
fix C++ compiler warning
Stefan Behnel
2015-06-04
1
-2
/
+2
*
avoid GCC warning about unused function
Stefan Behnel
2015-06-04
1
-2
/
+2
*
fix indentation in C code
Stefan Behnel
2015-05-30
1
-1
/
+2
*
support "@types.coroutine" marked generators as coroutines in Py3.5
Stefan Behnel
2015-05-29
1
-0
/
+7
*
backport PyAsyncMethods and tp_as_async slot to all Py3.x versions (not only ...
Stefan Behnel
2015-05-29
1
-40
/
+67
*
fix indentation in abc patching code
Stefan Behnel
2015-05-28
1
-13
/
+12
*
minor code cleanup
Stefan Behnel
2015-05-28
1
-8
/
+8
*
Revert "make Coroutine type a non-iterable/iterator and instead let __await__...
Stefan Behnel
2015-05-28
1
-112
/
+12
*
make Coroutine ABC inherit from Awaitable
Stefan Behnel
2015-05-28
1
-43
/
+44
*
remove some unnecessary type slot setting (already inherited by PyType_Ready())
Stefan Behnel
2015-05-28
1
-3
/
+0
*
make Coroutine type a non-iterable/iterator and instead let __await__() retur...
Stefan Behnel
2015-05-28
1
-12
/
+112
[next]