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
/
Parsing.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Keep 'extern' visibility in context of struct/union to properly infer 'noexce...
Matus Valo
2023-05-03
1
-1
/
+1
*
Fix parsing of bracketed then called context managers (GH-5404)
da-woods
2023-04-28
1
-0
/
+4
*
Add compiler directive to disable the default exception propagation for legac...
Matus Valo
2022-12-06
1
-0
/
+6
*
Remove "from x cimport class C" (#4904)
da-woods
2022-10-11
1
-15
/
+8
*
PEP614 decorators (#4991)
da-woods
2022-10-01
1
-8
/
+1
*
[ENH] Propagate exceptions from `cdef` functions by default (#4670)
Ashwin Srinath
2022-09-10
1
-8
/
+57
*
Remove `p_lambdef_nocond` from the parser, following Python 3.9+. (GH-4992)
da-woods
2022-09-05
1
-20
/
+8
*
Allow C code assertions in tests by defining regular expressions in module di...
scoder
2022-07-30
1
-0
/
+3
*
Remove unused function "looking_at_call" from parser (GH-4922)
da-woods
2022-07-26
1
-10
/
+0
*
Refactor "with" parsing code to reduce code duplication.
Stefan Behnel
2022-07-17
1
-19
/
+18
*
Enable parenthesized context managers (GH-4814)
da-woods
2022-07-17
1
-13
/
+49
*
Make it easier to restore scanner state during parsing phase (GH-4813)
da-woods
2022-07-16
1
-13
/
+18
*
Refactor parsing of named expressions to bring it closer to CPython's LL pars...
da-woods
2022-07-16
1
-36
/
+66
*
Reject invalid spellings of Ellipsis (GH-4868)
0dminnimda
2022-07-04
1
-9
/
+7
*
Also add a deprecation warning for the compile time DEF statement.
Stefan Behnel
2022-02-25
1
-0
/
+4
*
Add a deprecation warning to usages of the compile time "IF" statement.
Stefan Behnel
2022-02-24
1
-0
/
+4
*
Remove unused imports (GH-4643)
Matus Valo
2022-02-15
1
-1
/
+1
*
Implement PEP 572: Named/Assignment Expressions (GH-3691)
da-woods
2022-01-27
1
-18
/
+35
*
Fix type declaration in parser.
Stefan Behnel
2021-07-26
1
-2
/
+2
*
Fix the type of the 'self' argument in a cdef staticmethod declared in a pxd ...
da-woods
2021-07-26
1
-9
/
+6
*
Assume that any assignment to a variable that has a PEP-526 type annotation i...
Stefan Behnel
2021-05-22
1
-1
/
+5
*
Avoid string concatenation where we can just compare characters separately.
Stefan Behnel
2021-05-03
1
-7
/
+4
*
Self documenting f-strings (GH-3939)
davfsa
2021-05-03
1
-11
/
+38
*
Modernise code: use set literals/comprehensions where possible, frozenset whe...
Stefan Behnel
2021-04-13
1
-19
/
+23
*
Allow const declarations in nested template arguments (GH-3886)
Ashwin Srinath
2020-11-05
1
-1
/
+1
*
Improve error reporting when users mistakenly write "&&" or "||" instead of P...
scoder
2020-10-21
1
-6
/
+13
*
Add support for forwarding references (GH-3821)
Ashwin Srinath
2020-10-03
1
-5
/
+6
*
Declare "scanner.sy" as "unicode" string to optimise its usage.
Stefan Behnel
2020-09-30
1
-9
/
+9
*
Join '*' and '**' parsing in declarators to avoid differences for 'const' par...
Stefan Behnel
2020-09-30
1
-23
/
+16
*
Add doc support for cpdef enum (GH-3813)
matham
2020-09-10
1
-1
/
+3
*
Allow cast to ctuple (GH-3812)
da-woods
2020-09-05
1
-3
/
+6
*
Add support for C++ scoped enums with "enum class" and "enum struct" (GH-3640)
Ashwin Srinath
2020-06-18
1
-7
/
+42
*
Remove dead code.
Stefan Behnel
2020-06-17
1
-1
/
+0
*
Fix many indentation and whitespace issues throughout the code base (GH-3673)
scoder
2020-06-10
1
-14
/
+14
*
Merge branch '0.29.x'
Stefan Behnel
2020-06-10
1
-14
/
+26
|
\
|
*
Correct the positions reported for errors in f-strings.
Stefan Behnel
2020-06-10
1
-14
/
+26
*
|
Merge branch '0.29.x'
Stefan Behnel
2020-05-15
1
-1
/
+1
|
\
\
|
|
/
|
*
Allow decorators on nested async-def functions.
Stefan Behnel
2020-05-15
1
-1
/
+1
*
|
Reimplement the "assert" statement by delegating the exception raising to a R...
Stefan Behnel
2020-04-29
1
-1
/
+1
*
|
Minor code simplification.
Stefan Behnel
2020-04-29
1
-5
/
+1
*
|
Implement PEP-563, annotations as strings (GH-3285)
da-woods
2020-01-04
1
-4
/
+15
*
|
Allow docstrings in c++ classes (GH-3183)
samaingw
2019-10-18
1
-0
/
+4
*
|
Adds positional only args support (PEP 570)
Josh Tobin
2019-04-27
1
-1
/
+15
*
|
Merge branch '0.29.x'
Stefan Behnel
2019-04-23
1
-1
/
+2
|
\
\
|
|
/
|
*
Fix a compiler crash when non-ASCII characters appear in unprefixed strings i...
Stefan Behnel
2019-04-23
1
-1
/
+2
*
|
Merge pull request #2860 from noamher/conditional-gilstatnode
Stefan Behnel
2019-02-26
1
-1
/
+9
|
\
\
|
*
|
Allow condition in GILStatNode
Noam Hershtig
2019-02-23
1
-1
/
+9
*
|
|
Merge branch 'master' into faster_absolute_reimports
Stefan Behnel
2019-02-22
1
-2
/
+2
|
\
\
\
|
|
/
/
|
*
|
Intern all identifier strings in the parser.
Stefan Behnel
2019-02-22
1
-2
/
+2
*
|
|
GH-2854: Reimplement absolute module imports to speed them up, especially und...
Stefan Behnel
2019-02-22
1
-6
/
+2
|
/
/
[next]