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 loewis
Recipients georg.brandl, loewis, meador.inge, orsenthil, python-dev, tshepang, xdegaye
Date 2012-05-01.18:02:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335895326.79.0.122202961464.issue13183@psf.upfronthosting.co.za>
In-reply-to
Content
The test fails on Windows. Whereas on Unix, the two step commands produce this output:

-> print('1')
(Pdb) step
1
--Return--
> /net/pao/export/home/staff/loewis/work/33/bar.py(2)bar()->None
-> print('1')
(Pdb) step
--Return--
> /net/pao/export/home/staff/loewis/work/33/main.py(5)foo()->None
-> bar()
(Pdb) quit

on Windows, they produce this output:

-> print('1')
(Pdb) step
--Call--
> c:\users\martin\33\python\lib\encodings\cp850.py(18)encode()
-> def encode(self, input, final=False):
(Pdb) step
> c:\users\martin\33\python\lib\encodings\cp850.py(19)encode()
-> return codecs.charmap_encode(input,self.errors,encoding_map)[0]
(Pdb) quit

I.e. the stepping enters the print, and breaks in the codec.

Reopening the issue.
History
Date User Action Args
2012-05-01 18:02:06loewissetrecipients: + loewis, georg.brandl, orsenthil, meador.inge, xdegaye, tshepang, python-dev
2012-05-01 18:02:06loewissetmessageid: <1335895326.79.0.122202961464.issue13183@psf.upfronthosting.co.za>
2012-05-01 18:02:06loewislinkissue13183 messages
2012-05-01 18:02:06loewiscreate