Every line of 'gunzip python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
179 def _PythonUnzip(self): 180 """Unzip a file using the python zipfile module.""" 181 ziplocal = None 182 try: 183 ziplocal = zipfile.ZipFile(self._zipfile_name) 184 ziplocal.extractall() 185 finally: 186 if ziplocal is not None: 187 ziplocal.close()