diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-10-20 14:34:48 +0000 |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-10-20 14:34:48 +0000 |
commit | 4958f2741aebb85bdfd7f7c9f108f1b6e3734ae9 (patch) | |
tree | e92fac7c72f0215bc83f2650353823a00eead74f /Python | |
parent | Patch #823259: Update spec file: (diff) | |
download | cpython-4958f2741aebb85bdfd7f7c9f108f1b6e3734ae9.tar.gz cpython-4958f2741aebb85bdfd7f7c9f108f1b6e3734ae9.tar.bz2 cpython-4958f2741aebb85bdfd7f7c9f108f1b6e3734ae9.zip |
Backport checkin:
Fix a bunch of typos in documentation, docstrings and comments.
(From SF patch #810751)
Diffstat (limited to 'Python')
-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 858f9e57c41..6e97899abbb 100644 --- a/Python/import.c +++ b/Python/import.c @@ -553,7 +553,7 @@ _PyImport_FindExtension(char *name, char *filename) /* Get the module object corresponding to a module name. First check the modules dictionary if there's one there, - if not, create a new one and insert in in the modules dictionary. + if not, create a new one and insert it in the modules dictionary. Because the former action is most common, THIS DOES NOT RETURN A 'NEW' REFERENCE! */ |