[issue18783] No more refer to Python long

2013-08-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4d62a62ba44d by Serhiy Storchaka in branch '3.3': Issue #18783: Removed existing mentions of Python long type in docstrings, http://hg.python.org/cpython/rev/4d62a62ba44d New changeset 0872257752c2 by Serhiy Storchaka in branch 'default': Issue

[issue18783] No more refer to Python long

2013-08-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Ezio and Terry for reviews. I presume you thought about it carefully in context. Yes. Here can be any different types for which instances can be equal (1 == 1L, 1.0 == 1.0+0.0j). This kind of changes are a bit out of place in a patch like this.

[issue18783] No more refer to Python long

2013-08-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18783

[issue18783] No more refer to Python long

2013-08-23 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe tshep...@gmail.com: -- nosy: +tshepang ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18783 ___ ___

[issue18783] No more refer to Python long

2013-08-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: 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

[issue18783] No more refer to Python long

2013-08-20 Thread Mark Dickinson
Changes by Mark Dickinson dicki...@gmail.com: -- nosy: +mark.dickinson ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18783 ___ ___

[issue18783] No more refer to Python long

2013-08-19 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which removes (almost all) mentions of Python long type from docstrings, exception messages and comments. -- files: no_long.patch keywords: patch messages: 195650 nosy: serhiy.storchaka priority: normal severity: normal stage: patch