mirror of https://github.com/dnomd343/ProxyC
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
363 B
11 lines
363 B
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import compileall
|
|
from Basis.Logger import logging
|
|
|
|
|
|
def startCompile(dirRange: str = '/') -> None:
|
|
for optimize in [-1, 1, 2]:
|
|
logging.warning('start python compile -> %s (optimize = %i)' % (dirRange, optimize))
|
|
compileall.compile_dir(dirRange, quiet = 1, maxlevels = 256, optimize = optimize)
|
|
|