On Sun, Sep 25, 2011 at 11:54 AM, Federico Schwindt wrote:
> Hi,
>
> Comments below:
>
> On Fri, Sep 23, 2011 at 1:25 AM, Anders Langworthy
> wrote:
>> (redirected here by maintainer)
>>
>> Hi,
>>
>> I've having some minor problems with python-2.7
>>
>> [snip]
>>
>> 2. Signal handling doesn't wo
@ Anders Langworthy wrote (2011-09-25 18:20+0200):
> >> 2. Signal handling doesn't work [.]
> >> I think this is an issue with python and not cherrypy.
> >>[..]
> >> (here with py2.7: ^C from keyboard doesn't work and signals sent from
> >> "kill" (except SIGKILL are ignored). Process is not hung
On Sun, Sep 25, 2011 at 11:54 AM, Federico Schwindt wrote:
> Hi,
>
> Comments below:
>
> On Fri, Sep 23, 2011 at 1:25 AM, Anders Langworthy
> wrote:
>> (redirected here by maintainer)
>>
>> Hi,
>>
>> I've having some minor problems with python-2.7
>>
>> 1. pdb throws an exception at the end of
Hi,
Comments below:
On Fri, Sep 23, 2011 at 1:25 AM, Anders Langworthy wrote:
> (redirected here by maintainer)
>
> Hi,
>
> I've having some minor problems with python-2.7
>
> 1. pdb throws an exception at the end of a debugging session:
>
> sprawl$ cat debug.py
> import pdb
>
> pdb.set_trace()
(redirected here by maintainer)
Hi,
I've having some minor problems with python-2.7
1. pdb throws an exception at the end of a debugging session:
sprawl$ cat debug.py
import pdb
pdb.set_trace()
a = 1
b = 2
sum = a + b
sprawl$ python2.7 debug.py
> /home/anders/code/random/debug.py(4)()
-> a =