summaryrefslogtreecommitdiff
path: root/Lib/linecache.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-23 13:32:20 +0000
committerGuido van Rossum <guido@python.org>1994-08-23 13:32:20 +0000
commit187c87445dfd2703e4cb95020d8ed7faf171b6b6 (patch)
tree799b1599e535156e223244ba7839b5568eeee387 /Lib/linecache.py
parent2b2e2dcd32edcbb7a2b627178cf59b3ea00ee3ba (diff)
downloadcpython-187c87445dfd2703e4cb95020d8ed7faf171b6b6.tar.gz
* Lib/linecache.py: don't crash on empty filename
* Lib/macpath.py: don't return trailing colon for dirname() (XXX won't do for volume names -- but otherwise glob(':*:*.py') loops forever) * Lib/traceback.py: print SyntaxError correctly * Lib/stat.py: moved to posixstat.py; added macstat.py which has the constants for the Mac; and created new stat.py which includes the right one * Lib/urllib.py: fix caching bug (by disabling the cache)
Diffstat (limited to 'Lib/linecache.py')
-rw-r--r--Lib/linecache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/linecache.py b/Lib/linecache.py
index b981869859..f5726e9eb8 100644
--- a/Lib/linecache.py
+++ b/Lib/linecache.py
@@ -59,7 +59,7 @@ def checkcache():
def updatecache(filename):
if cache.has_key(filename):
del cache[filename]
- if filename[0] + filename[-1] == '<>':
+ if not filename or filename[0] + filename[-1] == '<>':
return []
fullname = filename
try: