Preview of Python 3.3 support

This commit is contained in:
Michael Hansen
2012-05-26 13:50:23 -07:00
parent 3fb340ccd8
commit 50657fb984
9 changed files with 311 additions and 190 deletions

View File

@@ -64,7 +64,7 @@ PycRef<PycObject> CreateObject(int type)
return new PycSet(PycObject::TYPE_FROZENSET);
default:
fprintf(stderr, "CreateObject: Got unsupported type 0x%X\n", type);
return (PycObject*)0;
return Pyc_NULL;
}
}