#!/usr/bin/env python
# -*- coding: utf-8 -*-
import AlClk
def go():
print 'go'
a=AlClk.AlClkCls(14,9,2009,14,30,0,go)
x = a.RunSleep111(2) ##Error
x = a.RunSleep111(2)
AttributeError: ‘AlClkCls’ object has no attribute ‘RunSleep111’
типа объект не имеет такого аттрибута, но ведь он есть то есть она
AlClk.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import threading
import datetime
import time
class AlClkCls(threading.Thread):
def __init__(self, dd, mm, yyyy, h, m, s, UserDef):
threading.Thread.__init__(self)
def AlarmClock(self):
print 'AlarmClock'
UserDef
def RunSleep111(self,g): ## вот же она, БЛИН!!!!!!!
time.sleep (2.0)
print 'lll'
return 0