#!/bin/sh
# py-compile - Compile a Python program
-scriptversion=2022-02-06.06; # UTC
+scriptversion=2022-02-06.07; # UTC
# Copyright (C) 2000-2022 Free Software Foundation, Inc.
if not os.path.exists(filepath) or not (len(filepath) >= 3
and filepath[-3:] == '.py'):
continue
- sys.stdout.write(file)
+ sys.stdout.write(file + ' ')
sys.stdout.flush()
if hasattr(sys.implementation, 'cache_tag'):
py_compile.compile(filepath, importlib.util.cache_from_source(filepath), path)
if not os.path.exists(filepath) or not (len(filepath) >= 3
and filepath[-3:] == '.py'):
continue
- sys.stdout.write(file)
+ sys.stdout.write(file + ' ')
sys.stdout.flush()
if hasattr(sys.implementation, 'cache_tag'):
py_compile.compile(filepath, importlib.util.cache_from_source(filepath), path)