From: Neal Norwitz Date: Tue, 28 Feb 2006 17:53:58 +0000 (+0000) Subject: Update comments X-Git-Tag: v2.5a0~486 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=03bdedd574beaa880e1bbd31034dd840e6a4f8be;p=thirdparty%2FPython%2Fcpython.git Update comments --- diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index b7c2a23637ea..5b20ab3d06c1 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