Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
e1776577
Commit
e1776577
authored
Jun 10, 2020
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '0.29.x'
parents
e19fa590
743365a5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
54 additions
and
15 deletions
+54
-15
CHANGES.rst
CHANGES.rst
+3
-0
Cython/Compiler/Parsing.pxd
Cython/Compiler/Parsing.pxd
+2
-1
Cython/Compiler/Parsing.py
Cython/Compiler/Parsing.py
+26
-14
tests/errors/e_fstring.pyx
tests/errors/e_fstring.pyx
+23
-0
No files found.
CHANGES.rst
View file @
e1776577
...
...
@@ -483,6 +483,9 @@ Bugs fixed
*
The
C
++
``
typeid
()``
function
was
allowed
in
C
mode
.
Patch
by
Celelibi
.
(
Github
issue
#
3637
)
*
The
error
position
reported
for
errors
found
in
f
-
strings
was
misleading
.
(
Github
issue
#
3674
)
*
The
new
``
c_api_binop_methods
``
directive
was
added
for
forward
compatibility
,
but
can
only
be
set
to
True
(
the
current
default
value
).
It
can
be
disabled
in
Cython
3.0
.
...
...
Cython/Compiler/Parsing.pxd
View file @
e1776577
...
...
@@ -69,7 +69,8 @@ cdef bint check_for_non_ascii_characters(unicode string)
@
cython
.
locals
(
systr
=
unicode
,
is_python3_source
=
bint
,
is_raw
=
bint
)
cdef
p_string_literal
(
PyrexScanner
s
,
kind_override
=*
)
cdef
_append_escape_sequence
(
kind
,
builder
,
unicode
escape_sequence
,
PyrexScanner
s
)
@
cython
.
locals
(
i
=
Py_ssize_t
,
size
=
Py_ssize_t
,
c
=
Py_UCS4
)
cdef
tuple
_f_string_error_pos
(
pos
,
string
,
Py_ssize_t
i
)
@
cython
.
locals
(
i
=
Py_ssize_t
,
size
=
Py_ssize_t
,
c
=
Py_UCS4
,
next_start
=
Py_ssize_t
)
cdef
list
p_f_string
(
PyrexScanner
s
,
unicode_value
,
pos
,
bint
is_raw
)
@
cython
.
locals
(
i
=
Py_ssize_t
,
size
=
Py_ssize_t
,
c
=
Py_UCS4
,
quote_char
=
Py_UCS4
,
NO_CHAR
=
Py_UCS4
)
cdef
tuple
p_f_string_expr
(
PyrexScanner
s
,
unicode_value
,
pos
,
Py_ssize_t
starting_index
,
bint
is_raw
)
...
...
Cython/Compiler/Parsing.py
View file @
e1776577
...
...
@@ -880,6 +880,7 @@ def p_string_literal(s, kind_override=None):
pos
=
s
.
position
()
is_python3_source
=
s
.
context
.
language_level
>=
3
has_non_ascii_literal_characters
=
False
string_start_pos
=
(
pos
[
0
],
pos
[
1
],
pos
[
2
]
+
len
(
s
.
systring
))
kind_string
=
s
.
systring
.
rstrip
(
'"
\
'
'
).
lower
()
if
len
(
kind_string
)
>
1
:
if
len
(
set
(
kind_string
))
!=
len
(
kind_string
):
...
...
@@ -963,7 +964,7 @@ def p_string_literal(s, kind_override=None):
s
.
error
(
"bytes can only contain ASCII literal characters."
,
pos
=
pos
)
bytes_value
=
None
if
kind
==
'f'
:
unicode_value
=
p_f_string
(
s
,
unicode_value
,
pos
,
is_raw
=
'r'
in
kind_string
)
unicode_value
=
p_f_string
(
s
,
unicode_value
,
string_start_
pos
,
is_raw
=
'r'
in
kind_string
)
s
.
next
()
return
(
kind
,
bytes_value
,
unicode_value
)
...
...
@@ -1035,6 +1036,10 @@ _parse_escape_sequences_raw, _parse_escape_sequences = [re.compile((
for
is_raw
in
(
True
,
False
)]
def
_f_string_error_pos
(
pos
,
string
,
i
):
return
(
pos
[
0
],
pos
[
1
],
pos
[
2
]
+
i
+
1
)
# FIXME: handle newlines in string
def
p_f_string
(
s
,
unicode_value
,
pos
,
is_raw
):
# Parses a PEP 498 f-string literal into a list of nodes. Nodes are either UnicodeNodes
# or FormattedValueNodes.
...
...
@@ -1042,15 +1047,13 @@ def p_f_string(s, unicode_value, pos, is_raw):
next_start
=
0
size
=
len
(
unicode_value
)
builder
=
StringEncoding
.
UnicodeLiteralBuilder
()
error_pos
=
list
(
pos
)
# [src, line, column]
_parse_seq
=
_parse_escape_sequences_raw
if
is_raw
else
_parse_escape_sequences
while
next_start
<
size
:
end
=
next_start
error_pos
[
2
]
=
pos
[
2
]
+
end
# FIXME: handle newlines in string
match
=
_parse_seq
(
unicode_value
,
next_start
)
if
match
is
None
:
error
(
tuple
(
error_pos
),
"Invalid escape sequence"
)
error
(
_f_string_error_pos
(
pos
,
unicode_value
,
next_start
),
"Invalid escape sequence"
)
next_start
=
match
.
end
()
part
=
match
.
group
()
...
...
@@ -1074,7 +1077,8 @@ def p_f_string(s, unicode_value, pos, is_raw):
if
part
==
'}}'
:
builder
.
append
(
'}'
)
else
:
s
.
error
(
"f-string: single '}' is not allowed"
,
pos
=
tuple
(
error_pos
))
error
(
_f_string_error_pos
(
pos
,
unicode_value
,
end
),
"f-string: single '}' is not allowed"
)
else
:
builder
.
append
(
part
)
...
...
@@ -1095,16 +1099,20 @@ def p_f_string_expr(s, unicode_value, pos, starting_index, is_raw):
nested_depth
=
0
quote_char
=
NO_CHAR
in_triple_quotes
=
False
backslash_reported
=
False
while
True
:
if
i
>=
size
:
s
.
error
(
"missing '}' in format string expression"
)
break
# error will be reported below
c
=
unicode_value
[
i
]
if
quote_char
!=
NO_CHAR
:
if
c
==
'
\
\
'
:
error_pos
=
(
pos
[
0
],
pos
[
1
]
+
i
,
pos
[
2
])
# FIXME: handle newlines in string
error
(
error_pos
,
"backslashes not allowed in f-strings"
)
# avoid redundant error reports along '\' sequences
if
not
backslash_reported
:
error
(
_f_string_error_pos
(
pos
,
unicode_value
,
i
),
"backslashes not allowed in f-strings"
)
backslash_reported
=
True
elif
c
==
quote_char
:
if
in_triple_quotes
:
if
i
+
2
<
size
and
unicode_value
[
i
+
1
]
==
c
and
unicode_value
[
i
+
2
]
==
c
:
...
...
@@ -1123,7 +1131,8 @@ def p_f_string_expr(s, unicode_value, pos, starting_index, is_raw):
elif
nested_depth
!=
0
and
c
in
'}])'
:
nested_depth
-=
1
elif
c
==
'#'
:
s
.
error
(
"format string cannot include #"
)
error
(
_f_string_error_pos
(
pos
,
unicode_value
,
i
),
"format string cannot include #"
)
elif
nested_depth
==
0
and
c
in
'!:}'
:
# allow != as a special case
if
c
==
'!'
and
i
+
1
<
size
and
unicode_value
[
i
+
1
]
==
'='
:
...
...
@@ -1139,12 +1148,13 @@ def p_f_string_expr(s, unicode_value, pos, starting_index, is_raw):
expr_pos
=
(
pos
[
0
],
pos
[
1
],
pos
[
2
]
+
starting_index
+
2
)
# TODO: find exact code position (concat, multi-line, ...)
if
not
expr_str
.
strip
():
error
(
expr_pos
,
"empty expression not allowed in f-string"
)
error
(
_f_string_error_pos
(
pos
,
unicode_value
,
starting_index
),
"empty expression not allowed in f-string"
)
if
terminal_char
==
'!'
:
i
+=
1
if
i
+
2
>
size
:
error
(
expr_pos
,
"invalid conversion char at end of string"
)
pass
# error will be reported below
else
:
conversion_char
=
unicode_value
[
i
]
i
+=
1
...
...
@@ -1157,7 +1167,7 @@ def p_f_string_expr(s, unicode_value, pos, starting_index, is_raw):
start_format_spec
=
i
+
1
while
True
:
if
i
>=
size
:
s
.
error
(
"missing '}' in format specifier"
,
pos
=
expr_pos
)
break
# error will be reported below
c
=
unicode_value
[
i
]
if
not
in_triple_quotes
and
not
in_string
:
if
c
==
'{'
:
...
...
@@ -1179,7 +1189,9 @@ def p_f_string_expr(s, unicode_value, pos, starting_index, is_raw):
format_spec_str
=
unicode_value
[
start_format_spec
:
i
]
if
terminal_char
!=
'}'
:
s
.
error
(
"missing '}' in format string expression', found '%s'"
%
terminal_char
)
error
(
_f_string_error_pos
(
pos
,
unicode_value
,
i
),
"missing '}' in format string expression"
+
(
", found '%s'"
%
terminal_char
if
terminal_char
else
""
))
# parse the expression as if it was surrounded by parentheses
buf
=
StringIO
(
'(%s)'
%
expr_str
)
...
...
@@ -1188,7 +1200,7 @@ def p_f_string_expr(s, unicode_value, pos, starting_index, is_raw):
# validate the conversion char
if
conversion_char
is
not
None
and
not
ExprNodes
.
FormattedValueNode
.
find_conversion_func
(
conversion_char
):
error
(
pos
,
"invalid conversion character '%s'"
%
conversion_char
)
error
(
expr_
pos
,
"invalid conversion character '%s'"
%
conversion_char
)
# the format spec is itself treated like an f-string
if
format_spec_str
:
...
...
tests/errors/e_fstring.pyx
0 → 100644
View file @
e1776577
# mode: error
# tag: fstring
def
incorrect_fstrings
(
x
):
return
[
f"
{
x
}{
'
\
\
'
}
'
{
x
+
1
}
"
,
f"""
{}
"""
,
f"
{}
"
,
f"
{
x
!
}
"
,
f"
{
",
f"
{{}}}
"
,
]
_ERRORS
=
"""
6:16: backslashes not allowed in f-strings
7:14: empty expression not allowed in f-string
8:12: empty expression not allowed in f-string
9:14: missing '}' in format string expression, found '!'
10:12: empty expression not allowed in f-string
10:12: missing '}' in format string expression
11:15: f-string: single '}' is not allowed
"""
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment