summaryrefslogtreecommitdiff
path: root/Lib/linecache.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-04-14 20:12:41 +0000
committerJack Jansen <jack.jansen@cwi.nl>2002-04-14 20:12:41 +0000
commit7b8c7546ebc1fc3688ef95768fa8b82f0f205490 (patch)
tree2e14b243347a9c38c82e2e774d4b201f23149916 /Lib/linecache.py
parentdcd2dc2fffce8614c5d2b8d303a303a599b88a23 (diff)
downloadcpython-git-7b8c7546ebc1fc3688ef95768fa8b82f0f205490.tar.gz
Mass checkin of universal newline support.
Highlights: import and friends will understand any of \r, \n and \r\n as end of line. Python file input will do the same if you use mode 'U'. Everything can be disabled by configuring with --without-universal-newlines. See PEP278 for details.
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 cd3e50d27e..9953034d51 100644
--- a/Lib/linecache.py
+++ b/Lib/linecache.py
@@ -90,7 +90,7 @@ def updatecache(filename):
## print '*** Cannot stat', filename, ':', msg
return []
try:
- fp = open(fullname, 'r')
+ fp = open(fullname, 'rU')
lines = fp.readlines()
fp.close()
except IOError, msg: