From: Brian Curtin Date: Fri, 24 Sep 2010 00:03:39 +0000 (+0000) Subject: Fix a typo. full->final X-Git-Tag: v3.2a3~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=94622b001323de92bd14e5dcd25ea97f73227cbc;p=thirdparty%2FPython%2Fcpython.git Fix a typo. full->final --- diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 79faa18c176b..07ede0adb0cd 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; }