|
From: <bc...@wo...> - 2001-02-27 13:02:53
|
[brian] >Quick question, what's the reason behind CollectionProxy[2] not being a >subclass of PyObject? I'm curious because it's functionality is exactly >what I want but unfortunately I need a PyObject. The CollectionProxy and CollectionProxy2 classes are purely helper classes for PyInstance. They are not part of the public API and to make that more visible, in Jython-2.1 these two classes will be package private. They do not subclass PyObject because they are never exposed to any python script. So there are no need to carry the additional PyObject baggage. regards, finn |