summaryrefslogtreecommitdiff
path: root/Doc/reference/lexical_analysis.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-08 21:28:22 +0200
committerGeorg Brandl <georg@python.org>2013-10-08 21:28:22 +0200
commit97f962339f01cc1d17ac77893f20db3a457bb6b9 (patch)
treeb2e18196ccbd10922ec0a7e3b02913d400b3e9bb /Doc/reference/lexical_analysis.rst
parent3328871cace78e99736e44f167c287ba3bb5928d (diff)
downloadcpython-git-97f962339f01cc1d17ac77893f20db3a457bb6b9.tar.gz
Add "->" as a delimiter token. Found by James Harding on docs@.
Diffstat (limited to 'Doc/reference/lexical_analysis.rst')
-rw-r--r--Doc/reference/lexical_analysis.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst
index 94f219b023..0ed3d3b9a7 100644
--- a/Doc/reference/lexical_analysis.rst
+++ b/Doc/reference/lexical_analysis.rst
@@ -704,7 +704,7 @@ Delimiters
The following tokens serve as delimiters in the grammar::
( ) [ ] { }
- , : . ; @ =
+ , : . ; @ = ->
+= -= *= /= //= %=
&= |= ^= >>= <<= **=