except IOError, msg:
## print '*** Cannot open', fullname, ':', msg
return []
+ if lines and not lines[-1].endswith('\n'):
+ lines[-1] += '\n'
size, mtime = stat.st_size, stat.st_mtime
cache[filename] = size, mtime, lines, fullname
return lines
'''
+SOURCE_3 = '''
+def f():
+ return 3''' # No ending newline
+
+
class LineCacheTests(unittest.TestCase):
def test_getline(self):
empty = linecache.getlines('a/b/c/__init__.py')
self.assertEquals(empty, [])
+ def test_no_ending_newline(self):
+ try:
+ with open(support.TESTFN, "w") as fp:
+ fp.write(SOURCE_3)
+ lines = linecache.getlines(support.TESTFN)
+ self.assertEqual(lines, ["\n", "def f():\n", " return 3\n"])
+ finally:
+ support.unlink(support.TESTFN)
+
def test_clearcache(self):
cached = []
for entry in TESTS:
Library
-------
+- Issue #8782: Add a trailing newline in linecache.updatecache to the last line
+ of files without one.
+
- Issue #8729: Return NotImplemented from collections.Mapping.__eq__ when
comparing to a non-mapping.