summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-01-19 06:22:22 (GMT)
committerMeador Inge <meadori@gmail.com>2012-01-19 06:22:22 (GMT)
commit972cfb9169bdf7fa6c9758a5c49659429c84b5a8 (patch)
treecc8ef7b23439501cf4504f93492e502dab7f6195 /Misc
parent1b468af7be7a2f0af7730c64402a38cc11413f51 (diff)
downloadcpython-972cfb9169bdf7fa6c9758a5c49659429c84b5a8.zip
cpython-972cfb9169bdf7fa6c9758a5c49659429c84b5a8.tar.gz
cpython-972cfb9169bdf7fa6c9758a5c49659429c84b5a8.tar.bz2
Issue #2134: Clarify token.OP handling rationale in tokenize documentation.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7d8cb7b..ed6c1e0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -418,6 +418,9 @@ Extension Modules
Documentation
-------------
+- Issue #2134: The tokenize documentation has been clarified to explain why
+ all operator and delimiter tokens are treated as token.OP tokens.
+
- Issue #13513: Fix io.IOBase documentation to correctly link to the
io.IOBase.readline method instead of the readline module.