Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

with function python

class foo():
    def __init__(self):
        # init
    def __enter__(self):
      	# stuff
        return self
    def __exit__(self, exc_type, exc_val, exc_tb):
        #Exception handling here
        #Finish up anything
 
PREVIOUS NEXT
Tagged: #function #python
ADD COMMENT
Topic
Name
4+2 =