Message195106
| Author |
vstinner |
| Recipients |
christian.heimes, gregory.p.smith, python-dev, vstinner |
| Date |
2013年08月13日.23:45:11 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1376437511.23.0.638465467404.issue18405@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
With my change, any character can appear more than once. Example:
>>> crypt.mksalt()
'6ドル$idm7/asaywTgRf9V'
>>> sorted(_[3:])
['/', '7', '9', 'R', 'T', 'V', 'a', 'a', 'd', 'f', 'g', 'i', 'm', 's', 'w', 'y']
In this case, the 'a' letter occurs twice. |
|