summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-09-24 00:03:39 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-09-24 00:03:39 (GMT)
commit94622b001323de92bd14e5dcd25ea97f73227cbc (patch)
tree1ed25d14220d073589045755c9a17351caa77b6e /Modules
parent0dac808b3e101b6e5199d5a81c4f1d191df9ab8c (diff)
downloadcpython-94622b001323de92bd14e5dcd25ea97f73227cbc.zip
cpython-94622b001323de92bd14e5dcd25ea97f73227cbc.tar.gz
cpython-94622b001323de92bd14e5dcd25ea97f73227cbc.tar.bz2
Fix a typo. full->final
Diffstat (limited to 'Modules')
-rw-r--r--Modules/posixmodule.c2
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;
}