Documented the behavior of the basic library classes.
[automanga.git] / manga / mangafox.py
index b0a4aee..302edc5 100644 (file)
@@ -11,12 +11,6 @@ class imgstream(object):
     def close(self):
         self.bk.close()
 
-    def __enter__(self):
-        return self
-
-    def __exit__(self, *exc_info):
-        self.close()
-
     def read(self, sz = None):
         if sz is None:
             return self.bk.read()