diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-09-24 00:03:39 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-09-24 00:03:39 (GMT) |
commit | 94622b001323de92bd14e5dcd25ea97f73227cbc (patch) | |
tree | 1ed25d14220d073589045755c9a17351caa77b6e /Modules/posixmodule.c | |
parent | 0dac808b3e101b6e5199d5a81c4f1d191df9ab8c (diff) | |
download | cpython-94622b001323de92bd14e5dcd25ea97f73227cbc.zip cpython-94622b001323de92bd14e5dcd25ea97f73227cbc.tar.gz cpython-94622b001323de92bd14e5dcd25ea97f73227cbc.tar.bz2 |
Fix a typo. full->final
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 79faa18..07ede0a 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -2655,7 +2655,7 @@ posix__getfinalpathname(PyObject *self, PyObject *args) PyObject *result; wchar_t *path; - if (!PyArg_ParseTuple(args, "u|:_getfullpathname", &path)) { + if (!PyArg_ParseTuple(args, "u|:_getfinalpathname", &path)) { return NULL; } |