diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-28 05:57:51 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-28 05:57:51 (GMT) |
commit | e860f9b983568efad41ab8cc828a107cf2096cb4 (patch) | |
tree | 24a5818c86cf4d3483035c9c16c62b375bdc2648 | |
parent | f91ed2ddcfa18ae7bb821a402791ed8afdf2476d (diff) | |
download | cpython-e860f9b983568efad41ab8cc828a107cf2096cb4.zip cpython-e860f9b983568efad41ab8cc828a107cf2096cb4.tar.gz cpython-e860f9b983568efad41ab8cc828a107cf2096cb4.tar.bz2 |
Ack -- my eyes are getting bleary. Typos in the comment typo repairs.
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 1d9758b..a5c5d4c 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1021,7 +1021,7 @@ 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, exclusive of trailing null). name is the last component of that path - & a string of length namelen, exclusive of trailing null). + * (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. |