From: Peter Otten <__pete...@web.de>
To: python-list@python.org
Cc:
Date: Thu, 14 Feb 2013 09:00:58 +0100
Subject: Re: "Exception ... in ignored" Messages
Ami Tavory wrote:
> Hi,
>
> Running the unit tests for some generator code, prints, as a side
> effect,
>
Hi,
Running the unit tests for some generator code, prints, as a side effect,
numerous messages of the form:
...
Exception NameError: "global name 'l' is not defined" in ignored
Exception AttributeError: "'NoneType' object has no attribute 'close'" in
ignored
Exception AttributeError: "'Non
From: Irmen de Jong
>> To: python-list@python.org
>> Cc:
>> Date: Mon, 03 Dec 2012 01:10:23 +0100
>> Subject: Re: setup.py Choosing Older Compiler On Windows
>> On 2-12-2012 22:06, Dave Angel wrote:
>> > On 12/02/2012 09:34 AM, Ami Tavory wrote:
>&
Hello,
I'm porting a C++ extension module to a Windows machine that has both VC8
and VC10 installed. Unfortunately, `setup.py build` tries to build using
VC8, which fails (the extension uses C++ standard libraries that VC didn't
used to have). Is there a way to get setup.py to use VC10 (prefe
From: MRAB
To: python-list@python.org
Cc:
Date: Sun, 25 Mar 2012 22:14:28 +0100
Subject: Re: bdb.Bdb (Debugger Base Class) / unittest Interaction
On 25/03/2012 21:42, Ami Tavory wrote:
> Hello,
>
> I'm having some difficulties with the interaction between bdb.Bdb and
> scri
Hello,
I'm having some difficulties with the interaction between bdb.Bdb and
scripts which contain unittest. Following are two simplified scenarios of a
GUI debugger Gedit plugin I'm writing based on bdb.Bdb, and a script that
is being debugged by it.
--Scenario A--
The script being debugg
-- Forwarded message --
From: Cameron Simpson
Date: Mon, Mar 12, 2012 at 1:04 AM
Subject: Re: Launching A Truly Disjoint Process
To: Dave Angel
Cc: Ami Tavory , python-list@python.org
On 11Mar2012 17:34, Dave Angel wrote:
| On 03/11/2012 05:01 PM, Ami Tavory wrote:
| >
Hello,
I'm encountering a problem using the multiprocessing module to create a
process that is truly disjoint from the parent process: i.e., one that
contains no "memory" of the parent process, nor any record in the parent
process that it is its child. This originated in a pygtk problem, but I