This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author alex
Recipients alex
Date 2014-07-25.23:08:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406329705.02.0.672506438124.issue22074@psf.upfronthosting.co.za>
In-reply-to
Content
This is on default:


$ python3 Lib/test/make_ssl_certs.py
creating cert for localhost
Generating a 1024 bit RSA private key
.++++++
....................................................++++++
writing new private key to '/var/folders/fm/57qdjdrx6gzgcq1zlym0xwfc0000gn/T/tmpbfrqx7mo'
-----
password protecting ssl_key.pem in ssl_key.passwd.pem
writing RSA key
writing RSA key
Traceback (most recent call last):
  File "Lib/test/make_ssl_certs.py", line 158, in <module>
    make_ca()
  File "Lib/test/make_ssl_certs.py", line 118, in make_ca
    r.write("00")
NameError: name 'r' is not defined


I can't see anything that ought to be assigning `r`, perhaps it's supposed to be `f`?
History
Date User Action Args
2014-07-25 23:08:25alexsetrecipients: + alex
2014-07-25 23:08:25alexsetmessageid: <1406329705.02.0.672506438124.issue22074@psf.upfronthosting.co.za>
2014-07-25 23:08:24alexlinkissue22074 messages
2014-07-25 23:08:24alexcreate