In message , Lawrence D'Oliveiro wrote:
> The basic control flow is this:
> * Unconditionally initialize all dynamic storage to nil
> * Do the main body of the code, aborting in any error
> * Regardless of success or failure of the above, dispose of all
> allocated dynamic storag
Lawrence D'Oliveiro, 08.02.2010 09:53:
> I wrote my first Python extension library over the last couple of weeks. I
> took note of all the recommendations to keep track of reference counts, to
> ensure that objects were not disposed when they shouldn’t be, and were when
> they should.
This soun
I wrote my first Python extension library over the last couple of weeks. I
took note of all the recommendations to keep track of reference counts, to
ensure that objects were not disposed when they shouldn’t be, and were when
they should. However, the example code seems to use gotos. And the tro