dgpb
dgpb
That's understandable. Thank you for taking your time. I think I will just use `pnumpy` for the time being and get back to this when I have gathered more information.
> > Thanks, @bernardmotoni, I get still a terminal icon in the dock, is there a way to prevent this? > > R u ready for the workout? LOL >...
I think this is great idea! I had a need for similar object several times. Few times it was just wrapping an attribute and one time proxying a list of...
I have a descriptor: ```python class Descriptor(ObjectProxy): def __init__(self, attr) self.attr = attr def __call__(self, wrapped): super().__init__(wrapped) def __get__(self, inst, owner): return self.__wrapped__(self.attr) ``` So I want to keep inheriting...
These don't work for C implementation, however I am pretty sure they do in pure python. Making it work in C, would make these more similar :)
Python implementation works fine and metaclass takes care of things for all inherited classes, C implementation is where things "malfunction". And I like C for obvious reasons. I found that...
Just for curiosity, which functionality of ProxyObject benefits most from C's implementation over python's? Construction seems to be about 5x, however attribute access, such as __doc__ look similar. Also, `__doc__`...
Thank you, that answered it.
Do I leave this so that someone can take a look, or do I close this?
bumpver test '2023.1053-b0' 'YYYY.BUILD[-PYTAGNUM]' --tag-num and bumpver test '2023.1053-b0' 'YYYY.BUILD[-PYTAGNUM]' both give the same answer. How do I get '2023.1053-b1' then? What am I missing?