[Pyobjc-dev] todo (feel free to add items)
Brought to you by:
ronaldoussoren
|
From: Steven D. M. <sd...@mi...> - 2000-12-23 04:52:45
|
ToDo's:
[1] make a todo list.
[2] Get a snapshot of Python2.0 with the objc patches online
as well as a pyobjc snapshot on sourceforge.
[3] documentation, documentation, documentation...
[4] examples, examples, examples...
[5] Fix NSProxy/OC_PythonObject problems.
[6] start a module of useful utility and wrapper functions, for example:
rt = ObjC.runtime # abbreviations
def LoadBundle( path ):
Bundle = rt.NSBundle
bundle = Bundle.bundleWithPath_( path )
bundle.load()
return bundle
used as:
AppKit = LoadBundle( '/System/Library/Frameworks/AppKit.framework')
( maybe also a more abbreviated NSAutoreleasePool creation -- it
would be handy for interactive use . What else? )
-- Steve Majewski <sd...@Vi...>
|