diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-07-10 15:57:39 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-07-10 15:57:39 (GMT) |
commit | 609142ef05c4b71697e7819f47cf2512e6b8d85e (patch) | |
tree | 980efeb2aef5b75be0b6a2f96a3d10e90dfc2df5 /Modules/python.c | |
parent | aaa8ed8b84c3c3fdf799e5c6aa538fbb54d6cb41 (diff) | |
parent | 296b73c83dd62173e104d4bf0c09b9b8f3a1b805 (diff) | |
download | cpython-609142ef05c4b71697e7819f47cf2512e6b8d85e.zip cpython-609142ef05c4b71697e7819f47cf2512e6b8d85e.tar.gz cpython-609142ef05c4b71697e7819f47cf2512e6b8d85e.tar.bz2 |
Merge: #18399: fix comment typo.
Diffstat (limited to 'Modules/python.c')
-rw-r--r-- | Modules/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/python.c b/Modules/python.c index 0ad1130..71335de 100644 --- a/Modules/python.c +++ b/Modules/python.c @@ -19,7 +19,7 @@ int 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; |