diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-16 12:04:32 +0000 |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-16 12:04:32 +0000 |
commit | 764fa07469563f448c0ab6a20dad3943e4231ce5 (patch) | |
tree | 44b099de81d99a0e892ef5afbf5f49abf2dd98aa /Python/dynload_next.c | |
parent | 68d8117162e83550ba7f5c949f6fbea19d1d3cc0 (diff) | |
download | cpython-764fa07469563f448c0ab6a20dad3943e4231ce5.tar.gz |
Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either
comments, docstrings or error messages. I fixed two minor things in
test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't").
There is a minor style issue involved: Guido seems to have preferred English
grammar (behaviour, honour) in a couple places. This patch changes that to
American, which is the more prominent style in the source. I prefer English
myself, so if English is preferred, I'd be happy to supply a patch myself ;)
Diffstat (limited to 'Python/dynload_next.c')
-rw-r--r-- | Python/dynload_next.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/dynload_next.c b/Python/dynload_next.c index 2d02cc6623..a352edcf18 100644 --- a/Python/dynload_next.c +++ b/Python/dynload_next.c @@ -162,7 +162,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, return NULL; } if (!NSIsSymbolNameDefined(funcname)) { - /* UnlinkModule() isn't implimented in current versions, but calling it does no harm */ + /* UnlinkModule() isn't implemented in current versions, but calling it does no harm */ NSUnLinkModule(newModule, FALSE); PyErr_Format(PyExc_ImportError, "Loaded module does not contain symbol %.200s", |