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.

classification
Title: Fix grammar in comment in python.c
Type: Stage: resolved
Components: Interpreter Core Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Andrew.Rowe, python-dev, r.david.murray
Priority: normal Keywords:

Created on 2013-07-08 01:43 by Andrew.Rowe, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
patch1.txt Andrew.Rowe, 2013-07-08 01:43 review
Messages (3)
msg192606 - (view) Author: Andrew Rowe (Andrew.Rowe) Date: 2013-07-08 01:43
diff -r 65f2c92ed079 Modules/python.c
--- a/Modules/python.c	Sun Jul 07 23:30:24 2013 +0200
+++ b/Modules/python.c	Mon Jul 08 10:46:30 2013 +1000
@@ -19,7 +19,7 @@
 main(int argc, char **argv)
 {
     wchar_t **argv_copy;
-    /* We need a second copies, as Python might modify the first one. */
+    /* We need a second copy, as Python might modify the first one. */
     wchar_t **argv_copy2;
     int i, res;
     char *oldloc;
msg192824 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-07-10 15:59
New changeset c02656962b9c by R David Murray in branch '3.3':
#18399: fix comment typo.
http://hg.python.org/cpython/rev/c02656962b9c

New changeset b583fd54c8d6 by R David Murray in branch 'default':
Merge: #18399: fix comment typo.
http://hg.python.org/cpython/rev/b583fd54c8d6
msg192825 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2013-07-10 16:00
Thanks, Andrew.
History
Date User Action Args
2022-04-11 14:57:47adminsetgithub: 62599
2013-07-10 16:00:15r.david.murraysetstatus: open -> closed

versions: + Python 3.3
nosy: + r.david.murray

messages: + msg192825
resolution: fixed
stage: resolved
2013-07-10 15:59:20python-devsetnosy: + python-dev
messages: + msg192824
2013-07-08 01:43:44Andrew.Rowecreate