--- a/Utilities/compatibility_fixes.py Sun Apr 13 15:45:57 2014 +0200 +++ b/Utilities/compatibility_fixes.py Tue Apr 15 22:41:08 2014 +0200 @@ -35,7 +35,7 @@ return File(file, mode, buffering, encoding, errors, newline, closefd) -class File(file): #__IGNORE_WARNING__ +class File(file): # __IGNORE_WARNING__ """ Facade for the original file class. """ @@ -74,7 +74,7 @@ else: self.__errors = errors - file.__init__(self, filein, mode, buffering) #__IGNORE_WARNING__ + file.__init__(self, filein, mode, buffering) # __IGNORE_WARNING__ def read(self, n=-1): """