summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-02-28 17:53:58 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-02-28 17:53:58 (GMT)
commit03bdedd574beaa880e1bbd31034dd840e6a4f8be (patch)
tree441f7c879da662994c724bf14ef30b727b5ca9ae /Lib
parent77f1bb27782898c1bbcbaffd5a5622930b16bc97 (diff)
downloadcpython-03bdedd574beaa880e1bbd31034dd840e6a4f8be.zip
cpython-03bdedd574beaa880e1bbd31034dd840e6a4f8be.tar.gz
cpython-03bdedd574beaa880e1bbd31034dd840e6a4f8be.tar.bz2
Update comments
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_grammar.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py
index b7c2a23..5b20ab3 100644
--- a/Lib/test/test_grammar.py
+++ b/Lib/test/test_grammar.py
@@ -663,8 +663,9 @@ s = a[:]
s = a[-5:]
s = a[:-1]
s = a[-4:-3]
-# A rough test of SF bug XXX.
+# A rough test of SF bug 1333982. http://python.org/sf/1333982
# The testing here is fairly incomplete.
+# Test cases should include: commas with 1 and 2 colons
d = {}
d[1] = 1
d[1,] = 2