summaryrefslogtreecommitdiffstats
path: root/Mac/Modules
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-03-19 22:51:42 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-03-19 22:51:42 (GMT)
commitfe94e97e48285c9917921aff231dae7b650141d7 (patch)
tree2b35b3067149138e41acfcab27d4726503200039 /Mac/Modules
parent5ddd4c3f77abe9282479d901696dfa73e6c3d573 (diff)
downloadcpython-fe94e97e48285c9917921aff231dae7b650141d7.zip
cpython-fe94e97e48285c9917921aff231dae7b650141d7.tar.gz
cpython-fe94e97e48285c9917921aff231dae7b650141d7.tar.bz2
GetCreatorAndType and SetCreatorAndType have been undeprecated. Spotted by
Just.
Diffstat (limited to 'Mac/Modules')
-rw-r--r--Mac/Modules/macosmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/macosmodule.c b/Mac/Modules/macosmodule.c
index 92d5452..6790418 100644
--- a/Mac/Modules/macosmodule.c
+++ b/Mac/Modules/macosmodule.c
@@ -304,7 +304,7 @@ static PyTypeObject Rftype = {
/*----------------------------------------------------------------------*/
/* Miscellaneous File System Operations */
-static char getcrtp_doc[] = "Obsolete, use macfs module";
+static char getcrtp_doc[] = "Get MacOS 4-char creator and type for a file";
static PyObject *
MacOS_GetCreatorAndType(PyObject *self, PyObject *args)
@@ -326,7 +326,7 @@ MacOS_GetCreatorAndType(PyObject *self, PyObject *args)
return res;
}
-static char setcrtp_doc[] = "Obsolete, use macfs module";
+static char setcrtp_doc[] = "Set MacOS 4-char creator and type for a file";
static PyObject *
MacOS_SetCreatorAndType(PyObject *self, PyObject *args)