diff options
author | Walter Dörwald <walter@livinglogic.de> | 2006-09-21 15:09:55 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2006-09-21 15:09:55 (GMT) |
commit | d14bf61d0528d040183ba9ae7f6b8b4e340818ef (patch) | |
tree | 7e075f0ae8a4a3cee62390e22835528afae74a8d /Python | |
parent | c8939d23fe24df04e3365427d3b00df97c2792c4 (diff) | |
download | cpython-d14bf61d0528d040183ba9ae7f6b8b4e340818ef.zip cpython-d14bf61d0528d040183ba9ae7f6b8b4e340818ef.tar.gz cpython-d14bf61d0528d040183ba9ae7f6b8b4e340818ef.tar.bz2 |
Fix typo.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 3fca9cd..b676a5e 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -1747,7 +1747,7 @@ PyArg_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssize_t m /* For type constructors that don't take keyword args * * Sets a TypeError and returns 0 if the kwds dict is - * not emtpy, returns 1 otherwise + * not empty, returns 1 otherwise */ int _PyArg_NoKeywords(const char *funcname, PyObject *kw) |