mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
616fa3465d
* Move Lib/lib2to3/tests/ to Lib/test/test_lib2to3/. * Remove Lib/test/test_lib2to3.py. * Update imports. * all_project_files(): use different paths and sort files to make the tests more reproducible. * Update references to tests.
33 lines
903 B
Bash
Executable File
33 lines
903 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Recompile the .py files.
|
|
#
|
|
|
|
PYVER="@PYVER@"
|
|
FWK="/Library/Frameworks/Python.framework/Versions/@PYVER@"
|
|
|
|
"${FWK}/bin/python@PYVER@" -E -s -Wi \
|
|
"${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
|
|
-f -x 'bad_coding|badsyntax|site-packages|test/test_lib2to3/data' \
|
|
"${FWK}/lib/python${PYVER}"
|
|
|
|
"${FWK}/bin/python@PYVER@" -E -s -Wi -O \
|
|
"${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
|
|
-f -x 'bad_coding|badsyntax|site-packages|test/test_lib2to3/data' \
|
|
"${FWK}/lib/python${PYVER}"
|
|
|
|
"${FWK}/bin/python@PYVER@" -E -s -Wi \
|
|
"${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
|
|
-f -x badsyntax \
|
|
"${FWK}/lib/python${PYVER}/site-packages"
|
|
|
|
"${FWK}/bin/python@PYVER@" -E -s -Wi -O \
|
|
"${FWK}/lib/python${PYVER}/compileall.py" -q -j0 \
|
|
-f -x badsyntax \
|
|
"${FWK}/lib/python${PYVER}/site-packages"
|
|
|
|
chgrp -R admin "${FWK}"
|
|
chmod -R g+w "${FWK}"
|
|
|
|
exit 0
|