changeset 133:a9d2aa6810c7

Removed the useless destructor of files.Archive
author Oleg Oshmyan <chortos@inbox.lv>
date Thu, 19 May 2011 16:50:00 +0100
parents cdd0f970d112
children e84f33a60a5c
files files.py
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/files.py	Thu May 19 02:55:36 2011 +0100
+++ b/files.py	Thu May 19 16:50:00 2011 +0100
@@ -43,12 +43,6 @@
 	
 	@abstractmethod
 	def extract(self, name, target): raise NotImplementedError
-	
-	def __del__(self):
-		try:
-			del self.file
-		except NameError:
-			pass
 
 try:
 	import tarfile