Would someone check this Python -> C translation:
> +/* if type(value) is Proxy: */
> +/* return value */
> + if ((PyObject*)(value->ob_type) == Proxy)
> + {
> + Py_INCREF(value);
> + return value;
> + }
Trivial, but I don't have a lot of experience. Just want to make sure.
-- Garrett