summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/list/listscan.py
diff options
context:
space:
mode:
authorJust van Rossum <just@letterror.com>2001-11-05 08:27:57 (GMT)
committerJust van Rossum <just@letterror.com>2001-11-05 08:27:57 (GMT)
commitdd4830ac1dffd95d1f17e080421483a9010720f6 (patch)
tree1eff0b9606f44b6dde35d28963a5997dc2f54799 /Mac/Modules/list/listscan.py
parent7a33d8bb64697eca6c1999610ff96f6fb9d92014 (diff)
downloadcpython-dd4830ac1dffd95d1f17e080421483a9010720f6.zip
cpython-dd4830ac1dffd95d1f17e080421483a9010720f6.tar.gz
cpython-dd4830ac1dffd95d1f17e080421483a9010720f6.tar.bz2
More List Manager interfacing:
- CreateCustomList(): write LDEF's in Python! (carbon + classic) - list.LGetCellDataLocation() (Jack: what's with this _WIN32/pywintoolbox.h stuff?)
Diffstat (limited to 'Mac/Modules/list/listscan.py')
-rw-r--r--Mac/Modules/list/listscan.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/Mac/Modules/list/listscan.py b/Mac/Modules/list/listscan.py
index faf81c0..7342fd8 100644
--- a/Mac/Modules/list/listscan.py
+++ b/Mac/Modules/list/listscan.py
@@ -39,7 +39,8 @@ class MyScanner(Scanner):
return [
"LDispose", # Done by removing the object
"LSearch", # We don't want to handle procs just yet
- "LGetCellDataLocation", # What does this do??
+ "CreateCustomList", # done manually
+ "SetListDefinitionProc",
# These have funny argument/return values
"GetListViewBounds",
@@ -54,10 +55,7 @@ class MyScanner(Scanner):
def makeblacklisttypes(self):
return [
- 'ListDefSpec', # Too difficult for now
- 'ListDefSpec_ptr', # ditto
- "ListDefUPP",
- "ListClickLoopUPP",
+ "ListClickLoopUPP", # Too difficult for now
]
def makerepairinstructions(self):