From: Jeremy Hylton Date: Tue, 28 Feb 2006 17:46:23 +0000 (+0000) Subject: Test case to cover subscription bug from SF 1333982 X-Git-Tag: v2.5a0~489 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7b03bade2b9fcb833043f2c2690fbc2de76290a7;p=thirdparty%2FPython%2Fcpython.git Test case to cover subscription bug from SF 1333982 --- diff --git a/Lib/test/output/test_grammar b/Lib/test/output/test_grammar index fed41973d826..4fa9cb03c986 100644 --- a/Lib/test/output/test_grammar +++ b/Lib/test/output/test_grammar @@ -55,6 +55,7 @@ multiplicative ops unary ops selectors +[1, (1,), (1, 2), (1, 2, 3)] atoms classdef ['Apple', 'Banana', 'Coco nut'] diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 0d2d9255df34..b7c2a23637ea 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -663,6 +663,17 @@ s = a[:] s = a[-5:] s = a[:-1] s = a[-4:-3] +# A rough test of SF bug XXX. +# The testing here is fairly incomplete. +d = {} +d[1] = 1 +d[1,] = 2 +d[1,2] = 3 +d[1,2,3] = 4 +L = list(d) +L.sort() +print L + print 'atoms' ### atom: '(' [testlist] ')' | '[' [testlist] ']' | '{' [dictmaker] '}' | '`' testlist '`' | NAME | NUMBER | STRING