Skip to content

Update escapes.rst #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
32 changes: 16 additions & 16 deletions source/docs/str/escapes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,37 +4,37 @@ Escape Characters

The recognized escape sequences are:

\\newline
``\newline``
Ignored
\\
``\``
Backslash (\\)
\\'
``\'``
Single quote (')
\\"
``\"``
Double quote (")
\\a
``\a``
ASCII Bell (BEL)
\\b
``\b``
ASCII Backspace (BS)
\\f
``\f``
ASCII Formfeed (FF)
\\n
``\n``
ASCII Linefeed (LF)
\\N{name}
``\N{name}``
Character named NAME in the Unicode database (Unicode only)
\\r
``\r``
ASCII Carriage Return (CR)
\\t
``\t``
ASCII Horizontal Tab (TAB)
\\uxxxx
``\uxxxx``
Character with 16-bit hex value XXXX (Unicode only) (1)
\\Uxxxxxxxx
``\Uxxxxxxxx``
Character with 32-bit hex value XXXXXXXX (Unicode only) (2)
\\v
``\v``
ASCII Vertical Tab (VT)
\\ooo
``\ooo``
Character with octal value OOO (3,5)
\\xhh
``\xhh``
Character with hex value HH (4,5)

Notes
Expand Down