commit | 228b8e88bc7a7ce740e5c7326697e7c2256e099f | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Apr 02 06:13:34 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Apr 02 06:13:34 1997 +0000 |
tree | 81149f4696131ea3d2c123fb169c8a31db23a76a | |
parent | d69a84b01eb802b2bfd7dd2c868a9b2da9465a5e [diff] [blame] |
Whole lotta changes.
diff --git a/Lib/dos-8x3/py_compi.py b/Lib/dos-8x3/py_compi.py index fba7b1d..e9e90ff 100755 --- a/Lib/dos-8x3/py_compi.py +++ b/Lib/dos-8x3/py_compi.py
@@ -19,7 +19,7 @@ timestamp = long(os.stat(file)[8]) codeobject = __builtin__.compile(codestring, file, 'exec') if not cfile: - cfile = file + 'c' + cfile = file + (__debug__ and 'c' or 'o') fc = open(cfile, 'wb') fc.write(MAGIC) wr_long(fc, timestamp)