示例#1
0
 def __init__(self):
     self.a = 1
     log(self.__class__.__name__, "constructed")
示例#2
0
def initShit():
    log("lazilyTest1.__init__.initShit is called")
示例#3
0
def a():
    log("lazilyTest1.submodule.a is run")
示例#4
0
from ImportTimeline import log

log("lazilyTest1/__init__.py run")
import traceback

#traceback.print_stack()


def initShit():
    log("lazilyTest1.__init__.initShit is called")


class Abracadabra:
    __slots__ = ("a", )

    def __init__(self):
        self.a = 1
        log(self.__class__.__name__, "constructed")
示例#5
0
from ImportTimeline import log

log("lazilyTest2/a.py run")
import traceback

#traceback.print_stack()
示例#6
0
from ImportTimeline import log

log("lazilyTest1/submodule/__init__.py run")
import traceback


#traceback.print_stack()
def a():
    log("lazilyTest1.submodule.a is run")
示例#7
0
from ImportTimeline import log

log("lazilyTest2/b.py run")
import traceback

#traceback.print_stack()

import lazily.lazilyTest1.a
示例#8
0
def b():
    log("lazilyTest1.a.b called")
示例#9
0
def getSourceFile():
    log("lazilyTest1.a.getSourceFile called")
    from inspect import currentframe, getsourcefile
    print("lazilyTest1.a.getFrameInfo called: " +
          str(getsourcefile(currentframe().f_back)))
示例#10
0
from ImportTimeline import log

log("lazilyTest1/a.py run")
import traceback

#traceback.print_stack()


def b():
    log("lazilyTest1.a.b called")


def getSourceFile():
    log("lazilyTest1.a.getSourceFile called")
    from inspect import currentframe, getsourcefile
    print("lazilyTest1.a.getFrameInfo called: " +
          str(getsourcefile(currentframe().f_back)))
示例#11
0
from ImportTimeline import log

log("lazilyTest1/b.py run")
import traceback

#traceback.print_stack()

import lazily.shit.a