diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-14 20:12:41 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-04-14 20:12:41 +0000 |
commit | 7b8c7546ebc1fc3688ef95768fa8b82f0f205490 (patch) | |
tree | 2e14b243347a9c38c82e2e774d4b201f23149916 /Lib/py_compile.py | |
parent | dcd2dc2fffce8614c5d2b8d303a303a599b88a23 (diff) | |
download | cpython-7b8c7546ebc1fc3688ef95768fa8b82f0f205490.tar.gz cpython-7b8c7546ebc1fc3688ef95768fa8b82f0f205490.zip |
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/py_compile.py')
-rw-r--r-- | Lib/py_compile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/py_compile.py b/Lib/py_compile.py index 48c4afc3623..afeaae12c6f 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -44,7 +44,7 @@ def compile(file, cfile=None, dfile=None): """ import os, marshal, __builtin__ - f = open(file) + f = open(file, 'U') try: timestamp = long(os.fstat(f.fileno())[8]) except AttributeError: |