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 terry.reedy
Recipients mark.dickinson, serhiy.storchaka, terry.reedy, tshepang
Date 2013-08-23.21:28:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377293311.18.0.0666261658977.issue18783@psf.upfronthosting.co.za>
In-reply-to
Content
For msilib, 'int numbers' should just be 'ints' or 'integers'.
---
For PC/winreg.c '''\
PyDoc_STRVAR(PyHKEY_Detach_doc,
"key.Detach() -> int\n"
...
"On 64 bit windows, the result of this function is a long integer");'''

This last line should be deleted rather than modified, as its only point is to override the signature declaration of returning int.
---
I cannot vouch for this change:
-/* necessary to make sure types aren't coerced (e.g., int and long) */
+/* necessary to make sure types aren't coerced (e.g., float and complex) */
I presume you thought about it carefully in context.
---
The rest of the changes look grammatically correct. I cannot be sure about the executable code changes.
History
Date User Action Args
2013-08-23 21:28:31terry.reedysetrecipients: + terry.reedy, mark.dickinson, tshepang, serhiy.storchaka
2013-08-23 21:28:31terry.reedysetmessageid: <1377293311.18.0.0666261658977.issue18783@psf.upfronthosting.co.za>
2013-08-23 21:28:31terry.reedylinkissue18783 messages
2013-08-23 21:28:30terry.reedycreate