예제 #1
0
파일: rad.py 프로젝트: SherwinKP/algorithm
 def message2(self):
     reload(radactions)  # changes to radactions.py picked up by reload
     radactions.message2(self)  # call the most recent version; pass self
예제 #2
0
파일: rad.py 프로젝트: flwwsg/learnpy
	def message2(self):
		reload(radactions)
		radactions.message2(self)
예제 #3
0
 def message2(self):
     reload(radactions)         # changes to radactions.py picked up by reload
     radactions.message2(self)  # call the most recent version; pass self
예제 #4
0
파일: rad.py 프로젝트: zhongjiezheng/python
	def message2(self):
		reload(radactions)
		radactions.message2(self)
예제 #5
0
파일: rad.py 프로젝트: romanticair/python
 def message2(self):
     reload(radactions)  # 调用前需要重新加载actions模块
     radactions.message2(self)  # 传递self