diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-19 22:51:42 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-19 22:51:42 (GMT) |
commit | fe94e97e48285c9917921aff231dae7b650141d7 (patch) | |
tree | 2b35b3067149138e41acfcab27d4726503200039 | |
parent | 5ddd4c3f77abe9282479d901696dfa73e6c3d573 (diff) | |
download | cpython-fe94e97e48285c9917921aff231dae7b650141d7.zip cpython-fe94e97e48285c9917921aff231dae7b650141d7.tar.gz cpython-fe94e97e48285c9917921aff231dae7b650141d7.tar.bz2 |
GetCreatorAndType and SetCreatorAndType have been undeprecated. Spotted by
Just.
-rw-r--r-- | Mac/Modules/macosmodule.c | 4 |
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) |