summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_linecache.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-30207: Rename test.test_support to test.support. (#1353)Serhiy Storchaka2017-04-301-2/+2
| | | | | | | | To simplify backports from Python 3, the test.test_support module was converted into a package and renamed to test.support. The test.script_helper module was moved into the test.support package. Names test.test_support and test.script_helper are left as aliases to test.support and test.support.script_helper.
* Issue #23838: linecache now clears the cache and returns an empty result onSerhiy Storchaka2015-04-011-0/+16
| | | | MemoryError.
* Issue #11614: Fix test_linecache, cjkencodings_test.py doesn't exist anymoreVictor Stinner2011-05-161-1/+1
|
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-12/+12
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* ensure the last line has a trailing newline #8782Benjamin Peterson2010-05-211-0/+12
|
* fix nameBenjamin Peterson2010-05-211-1/+1
|
* use addCleanupBenjamin Peterson2010-05-211-30/+27
|
* Fix catastrophic file opening and closing logic in test_linecacheAntoine Pitrou2010-04-181-16/+13
|
* Issue 7431: use TESTFN in test_linecache instead of trying to create aR. David Murray2009-12-031-36/+32
| | | | | file in the Lib/test directory, which might be read-only for the user running the tests.
* split unittest.py into a packageBenjamin Peterson2009-07-191-1/+1
|
* #1309567: fix linecache behavior of stripping subdirectories from paths when ↵Georg Brandl2009-05-051-0/+129
looking for relative filename matches. Also add a linecache test suite.