summaryrefslogtreecommitdiff
path: root/Modules
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-10 10:57:39 -0400
committerR David Murray <rdmurray@bitdance.com>2013-07-10 10:57:39 -0400
commit296b73c83dd62173e104d4bf0c09b9b8f3a1b805 (patch)
tree893071aa0cec9808859f96901a5ee3150c8c7816 /Modules
parent37114bb548f3e3062417bc2be9ac9ab230988331 (diff)
downloadcpython-git-296b73c83dd62173e104d4bf0c09b9b8f3a1b805.tar.gz
#18399: fix comment typo.
Patch by Andrew Rowe.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/python.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/python.c b/Modules/python.c
index 2c08b96856..8a548d3ac3 100644
--- a/Modules/python.c
+++ b/Modules/python.c
@@ -19,7 +19,7 @@ int
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;