Hi Marc,
Thanks for the suggestion,
On 27/09/2021 09:38, Marc-Andre Lemburg wrote:
Hi Robin,
seeing that no one replied to your question, I'd suggest to ask this
on the Python C-API ML:
https://mail.python.org/mailman3/lists/capi-sig.python.org/
That's where the experts are, including the o
Hi Robin,
seeing that no one replied to your question, I'd suggest to ask this
on the Python C-API ML:
https://mail.python.org/mailman3/lists/capi-sig.python.org/
That's where the experts are, including the ones who implemented
the mutli-phase logic.
Cheers,
--
Marc-Andre Lemburg
eGenix.com
P
I have a c extension which is intended to implement a module the looks
structurally like this
a = 1
b = 2
class T:
def __init__(self):
self.a = a
self.b = b
so when an object of type T is instantiated it can set up defaults based on the
current m