Raised when writing a zipfile, the zipfile requires ZIP64 extensions and those extensions are disabled.
| 46 | |
| 47 | |
| 48 | class LargeZipFile(Exception): |
| 49 | """ |
| 50 | Raised when writing a zipfile, the zipfile requires ZIP64 extensions |
| 51 | and those extensions are disabled. |
| 52 | """ |
| 53 | |
| 54 | error = BadZipfile = BadZipFile # Pre-3.2 compatibility names |
| 55 |
no outgoing calls
no test coverage detected
searching dependent graphs…