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 lakin.wecker
Recipients aminusfu, lakin.wecker
Date 2007-10-10.20:04:47
SpamBayes Score 0.030193992
Marked as misclassified No
Message-id <1192046687.64.0.150972383697.issue1257@psf.upfronthosting.co.za>
In-reply-to
Content
sorry for the noise and duplication.  The full code listing should have
been:

 	46	        # Sometimes an exception happens during exit, try to make
sure we get   
 	47	        # a non_zero exit code. 
 	48	        old_exitfunc = sys.exitfunc 
 	49	        def exitfunc(): 
 	50	            try: 
 	51	                old_exitfunc() 
 	52	            except SystemExit: 
 	53	                raise 
 	54	            except: 
 	55	                raise SystemExit(1) 
 	56	        sys.exitfunc = exitfunc
History
Date User Action Args
2007-10-10 20:04:47lakin.weckersetspambayes_score: 0.030194 -> 0.030193992
recipients: + lakin.wecker, aminusfu
2007-10-10 20:04:47lakin.weckersetspambayes_score: 0.030194 -> 0.030194
messageid: <1192046687.64.0.150972383697.issue1257@psf.upfronthosting.co.za>
2007-10-10 20:04:47lakin.weckerlinkissue1257 messages
2007-10-10 20:04:47lakin.weckercreate