Re: [Pyobjc-dev] Auto bridging instances by conversion
Brought to you by:
ronaldoussoren
From: Ronald O. <ous...@ci...> - 2003-02-04 07:04:10
|
On Monday, Feb 3, 2003, at 21:10 Europe/Amsterdam, Bob Ippolito wrote: [ interesting text removed] > Unfortunately this _still_ won't work with re.match (at least in > Jaguar's 2.2.0, I'd consider this a bug in re.match), but it *does* > work with open() Be warned that some (many?) C functions assume that if an object is an instance of PyString_Type (either directly or an instance of a subclass of str) they can use PyString_AS_STRING on it. The same thing is true for most other buildin types. This means the NS* types can never be a full substitute for native python types (which is really too bad). Ronald |