NisHera
9 years agoValued Contributor
Python Log message pointer
I have following code in python class position:
def __init__(self):
# do nothing
Log.Message("class inits")
def abc(self):
A = "ABC"
return A
def runme():
positionOBJ...