From: Stefan K. <pon...@ya...> - 2004-11-01 21:59:48
|
in backend_agg lines 194 and 211, my application was passing unicodes which were generating a CXX type error ( expecting a string ). I put in a str( .. ) around the 's' arg in these 2 lines and everything worked. i.e. font.set_text( s, 0.0) changed to.. font.set_text( str( s ), 0.0) Just a note that unicodes cause a problem going through CXX when a string is expected. S __________________________________ Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com |