This website requires JavaScript.
Explore
Help
Sign In
Mirror
/
cpython
mirror of
https://github.com/python/cpython
Watch
4
Star
1
Fork
You've already forked cpython
0
Code
Issues
Releases
Wiki
Activity
3932e1db53
cpython
/
Lib
/
zipfile
/
__main__.py
5 lines
58 B
Python
Raw
Normal View
History
Unescape
Escape
gh-112578: Fix RuntimeWarning when running zipfile (GH-112579)
2023-12-03 07:09:29 -04:00
from
.
import
main
gh-98098: Create packages from zipfile and test_zipfile (gh-98103) * gh-98098: Move zipfile into a package. * Moved test_zipfile to a package * Extracted module for test_path. * Add blurb * Add jaraco as owner of zipfile.Path. * Synchronize with minor changes found at jaraco/zipp@d9e7f4352d.
2022-11-26 10:44:13 -04:00
if
__name__
==
"
__main__
"
:
main
(
)