[Tutor] Python 2.7 Static Version and Postgresql

2012-05-28 Thread Opher Lubzens
with the Postgresql API? Thanks, Opher Lubzens ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Python 2.7 Static Version and Postgresql

2012-05-29 Thread Opher Lubzens
On Tue, May 29, 2012 at 1:25 PM, Joel Goldstick wrote: > On Tue, May 29, 2012 at 2:42 AM, Opher Lubzens > wrote: > > Hello to the list, I'm working on a python script that has to interact > with > > a Postgresql database, and the only python version I can use is python

Re: [Tutor] Python 2.7 Static Version and Postgresql

2012-05-29 Thread Opher Lubzens
library, or other modification that is not included in a static bundle, on the machine- thus the need for either a built-in or the ability to rebundle the package so it includes them. Thanks, Opher Lubzens ___ Tutor maillist - Tutor@python.org

Re: [Tutor] Python 2.7 Static Version and Postgresql

2012-05-29 Thread Opher Lubzens
On Tue, May 29, 2012 at 6:26 PM, Walter Prins wrote: > Hi, > > On 29 May 2012 14:40, Opher Lubzens wrote: > > I presume you can't develop on a VM which is less restrictive by any > chance?  How about setting up something similar to Movable Python or > Portable Python o

Re: [Tutor] Python 2.7 Static Version and Postgresql

2012-06-06 Thread Opher Lubzens
On Tue, May 29, 2012 at 9:26 PM, Opher Lubzens wrote: > > That actually might be workable- I'll have to look into it. I'll have > to understand them better then I do after a brief look in their > webpages and check whether they're compatible with our specific flavor &

[Tutor] handling exception raising in atexit registered function

2015-04-21 Thread Opher Lubzens
Hi, I am developing an automated testing script in python which will, among other things, send an email when it is done. For this I would like to send an email when an exception is raised as well - since it already has a cleanup function registered with atexit, this is the logical place to do it. H