summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorBatuhan Taskaya <batuhan@python.org>2022-01-07 21:05:28 (GMT)
committerGitHub <noreply@github.com>2022-01-07 21:05:28 (GMT)
commitd382f7ee0b98e4ab6ade9384268f25c06be462ad (patch)
tree17e46a04ab58a02dfc560d560ec7966f78d4a493 /Parser
parent6d07a9fb7cb31433c376a1aa20ea32001da0a418 (diff)
downloadcpython-d382f7ee0b98e4ab6ade9384268f25c06be462ad.zip
cpython-d382f7ee0b98e4ab6ade9384268f25c06be462ad.tar.gz
cpython-d382f7ee0b98e4ab6ade9384268f25c06be462ad.tar.bz2
bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)
Automerge-Triggered-By: GH:isidentical
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Python.asdl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/Python.asdl b/Parser/Python.asdl
index 4a61bda..e9423a7 100644
--- a/Parser/Python.asdl
+++ b/Parser/Python.asdl
@@ -75,7 +75,7 @@ module Python
-- x < 4 < 3 and (x < 4) < 3
| Compare(expr left, cmpop* ops, expr* comparators)
| Call(expr func, expr* args, keyword* keywords)
- | FormattedValue(expr value, int? conversion, expr? format_spec)
+ | FormattedValue(expr value, int conversion, expr? format_spec)
| JoinedStr(expr* values)
| Constant(constant value, string? kind)