Skip to content

Commit daa15dd

Browse files
committed
unicode tweak
1 parent a1edda7 commit daa15dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ Python 3 strings hold unicode data. Python has a few ways to represent strings.
261261
Byte string ``b'hello'``
262262
================ ===========================
263263

264-
.. table:: Escape Characters
264+
.. table:: Escape Characters (unicode escapes must be in unicode string)
265265

266266
=================== =================
267267
Escape Sequence Output
@@ -275,7 +275,7 @@ Python 3 strings hold unicode data. Python has a few ways to represent strings.
275275
``\n`` Newline
276276
``\r`` ASCII carriage return
277277
``\t`` Tab
278-
``\u12af`` Unicode 16 bit
278+
``\u12af`` Unicode 16 bit
279279
``\U12af89bc`` Unicode 32 bit
280280
``\N{BLACK STAR}`` Unicode name
281281
``\o84`` Octal character

0 commit comments

Comments
 (0)