New submission from Daniel Chimeno :
While working on project with Python wheels I found myself adding:
import shutil
shutil.register_unpack_format('whl', ['.whl'], shutil._unpack_zipfile)
Since PEP 427 explicitly says wheels are ZIP-format archive.
https://www
Change by Daniel Chimeno :
--
keywords: +patch
pull_requests: +6397
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue33430>
___
___
Py
Daniel Chimeno added the comment:
Relevant link:
https://docs.python.org/3.7/library/secrets.html#recipes-and-best-practices
--
___
Python tracker
<https://bugs.python.org/issue33
New submission from Daniel Chimeno :
In the secrets module documentation, the examples in `15.3.4. Recipes and best
practices` need change things, I think this examples must run after a copy &
paste into user terminal.
Options for first example:
1:
import string
from secrets im