File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -446,9 +446,6 @@ instance of the :class:`bytes` type instead of the :class:`str` type. They
446446may only contain ASCII characters; bytes with a numeric value of 128 or greater
447447must be expressed with escapes.
448448
449- As of Python 3.3 it is possible again to prefix string literals with a
450- ``u `` prefix to simplify maintenance of dual 2.x and 3.x codebases.
451-
452449Both string and bytes literals may optionally be prefixed with a letter ``'r' ``
453450or ``'R' ``; such strings are called :dfn: `raw strings ` and treat backslashes as
454451literal characters. As a result, in string literals, ``'\U' `` and ``'\u' ``
@@ -799,10 +796,6 @@ Some examples of floating point literals::
799796
800797 3.14 10. .001 1e100 3.14e-10 0e0 3.14_15_93
801798
802- Note that numeric literals do not include a sign; a phrase like ``-1 `` is
803- actually an expression composed of the unary operator ``- `` and the literal
804- ``1 ``.
805-
806799.. versionchanged :: 3.6
807800 Underscores are now allowed for grouping purposes in literals.
808801
You can’t perform that action at this time.
0 commit comments