Exemplo n.º 1
0
 def __init__(self):
     self.a = 1
     log(self.__class__.__name__, "constructed")
Exemplo n.º 2
0
def initShit():
    log("lazilyTest1.__init__.initShit is called")
Exemplo n.º 3
0
def a():
    log("lazilyTest1.submodule.a is run")
Exemplo n.º 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")
Exemplo n.º 5
0
from ImportTimeline import log

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

#traceback.print_stack()
Exemplo n.º 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")
Exemplo n.º 7
0
from ImportTimeline import log

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

#traceback.print_stack()

import lazily.lazilyTest1.a
Exemplo n.º 8
0
def b():
    log("lazilyTest1.a.b called")
Exemplo n.º 9
0
def getSourceFile():
    log("lazilyTest1.a.getSourceFile called")
    from inspect import currentframe, getsourcefile
    print("lazilyTest1.a.getFrameInfo called: " +
          str(getsourcefile(currentframe().f_back)))
Exemplo n.º 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)))
Exemplo n.º 11
0
from ImportTimeline import log

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

#traceback.print_stack()

import lazily.shit.a