]> granicus.if.org Git - python/commitdiff
Fixed silly typo.
authorJack Jansen <jack.jansen@cwi.nl>
Tue, 17 Dec 2002 23:29:27 +0000 (23:29 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Tue, 17 Dec 2002 23:29:27 +0000 (23:29 +0000)
Added comment (to myself) on what still needs to be done.

Mac/Modules/file/_Filemodule.c
Mac/Modules/file/filesupport.py

index eaaa54771ef901b10e74c1a5d69b3075c89a5cdc..0322ccacaf89af46f7794d9d68969e13878411aa 100644 (file)
@@ -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 
index 4a215be1c2d0fd403eb9a36dfd142ab5c9f41181..a0406b71b55a3452c6648c85957678ec7e9482eb 100644 (file)
@@ -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