From 7b8c7546ebc1fc3688ef95768fa8b82f0f205490 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Sun, 14 Apr 2002 20:12:41 +0000 Subject: 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. --- Lib/py_compile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/py_compile.py') 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: -- cgit v1.2.3