+2006-08-24 Helge Hess <helge.hess@opengroupware.org>
+
+ * NSObject+XmlRpc.m: added support for 'nil' type as submitted by
+ xmlrpclib with the 'allow_none' option set (v4.5.29)
+
2006-07-03 Helge Hess <helge.hess@opengroupware.org>
* fixed gcc 4.1 warnings, use %p for pointer formats (v4.5.28)
static NSDictionary *typeToClass = nil;
Class ObjClass = Nil;
id obj;
+
+ if ([@"nil" isEqualToString:_type]) /* Python with allow_none */
+ return nil;
if (typeToClass == nil) {
typeToClass = [[NSDictionary alloc] initWithObjectsAndKeys:
# version file
-SUBMINOR_VERSION:=28
+SUBMINOR_VERSION:=29