diff options
author | Georg Brandl <georg@python.org> | 2012-02-20 22:03:28 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-02-20 22:03:28 +0100 |
commit | 27fe226eb13b1f7cedba838b3d388a645197d722 (patch) | |
tree | 03f1a9274865cd985147e6be86627ab4b145f2f2 /Lib/test/test_dis.py | |
parent | b9dafe618f9c157733bcbefb956348a99eb2ca3e (diff) | |
download | cpython-git-27fe226eb13b1f7cedba838b3d388a645197d722.tar.gz |
Another test_dis dict order dependency.
Diffstat (limited to 'Lib/test/test_dis.py')
-rw-r--r-- | Lib/test/test_dis.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_dis.py b/Lib/test/test_dis.py index 42466183d8..5c59eaa01c 100644 --- a/Lib/test/test_dis.py +++ b/Lib/test/test_dis.py @@ -293,12 +293,12 @@ Names: Variable names: 0: c Free 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]""" code_info_expr_str = """\ Name: <module> |