This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gregory.p.smith
Recipients gregory.p.smith
Date 2008-01-21.03:16:37
SpamBayes Score 0.009255163
Marked as misclassified No
Message-id <1200885398.77.0.949284780562.issue1275@psf.upfronthosting.co.za>
In-reply-to
Content
a code snipped using a database d that demonstrates this:

    c = d.cursor()
    d.close()
    print >>sys.stderr, "database closed before cursor"
    del c
    print >>sys.stderr, "cursor deleted and we didn't crash!"
History
Date User Action Args
2008-01-21 03:16:38gregory.p.smithsetspambayes_score: 0.00925516 -> 0.009255163
recipients: + gregory.p.smith
2008-01-21 03:16:38gregory.p.smithsetspambayes_score: 0.00925516 -> 0.00925516
messageid: <1200885398.77.0.949284780562.issue1275@psf.upfronthosting.co.za>
2008-01-21 03:16:37gregory.p.smithlinkissue1275 messages
2008-01-21 03:16:37gregory.p.smithcreate