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
/
FlowControl.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
repair deep-copying (and pickling) of the control flow state in compiled Cyth...
Stefan Behnel
2016-01-16
1
-0
/
+8
*
remove unused imports
Stefan Behnel
2015-08-18
1
-4
/
+1
*
seems like the explicit deepcopy helpers in the control flow state objects ar...
Stefan Behnel
2015-08-18
1
-20
/
+2
*
fix compiler crash due to infinite recursing while deep copying finally clauses
Stefan Behnel
2015-08-17
1
-0
/
+1
*
make dict iteration compatible with Py2/Py3
Stefan Behnel
2015-07-25
1
-2
/
+2
*
deep-copy finally clauses of try-finally statements earlier to properly suppo...
Stefan Behnel
2015-07-12
1
-13
/
+32
*
implement 'async for' loop statement (PEP 492)
Stefan Behnel
2015-05-25
1
-0
/
+6
*
constant-fold expressions generated for type inference during control flow an...
Stefan Behnel
2014-11-22
1
-7
/
+8
*
fix crash with starred assignments where IndexNode generated for type inferen...
Stefan Behnel
2014-11-08
1
-3
/
+3
*
fix type inference for starred assignments
Stefan Behnel
2014-11-08
1
-1
/
+5
*
make item types of tuple/array unpacking inferable and institutionalise the I...
Stefan Behnel
2014-11-08
1
-3
/
+3
*
Merge pull request #295 from andreasvc/master
Robert Bradshaw
2014-10-07
1
-1
/
+1
|
\
|
*
'unused' prefix to suppress warnings of unused variables
Andreas van Cranenburgh
2014-10-07
1
-1
/
+1
|
*
Ignore any unused entry that starts with '_'.
Andreas van Cranenburgh
2014-05-16
1
-1
/
+1
*
|
properly integrate Python class nodes into type inference
Stefan Behnel
2014-08-17
1
-4
/
+2
*
|
simplify WithTargetAssignmentStatNode and make it more robust against replace...
Stefan Behnel
2014-08-11
1
-1
/
+1
*
|
use explicit relative imports everywhere and enable absolute imports by default
Stefan Behnel
2014-06-17
1
-8
/
+10
|
/
*
CF: reference doesn't mean it's not null
Vitja Makarov
2014-01-26
1
-6
/
+8
*
CF: Fix try/except, try/finally bug
Vitja Makarov
2014-01-26
1
-0
/
+2
*
fix some unnecessary Py2-isms in the code base
Stefan Behnel
2014-01-17
1
-2
/
+2
*
fix control flow analysis for del-ing non-names
Stefan Behnel
2013-12-31
1
-0
/
+2
*
Don't warn on un-assigned error types.
Robert Bradshaw
2013-12-18
1
-1
/
+2
*
discard constant True condition in while loops
Stefan Behnel
2013-12-01
1
-1
/
+2
*
revert incomplete fix for ticket #600: not enough for more complex scoping an...
Stefan Behnel
2013-11-22
1
-11
/
+3
*
fix T600: lookup of iterables in genexpr must use outer scope
Stefan Behnel
2013-11-17
1
-3
/
+11
*
Don't warn on uninitialized setting of complex.real/imag
Robert Bradshaw
2013-09-19
1
-0
/
+1
*
Merge pull request #233 from vitek/_type_inference_new
scoder
2013-08-08
1
-11
/
+22
|
\
|
*
Assignmment based type inference
Vitja Makarov
2013-05-22
1
-11
/
+22
*
|
Fix error_on_uninitialized condition
Vitja Makarov
2013-06-02
1
-3
/
+3
*
|
Add error_on_uninitialized option and disable it for pyregr testsuite
Vitja Makarov
2013-05-23
1
-1
/
+3
|
/
*
refactor comprehensions by removing separate target node (to simplify a futur...
Stefan Behnel
2013-03-18
1
-1
/
+0
*
report unused variables also across closures
Stefan Behnel
2013-02-14
1
-2
/
+1
*
prevent unused '_' variables from appearing in C code
Stefan Behnel
2013-02-14
1
-11
/
+13
*
Speccial case the unused '_' in warnings.
Robert Bradshaw
2013-02-13
1
-1
/
+2
*
clean up and improve static type declarations in FlowControl.py a bit
Stefan Behnel
2013-02-04
1
-47
/
+48
*
slight code simplification
Stefan Behnel
2013-02-04
1
-7
/
+6
*
enable control flow analysis for stack allocated structured variables (struct...
Stefan Behnel
2013-01-27
1
-5
/
+32
*
rewrite except-as semantics using try-finally - seems to be the easiest way t...
Stefan Behnel
2013-01-26
1
-2
/
+0
*
make except-as delete the target after the except clause
Stefan Behnel
2013-01-26
1
-0
/
+2
*
avoid old-style classes in flow analysis code
Stefan Behnel
2012-12-30
1
-2
/
+2
*
fix build by removing unused code
Stefan Behnel
2012-12-30
1
-4
/
+2
*
improve initialisation analysis for entries from outer closures
Stefan Behnel
2012-12-30
1
-11
/
+27
*
fix cross-closure analysis for names redefined inside of a closure function
Stefan Behnel
2012-12-29
1
-0
/
+2
*
reimplement cross-closure type inference using a dedicated LocalEntry class f...
Stefan Behnel
2012-12-26
1
-3
/
+5
*
C++ iterator type inference
Robert Bradshaw
2012-07-02
1
-4
/
+2
*
Infer variable as pyobject when del-ed, fix #768
Vitja Makarov
2012-05-10
1
-0
/
+13
*
mark_forloop_target: backport recent changes to MarkAssignments
Vitja Makarov
2012-05-08
1
-14
/
+33
*
ControlFlowAnalysis: be comaptible with MarkAssignments
Vitja Makarov
2012-05-08
1
-12
/
+69
*
ControlFlowState object instead of set() for convinience
Vitja Makarov
2012-01-12
1
-3
/
+28
*
DefNode: Move assignemnt synthesis to AnaylyseDeclarations
Vitja Makarov
2012-01-12
1
-6
/
+0
[next]