summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-12-17 23:29:27 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-12-17 23:29:27 (GMT)
commit1795f29b4b87c34876cae4e3a7653f0f79b1f8e4 (patch)
tree98e65cded2a9a20aa221e2ed979fef00d9af9d8a /Mac
parent58fc91f9471f04a2826e62943542252d2b37f106 (diff)
downloadcpython-1795f29b4b87c34876cae4e3a7653f0f79b1f8e4.zip
cpython-1795f29b4b87c34876cae4e3a7653f0f79b1f8e4.tar.gz
cpython-1795f29b4b87c34876cae4e3a7653f0f79b1f8e4.tar.bz2
Fixed silly typo.
Added comment (to myself) on what still needs to be done.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Modules/file/_Filemodule.c4
-rw-r--r--Mac/Modules/file/filesupport.py9
2 files changed, 9 insertions, 4 deletions
diff --git a/Mac/Modules/file/_Filemodule.c b/Mac/Modules/file/_Filemodule.c
index eaaa547..0322cca 100644
--- a/Mac/Modules/file/_Filemodule.c
+++ b/Mac/Modules/file/_Filemodule.c
@@ -2394,8 +2394,8 @@ myPyMac_GetFSSpec(PyObject *v, FSSpec *spec)
/* Otherwise we try to go via an FSRef. On OSX we go all the way,
** on OS9 we accept only a real FSRef object
*/
-#if TARGET_API_MAX_OSX
- if ( myPyMac_GetFSRef(v, &fsr) >= 0 ) {
+#if TARGET_API_MAC_OSX
+ if ( myPyMac_GetFSRef(v, &fsr) ) {
#else
if ( PyArg_Parse(v, "O&", FSRef_Convert, &fsr) ) {
#endif
diff --git a/Mac/Modules/file/filesupport.py b/Mac/Modules/file/filesupport.py
index 4a215be..a0406b7 100644
--- a/Mac/Modules/file/filesupport.py
+++ b/Mac/Modules/file/filesupport.py
@@ -2,6 +2,11 @@
# It uses the "bgen" package to generate C code.
# The function specifications are generated by scanning the mamager's header file,
# using the "scantools" package (customized for this particular manager).
+#
+# XXXX TO DO:
+# - implement rawdata initializers
+# - Implement correct missing FSSpec handling for Alias methods
+# - Implement FInfo
import string
@@ -157,8 +162,8 @@ myPyMac_GetFSSpec(PyObject *v, FSSpec *spec)
/* Otherwise we try to go via an FSRef. On OSX we go all the way,
** on OS9 we accept only a real FSRef object
*/
-#if TARGET_API_MAX_OSX
- if ( myPyMac_GetFSRef(v, &fsr) >= 0 ) {
+#if TARGET_API_MAC_OSX
+ if ( myPyMac_GetFSRef(v, &fsr) ) {
#else
if ( PyArg_Parse(v, "O&", FSRef_Convert, &fsr) ) {
#endif