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
/
Compiler
/
Nodes.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix temp variable handling for the super() class cell. (GH-3289)
Stefan Behnel
2019-12-28
1
-4
/
+14
*
Fix compile errors in CPython 3.8b1 due to the tp_print/tp_vectorcall slots.
Stefan Behnel
2019-05-31
1
-0
/
+3
*
Fix nogil status for error handling in line tracing code of with/try-finally ...
Stefan Behnel
2019-03-03
1
-1
/
+3
*
GH-1461: Include the signature line of cdef functions in the import-time line...
gh1461_cover_sig_line
Stefan Behnel
2019-03-01
1
-0
/
+3
*
Bring the doc string C constant back all for special methods, except for the ...
Stefan Behnel
2019-02-09
1
-1
/
+1
*
Bring the doc string C constant back for special methods, except for the buff...
Stefan Behnel
2019-02-09
1
-1
/
+1
*
Avoid the C compiler warning about an unused docstring constant for "__getbuf...
Stefan Behnel
2019-02-09
1
-2
/
+2
*
Add some guards and branch hints to the dict lookup optimisation code.
Stefan Behnel
2019-02-09
1
-3
/
+3
*
Move dict version checking code into a separate utility code section since it...
Stefan Behnel
2019-02-08
1
-0
/
+2
*
Make the cpdef override check work with Python subclasses of extension types ...
Stefan Behnel
2019-02-08
1
-19
/
+14
*
Clean up insertion points after use in prange code since they conflict with t...
Stefan Behnel
2019-02-02
1
-5
/
+8
*
Correct the handling of line tracing errors on try-statements. Previously, th...
Stefan Behnel
2018-10-19
1
-4
/
+6
*
Rename check_size extend option to ignore.
Robert Bradshaw
2018-10-02
1
-1
/
+1
*
Rename the options of the "check_size" feature to make them more obvious: "wa...
Stefan Behnel
2018-09-29
1
-2
/
+2
*
Minor cleanups of 'check_size' implementation (#2627).
Stefan Behnel
2018-09-29
1
-0
/
+1
*
MAINT: fixes from review
mattip
2018-09-25
1
-2
/
+2
*
ENH: add check_size option to ctypedef class for external classes
mattip
2018-09-25
1
-0
/
+4
*
Simplify some code.
Stefan Behnel
2018-09-23
1
-2
/
+2
*
Make switch-statement work nicely with line tracing.
Stefan Behnel
2018-09-23
1
-2
/
+14
*
Merge pull request #2615 from robertwb/cpp-py-exception
Robert Bradshaw
2018-09-22
1
-2
/
+4
|
\
|
*
Update Nodes.py
Robert Bradshaw
2018-09-20
1
-1
/
+0
|
*
Allow catching both C++ and Python exceptions.
Robert Bradshaw
2018-09-20
1
-2
/
+5
*
|
Clean up directives to distinguish between those that belong to a function or...
Stefan Behnel
2018-09-22
1
-3
/
+3
|
/
*
Check some child nodes against the correct nogil context when they are actual...
Stefan Behnel
2018-09-19
1
-4
/
+6
*
Discard invisible type annotations from cdef functions after applying them, a...
Stefan Behnel
2018-09-19
1
-0
/
+4
*
Work around a crash for now.
Stefan Behnel
2018-09-15
1
-1
/
+3
*
Initial (incomplete) attempt at supporting the Py3.7 exception state stack.
Stefan Behnel
2018-09-15
1
-0
/
+3
*
Support "@cython.nogil" decorator in pure mode.
Stefan Behnel
2018-09-14
1
-3
/
+4
*
Ignore exact function pointer type in PyCFunction pointer comparison since th...
Stefan Behnel
2018-06-17
1
-1
/
+1
*
Speed up cpdef method override checks also for Python subclasses with slots b...
Stefan Behnel
2018-06-08
1
-2
/
+2
*
Add code comment about a future improvement.
Stefan Behnel
2018-06-08
1
-0
/
+4
*
Use dict version guards to avoid the attribute lookup on cpdef method calls f...
Stefan Behnel
2018-06-08
1
-0
/
+42
*
Make cpdef methods overridable in Python classes with slots (which do not hav...
Stefan Behnel
2018-05-27
1
-1
/
+3
*
Merge branch '0.28.x'
Stefan Behnel
2018-05-27
1
-3
/
+1
|
\
|
*
Revert "Make cpdef methods overridable in Python classes with slots (which do...
Stefan Behnel
2018-05-27
1
-3
/
+1
*
|
Intern some identifier names that are likely to be otherwise interned anyway.
Stefan Behnel
2018-05-18
1
-2
/
+2
*
|
Remove permanent output scanning code that eats quite a bit of processing time.
Stefan Behnel
2018-05-17
1
-1
/
+2
*
|
Use dict versioning in Py3.6+ to make the lookup of Python module globals alm...
Stefan Behnel
2018-05-04
1
-4
/
+4
|
/
*
Make cpdef methods overridable in Python classes with slots (which do not hav...
Stefan Behnel
2018-05-03
1
-1
/
+3
*
Misc typos
luz.paz
2018-03-12
1
-1
/
+1
*
Re-enable "auto late includes" based on a preliminary directive. We have the ...
Stefan Behnel
2018-03-03
1
-1
/
+3
*
Explicitly re-allow memoryviews in default argument structs after disallowing...
Stefan Behnel
2018-02-23
1
-1
/
+1
*
Merge branch 'master' into readonly_buffers
scoder
2018-02-11
1
-159
/
+515
|
\
|
*
Move user branch hint generation from IfClauseNode into IfStatNode to include...
Stefan Behnel
2018-02-10
1
-17
/
+25
|
*
Inject branch hints for user conditionals that raise exceptions as we can exp...
Stefan Behnel
2018-02-10
1
-1
/
+16
|
*
Use a specialised GenericGetAttr implementation for the "tp_getattro" slot wh...
Stefan Behnel
2018-01-25
1
-0
/
+20
|
*
Use specialised default return handling code for "return None" in generators ...
Stefan Behnel
2018-01-21
1
-12
/
+16
|
*
C functions without args should be declared as f(void)
Jeroen Demeyer
2018-01-16
1
-1
/
+4
|
*
Merge pull request #2033 from jdemeyer/multiple_inheritance_no_dict
scoder
2018-01-16
1
-20
/
+9
|
|
\
|
|
*
Add runtime checks for multiple inheritance
Jeroen Demeyer
2018-01-16
1
-20
/
+9
[next]