index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_fstring.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...
Miss Islington (bot)
2022-02-16
1
-0/+2
*
bpo-46503: Prevent an assert from firing when parsing some invalid \N sequenc...
Miss Islington (bot)
2022-01-25
1
-0/+4
*
[3.9] Fix the test suite for the old parser (GH-27749)
Pablo Galindo Salgado
2021-08-13
1
-0/+2
*
[3.9] bpo-44885: Correct the ast locations of f-strings with format specs and...
Pablo Galindo Salgado
2021-08-12
1
-11/+29
*
[3.9] bpo-43272: Fix old parser test failures for backported grammar construc...
Pablo Galindo
2021-02-20
1
-4/+4
*
[3.9] bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067)...
Pablo Galindo
2021-01-03
1
-0/+53
*
Fixed mistake in test for f-string error description (GH-22036) (GH-22059) (G...
Miss Islington (bot)
2020-09-02
1
-1/+1
*
bpo-41681: Fix for `f-string/str.format` error description when using 2 `,` i...
Miss Islington (bot)
2020-09-01
1
-0/+20
*
[3.9] bpo-41084: Fix test_fstring failure when using the old parser (GH-21212)
Lysandros Nikolaou
2020-06-29
1
-4/+8
*
bpo-41084: Adjust message when an f-string expression causes a SyntaxError (G...
Miss Islington (bot)
2020-06-27
1
-3/+7
*
[3.9] bpo-41069: Make TESTFN and the CWD for tests containing non-ascii chara...
Serhiy Storchaka
2020-06-25
1
-2/+3
*
bpo-40904: Fix segfault in the new parser with f-string containing yield stat...
Miss Islington (bot)
2020-06-08
1
-0/+2
*
[3.9] bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20...
Lysandros Nikolaou
2020-05-26
1
-1/+13
*
bpo-40246: Fix test_fstring when run with the old parser (GH-20402)
Lysandros Nikolaou
2020-05-26
1
-1/+7
*
bpo-40593: Improve syntax errors for invalid characters in source code. (GH-2...
Serhiy Storchaka
2020-05-12
1
-1/+1
*
bpo-40246: Revert reporting of invalid string prefixes (GH-19888)
Lysandros Nikolaou
2020-05-04
1
-1/+1
*
bpo-40443: Remove unused imports in tests (GH-19804)
Victor Stinner
2020-04-30
1
-2/+0
*
bpo-40334: Fix shifting of nested f-strings in the new parser (GH-19771)
Lysandros Nikolaou
2020-04-29
1
-2/+1
*
bpo-40334: Rename PyConfig.use_peg to _use_peg_parser (GH-19670)
Victor Stinner
2020-04-23
1
-1/+2
*
bpo-40334: PEP 617 implementation: New PEG parser for CPython (GH-19503)
Pablo Galindo
2020-04-22
1
-1/+3
*
bpo-40267: Fix message when last input character produces a SyntaxError (GH-1...
Lysandros Nikolaou
2020-04-15
1
-1/+1
*
Add double quote cases to invalid prefix tests (GH-19489)
Pablo Galindo
2020-04-13
1
-4/+5
*
bpo-40246: Report a better error message for invalid string prefixes (GH-19476)
Lysandros Nikolaou
2020-04-12
1
-1/+1
*
bpo-32912: Revert SyntaxWarning on invalid escape sequences. (GH-15195)
Gregory P. Smith
2019-08-10
1
-1/+1
*
Fix typos in docs, comments and test assert messages (#14872)
Min ho Kim
2019-07-21
1
-1/+1
*
bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...
Eric V. Smith
2019-05-27
1
-0/+18
*
bpo-36817: Do not decrement reference for expr_text on fstring = parsing fail...
Pablo Galindo
2019-05-12
1
-0/+2
*
bpo-36817: Add f-string debugging using '='. (GH-13123)
Eric V. Smith
2019-05-08
1
-0/+109
*
bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)
Anthony Sottile
2019-01-13
1
-19/+13
*
bpo-35494: Improve syntax error messages for unbalanced parentheses in f-stri...
Serhiy Storchaka
2019-01-12
1
-13/+23
*
bpo-33306: Improve SyntaxError messages for unbalanced parentheses. (GH-6516)
Serhiy Storchaka
2018-12-17
1
-4/+8
*
bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652)
Serhiy Storchaka
2018-10-19
1
-1/+1
*
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
Serhiy Storchaka
2018-09-27
1
-8/+16
*
bpo-30465: Fix lineno and col_offset in fstring AST nodes (#1800)
Ćukasz Langa
2017-09-07
1
-0/+248
*
bpo-30682: Removed a too-strict assertion that failed for certain f-strings. ...
ericvsmith
2017-06-16
1
-0/+6
*
bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1...
Serhiy Storchaka
2017-06-08
1
-0/+10
*
bpo-29104: Fixed parsing backslashes in f-strings. (#490)
Serhiy Storchaka
2017-05-25
1
-0/+14
*
Issue #28739: f-string expressions no longer accepted as docstrings and
Serhiy Storchaka
2016-12-11
1
-10/+10
*
Fixed issue #28633: segfault when concatenating bytes literal and f-string.
Eric V. Smith
2016-11-07
1
-0/+7
*
Update test_no_escapes_for_braces to clarify behavior with a docstring and ex...
Jason R. Coombs
2016-11-06
1
-5/+8
*
Additionally show that a backslash-escaped opening brace is treated as a lite...
Jason R. Coombs
2016-11-06
1
-0/+1
*
Add an additional test with a newline, one that's very similar to test_parens...
Jason R. Coombs
2016-11-06
1
-0/+1
*
Update the f-string test broken in issue #28385.
Serhiy Storchaka
2016-10-31
1
-1/+1
*
Add another f-string comment test, to make sure # are being caught in the rig...
Eric V. Smith
2016-09-11
1
-0/+2
*
Make an f-string error message more exact and consistent.
Eric V. Smith
2016-09-11
1
-1/+2
*
Issue 27948: Allow backslashes in the literal string portion of f-strings, bu...
Eric V. Smith
2016-09-10
1
-46/+86
*
Closes issue 27921: Disallow backslashes anywhere in f-strings. This is a tem...
Eric V. Smith
2016-09-03
1
-91/+51
*
Issue #27626: Further spelling fixes for 3.6
Martin Panter
2016-07-28
1
-1/+1
*
Fix issue 26287: While handling FORMAT_VALUE opcode, the top of stack was bei...
Eric V. Smith
2016-02-05
1
-0/+11
*
f-strings: More tests for empty expressions along with missing closing braces.
Eric V. Smith
2015-09-23
1
-0/+7
[next]