diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-10-03 21:58:55 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-10-03 21:58:55 (GMT) |
commit | 5a9aa4f31ce54a0dee6549480c13e3a2c117933e (patch) | |
tree | 8c2fa866e60209f366cad9bda1b6436a1be84ad7 | |
parent | 2c050af28b6e4f718f11f2440df85daeb1bc3ece (diff) | |
download | cpython-5a9aa4f31ce54a0dee6549480c13e3a2c117933e.zip cpython-5a9aa4f31ce54a0dee6549480c13e3a2c117933e.tar.gz cpython-5a9aa4f31ce54a0dee6549480c13e3a2c117933e.tar.bz2 |
Fix minor typo in a comment.
-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 a04654e..a90729a 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1801,7 +1801,7 @@ load_module(char *name, FILE *fp, char *buf, int type, PyObject *loader) /* Initialize a built-in module. - Return 1 for succes, 0 if the module is not found, and -1 with + Return 1 for success, 0 if the module is not found, and -1 with an exception set if the initialization failed. */ static int |