Created
February 14, 2017 08:23
-
-
Save engyasin/770771f5c568be48e1e608ad259f0a0b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Myclass: | |
def __init__(self): | |
self.cond = True | |
pass | |
def func1(self,arg): | |
while self.cond: | |
pass | |
def stop_func1(self,args): | |
self.cond = False | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment