[Python-checkins] r84989 - python/branches/py3k/Modules/posixmodule.c

brian.curtin python-checkins at python.org
Fri Sep 24 02:03:39 CEST 2010


Author: brian.curtin
Date: Fri Sep 24 02:03:39 2010
New Revision: 84989

Log:
Fix a typo. full->final


Modified:
   python/branches/py3k/Modules/posixmodule.c

Modified: python/branches/py3k/Modules/posixmodule.c
==============================================================================
--- python/branches/py3k/Modules/posixmodule.c	(original)
+++ python/branches/py3k/Modules/posixmodule.c	Fri Sep 24 02:03:39 2010
@@ -2655,7 +2655,7 @@
     PyObject *result;
     wchar_t *path;
     
-    if (!PyArg_ParseTuple(args, "u|:_getfullpathname", &path)) {
+    if (!PyArg_ParseTuple(args, "u|:_getfinalpathname", &path)) {
         return NULL;
     }
 


More information about the Python-checkins mailing list