Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4dbba6b
gh-129515: Clarify syntax error messages for conditional expressions
sergey-miryanov Feb 9, 2025
6686090
Update news
sergey-miryanov Feb 9, 2025
b204fdb
Replace simple_stmt_without_expressions with explicit invalid_ifexp_*
sergey-miryanov Feb 9, 2025
aa3f17d
Merge branch 'main' into gh-129515-ifexp-syntax-error
sergey-miryanov Feb 9, 2025
8acc305
elif after else
sergey-miryanov Feb 9, 2025
b43b3a2
Merge branch 'gh-129515-ifexp-syntax-error' of github.com:sergey-miry…
sergey-miryanov Feb 10, 2025
48e4796
Merge branch 'main' into gh-129515-ifexp-syntax-error
sergey-miryanov Feb 10, 2025
60c5066
Simplify test_ifexp_* tests
sergey-miryanov Feb 10, 2025
c33b08f
Remove an accidentally added test line
sergey-miryanov Feb 10, 2025
8afe66a
Merge branch 'main' into gh-129515-ifexp-syntax-error
pablogsal Feb 10, 2025
7e4ed1b
Merge branch 'main' into gh-129515-ifexp-syntax-error
sergey-miryanov Feb 11, 2025
db2784e
Simplify invalid_expression rule
sergey-miryanov Feb 11, 2025
c09bf42
Update whatsnew for 3.14
sergey-miryanov Feb 11, 2025
c66fbe3
Fix references in whatsnew
sergey-miryanov Feb 11, 2025
79a046c
Fix reference to if_expr
sergey-miryanov Feb 11, 2025
2eaa968
Merge branch 'main' into gh-129515-ifexp-syntax-error
sergey-miryanov Feb 12, 2025
c1ef4ca
Fix code-block in whatsnew
sergey-miryanov Feb 12, 2025
63b4400
Merge branch 'main' into gh-129515-ifexp-syntax-error
sergey-miryanov Feb 13, 2025
903d9b6
Fix invalid rule for ifexp if statement given after else
sergey-miryanov Feb 13, 2025
b1c0ab4
Update doc-string in test_syntax
sergey-miryanov Feb 13, 2025
a33a705
Update Doc/whatsnew/3.14.rst
sergey-miryanov Feb 16, 2025
9c711ae
Update Misc/NEWS.d/next/Core_and_Builtins/2025-02-09-11-30-38.gh-issu…
sergey-miryanov Feb 17, 2025
b4a1c55
Update tests and whatsnew entry
sergey-miryanov Feb 17, 2025
c468622
Merge branch 'gh-129515-ifexp-syntax-error' of github.com:sergey-miry…
sergey-miryanov Feb 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Misc/NEWS.d/next/Core_and_Builtins/2025-02-09-11-30-38.gh-issu…
…e-129515.3L3vmo.rst

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
  • Loading branch information
sergey-miryanov and picnixz authored Feb 17, 2025
commit 9c711ae5c285f2fe8636d7b371e70dc8b032796c
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Clarify syntax error messages for conditional expressions if statement
specified before ``if`` or after ``else`` keywords.
Clarify syntax error messages for conditional expressions when a statement
is specified before an :keyword:`if` or after an :keyword:`else` keyword.
Loading