示例#1
0
def loading_postprocess():
  global gMyRoot, gDebug, log, Print
  gMyRoot = MyRoot.instance()
  gDebug = DebugPrint.instance()
  log = gDebug.log
  Print = gDebug.Print
  
  # pyinterpreter
  from PyInterpreter import PyInterpreter
  global gPyInterpreter
  gPyInterpreter = PyInterpreter.instance()
示例#2
0
def loading_postprocess():
    global gMyRoot, gDebug, log, Print
    gMyRoot = MyRoot.instance()
    gDebug = DebugPrint.instance()
    log = gDebug.log
    Print = gDebug.Print

    # pyinterpreter
    from PyInterpreter import PyInterpreter
    global gPyInterpreter
    gPyInterpreter = PyInterpreter.instance()
示例#3
0
import Utility as Util
from Utility import *

from PyInterpreter import PyInterpreter

if __name__ == '__main__':
    gMyRoot.show_debug(False)
    gMyRoot.run(PyInterpreter.instance())
示例#4
0
import Utility as Util
from Utility import *

from PyInterpreter import PyInterpreter
    
if __name__ == '__main__':
  gMyRoot.show_debug(False)
  gMyRoot.run( PyInterpreter.instance() )