~/Documents/SWIG/cc_plist$ PYTHONPATH=build/lib.darwin-8.2.0-Power_Macintosh-2.3/ python Python 2.3.5 (#1, Mar 20 2005, 20:38:20) [GCC 3.3 20030304 (Apple Computer, Inc. build 1809)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import cc_plist >>> plist = cc_plist.cc_plist >>> plist(1).show() {value = +1, type = kCFNumberSInt32Type} >>> plist(-98.765).show() {value = -98.76500000000000056843, type = kCFNumberFloat64Type} >>> plist("abcdefgh").show() abcdefgh >>> plist([ plist(1), plist(-98.765), plist('abcdefgh') ]).show() {type = immutable, count = 3, values = ( 0 : {value = +1, type = kCFNumberSInt32Type} 1 : {value = -98.76500000000000056843, type = kCFNumberFloat64Type} 2 : {contents = "abcdefgh"} )} >>> plist([ plist(1), plist([ plist(-98.765), plist('abcdefgh') ]) ]).show() {type = immutable, count = 2, values = ( 0 : {value = +1, type = kCFNumberSInt32Type} 1 : {type = immutable, count = 2, values = ( 0 : {value = -98.76500000000000056843, type = kCFNumberFloat64Type} 1 : {contents = "abcdefgh"} )} )} >>> ^D ~/Documents/SWIG/cc_plist$