From 1dcb5a65ec1f081b2351a4266351fa1cd2aff4c1 2011-09-07 11:22:32 From: Thomas Kluyver Date: 2011-09-07 11:22:32 Subject: [PATCH] Fix config loader test for Python 3. --- diff --git a/IPython/config/tests/test_loader.py b/IPython/config/tests/test_loader.py index 6373d37..a5bd34a 100755 --- a/IPython/config/tests/test_loader.py +++ b/IPython/config/tests/test_loader.py @@ -48,7 +48,7 @@ c = get_config() c.a=10 c.b=20 c.Foo.Bar.value=10 -c.Foo.Bam.value=range(10) +c.Foo.Bam.value=list(range(10)) # list() is just so it's the same on Python 3 c.D.C.value='hi there' """