##// END OF EJS Templates
Re-added fix without whitespace mess
Marin Gilles -
Show More
@@ -188,3 +188,6 b' def test_SList():'
188 188 nt.assert_equal(sl.grep(lambda x: x.startswith('a')), text.SList(['a 11', 'a 2']))
189 189 nt.assert_equal(sl.fields(0), text.SList(['a', 'b', 'a']))
190 190 nt.assert_equal(sl.sort(field=1, nums=True), text.SList(['b 1', 'a 2', 'a 11']))
191
192 def test_non_local_path_import():
193 nt.assert_in("path", sys.modules)
@@ -7,6 +7,7 b' Inheritance diagram:'
7 7 .. inheritance-diagram:: IPython.utils.text
8 8 :parts: 3
9 9 """
10 from __future__ import absolute_import
10 11
11 12 import os
12 13 import re
General Comments 0
You need to be logged in to leave comments. Login now