mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 15:48:21 +00:00
First baby steps towards dual Python2+3 compatibility
This commit is contained in:
parent
789eb85bfe
commit
fe2dd9a721
17 changed files with 319 additions and 175 deletions
|
@ -17,13 +17,13 @@
|
|||
|
||||
# Optimizer class that wraps and calls the other parts.
|
||||
|
||||
import lslfuncs
|
||||
from lslopt import lslfuncs
|
||||
|
||||
from lslcommon import nr
|
||||
from lslfoldconst import foldconst
|
||||
from lslrenamer import renamer
|
||||
from lsldeadcode import deadcode
|
||||
from lsllastpass import lastpass
|
||||
from lslopt.lslcommon import nr
|
||||
from lslopt.lslfoldconst import foldconst
|
||||
from lslopt.lslrenamer import renamer
|
||||
from lslopt.lsldeadcode import deadcode
|
||||
from lslopt.lsllastpass import lastpass
|
||||
|
||||
class optimizer(foldconst, renamer, deadcode, lastpass):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue