[Python-checkins] cpython (3.3): #18399: fix comment typo.

r.david.murray python-checkins at python.org
Wed Jul 10 17:59:21 CEST 2013


http://hg.python.org/cpython/rev/c02656962b9c
changeset:   84530:c02656962b9c
branch:      3.3
parent:      84527:330c7aa2922b
user:        R David Murray <rdmurray at bitdance.com>
date:        Wed Jul 10 10:57:39 2013 -0400
summary:
  #18399: fix comment typo.

Patch by Andrew Rowe.

files:
  Modules/python.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Modules/python.c b/Modules/python.c
--- a/Modules/python.c
+++ b/Modules/python.c
@@ -19,7 +19,7 @@
 main(int argc, char **argv)
 {
     wchar_t **argv_copy = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*(argc+1));
-    /* 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 = (wchar_t **)PyMem_Malloc(sizeof(wchar_t*)*(argc+1));
     int i, res;
     char *oldloc;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list