summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-02-28 05:56:18 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-02-28 05:56:18 (GMT)
commitf91ed2ddcfa18ae7bb821a402791ed8afdf2476d (patch)
treef667af9e956994b6586f2cdfaaa87ba35991e656 /Python
parent50d8d37b3f594db8b9ab228a55a1bf56ea846b4b (diff)
downloadcpython-f91ed2ddcfa18ae7bb821a402791ed8afdf2476d.zip
cpython-f91ed2ddcfa18ae7bb821a402791ed8afdf2476d.tar.gz
cpython-f91ed2ddcfa18ae7bb821a402791ed8afdf2476d.tar.bz2
Comment typos.
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/import.c b/Python/import.c
index 52b8074..1d9758b 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -1020,8 +1020,8 @@ find_module(char *realname, PyObject *path, char *buf, size_t buflen,
/* case_ok(buf, len, namelen, name)
* We've already done a successful stat() or fopen() on buf (a path of length
- * len; can not assume there's a trailing null). name is the last component
- * of then path (a string of length namelen, exclusive of trailing null).
+ * len, exclusive of trailing null). name is the last component of that path
+ & a string of length namelen, exclusive of trailing null).
* case_ok() is to return 1 if there's a case-sensitive match for
* name, else 0. case_ok() is also to return 1 if envar PYTHONCASEOK
* exists.