2020-07-13 08:10:55 +02:00
|
|
|
--- a/Lib/distutils/util.py
|
|
|
|
+++ b/Lib/distutils/util.py
|
2020-07-15 00:02:29 +02:00
|
|
|
@@ -433,7 +433,7 @@ byte_compile(files, optimize=%r, force=%
|
2020-07-13 08:10:55 +02:00
|
|
|
else:
|
|
|
|
from py_compile import compile
|
|
|
|
|
|
|
|
- for file in py_files:
|
|
|
|
+ for file in sorted(py_files):
|
|
|
|
if file[-3:] != ".py":
|
|
|
|
# This lets us be lazy and not filter filenames in
|
|
|
|
# the "install_lib" command.
|