summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2009-07-02 15:37:21 (GMT)
committerJesus Cea <jcea@jcea.es>2009-07-02 15:37:21 (GMT)
commit585ad8ae5e352c99bbd87955c64cc9a0654da8c3 (patch)
tree98c559aa59ba10d42e6383626b33433343e6b4fc /Modules/posixmodule.c
parentb73effab2828b244d2b91d466f7a89df94a6c036 (diff)
downloadcpython-585ad8ae5e352c99bbd87955c64cc9a0654da8c3.zip
cpython-585ad8ae5e352c99bbd87955c64cc9a0654da8c3.tar.gz
cpython-585ad8ae5e352c99bbd87955c64cc9a0654da8c3.tar.bz2
Merged revisions 69846 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r69846 | mark.dickinson | 2009-02-21 21:27:01 +0100 (Sat, 21 Feb 2009) | 2 lines Issue #5341: Fix a variety of spelling errors. ........
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index eb8083f..3fd081d 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -2400,7 +2400,7 @@ posix_listdir(PyObject *self, PyObject *args)
static PyObject *
posix__getfullpathname(PyObject *self, PyObject *args)
{
- /* assume encoded strings wont more than double no of chars */
+ /* assume encoded strings won't more than double no of chars */
char inbuf[MAX_PATH*2];
char *inbufp = inbuf;
Py_ssize_t insize = sizeof(inbuf);
@@ -5034,7 +5034,7 @@ _PyPopenCreateProcess(char *cmdstring,
"Your program accessed mem currently in use at xxx"
and a hopeful warning about the stability of your
system.
- Cost is Ctrl+C wont kill children, but anyone
+ Cost is Ctrl+C won't kill children, but anyone
who cares can have a go!
*/
dwProcessFlags |= CREATE_NEW_CONSOLE;