mirror of
https://github.com/python/cpython.git
synced 2025-08-23 10:16:01 +00:00

Complete revamp of PCBuild8 directory. Use subdirectories for each project under the main pcbuild solution. Now make extensive use of property sheets to simplify project configuration. x64 build fully supported, and the process for building PGO version (Profiler Guided Optimization) simplified. All projects are now present, except _ssl, which needs to be reimplemented. Also, some of the projects that require external libraries need extra work to fully compile on x64.
30 lines
666 B
Python
30 lines
666 B
Python
# Remove all the .pyc and .pyo files under ../Lib.
|
|
import sys
|
|
|
|
|
|
def deltree(root):
|
|
import os
|
|
from os.path import join
|
|
|
|
npyc = npyo = 0
|
|
for root, dirs, files in os.walk(root):
|
|
for name in files:
|
|
delete = False
|
|
if name.endswith('.pyc'):
|
|
delete = True
|
|
npyc += 1
|
|
elif name.endswith('.pyo'):
|
|
delete = True
|
|
npyo += 1
|
|
|
|
if delete:
|
|
os.remove(join(root, name))
|
|
|
|
return npyc, npyo
|
|
|
|
path = "../Lib"
|
|
if len(sys.argv) > 1:
|
|
path = sys.argv[1]
|
|
|
|
npyc, npyo = deltree(path)
|
|
print npyc, ".pyc deleted,", npyo, ".pyo deleted"
|