Fix test_dis dependency on dict order.

This commit is contained in:
Georg Brandl 2012-02-20 21:41:03 +01:00
parent c425a94899
commit a108227c47
1 changed files with 7 additions and 6 deletions

View File

@ -268,12 +268,13 @@ Variable names:
6: args
7: kwds
Cell variables:
0: e
1: d
2: f
3: y
4: x
5: z"""
0: [edfxyz]
1: [edfxyz]
2: [edfxyz]
3: [edfxyz]
4: [edfxyz]
5: [edfxyz]"""
# NOTE: the order of the cell variables above depends on dictionary order!
co_tricky_nested_f = tricky.__func__.__code__.co_consts[1]