-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Labels
propose closingProposed for closingProposed for closing
Description
The doc says:
"""
Literals delimited by ' (U+0027), may not contain the characters ', LF (U+000A), or CR (U+000D).
Literals delimited by ", may not contain the characters ", LF, or CR.
Literals delimited by ''' may not contain the sequence of characters '''.
Literals delimited by """ may not contain the sequence of characters """.
"""
It should say
"""
Literals delimited by ' (U+0027), may not contain an unescaped ' character, ...
"""
or
"""
Literals delimited by ' (U+0027) must use an escape sequence to include the ' character,
"""
Similarly for "-strings and for triple quoted strings (\'''
is possible).
gkellogg and jmkeil
Metadata
Metadata
Assignees
Labels
propose closingProposed for closingProposed for closing