Группа :: Разработка/Python
Пакет: python
Главная Изменения Спек Патчи Загрузить Bugs and FR
Патч: Python-2.3-alt-compileall.patch
--- Python-2.3.2/Lib/compileall.py 2003-11-21 22:11:07 +0300
+++ Python-2.3.2/Lib/compileall.py.orig 2003-08-28 00:21:06 +0400
@@ -62,7 +62,7 @@
if not quiet:
print 'Compiling', fullname, '...'
try:
+ ok = py_compile.compile(fullname, cfile, dfile, True)
- ok = py_compile.compile(fullname, None, dfile, True)
except KeyboardInterrupt:
raise KeyboardInterrupt
except py_compile.PyCompileError,err: