Skip to content

Commit 909f1d2

Browse files
committed
-
1 parent b6612b5 commit 909f1d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test_python_toolbox/test_sleek_reffing/test_sleek_ref.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ def test_sleek_ref():
2222

2323
volatile_things = [A(), 1, 4.5, 'meow', u'woof', [1, 2], (1, 2), {1: 2},
2424
set([1, 2, 3]), (None, 3, {None: 4})]
25-
unvolatile_things = [__builtins__, list, type, sum, None]
25+
unvolatile_things = [__builtins__, type, sum, None]
26+
# (Used to have `list` here too but Pypy 2.0b choked on it.)
2627

2728
while volatile_things:
2829
volatile_thing = volatile_things.pop()

0 commit comments

Comments
 (0)