summaryrefslogtreecommitdiffstats
path: root/Lib/linecache.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/linecache.py')
-rw-r--r--Lib/linecache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/linecache.py b/Lib/linecache.py
index 696e189..8da1b02 100644
--- a/Lib/linecache.py
+++ b/Lib/linecache.py
@@ -81,7 +81,7 @@ def updatecache(filename, module_globals=None):
except os.error, msg:
basename = os.path.split(filename)[1]
- # Try for a __loader__, if available
+ # Try for a __loader__, if available
if module_globals and '__loader__' in module_globals:
name = module_globals.get('__name__')
loader = module_globals['__loader__']
@@ -95,7 +95,7 @@ def updatecache(filename, module_globals=None):
pass
else:
cache[filename] = (
- len(data), None,
+ len(data), None,
[line+'\n' for line in data.splitlines()], fullname
)
return cache[filename][2]