Home
last modified time | relevance | path

Searched refs:setpassword (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/test/
Dtest_zipfile.py2180 self.zip.setpassword(b"perl")
2182 self.zip2.setpassword(b"perl")
2187 self.zip.setpassword(b"python")
2189 self.zip2.setpassword(b"12345")
2193 self.assertRaises(TypeError, self.zip.setpassword, "unicode")
2199 self.zip.setpassword(b"python")
/third_party/python/Doc/library/
Dzipfile.rst356 .. method:: ZipFile.setpassword(pwd)
366 it will override the default password set with :meth:`setpassword`. Calling
/third_party/python/Lib/
Dzipfile.py1435 def setpassword(self, pwd): member in ZipFile