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 pyscripter
Recipients pyscripter
Date 2007-12-29.04:14:09
SpamBayes Score 0.11083432
Marked as misclassified No
Message-id <1198901649.45.0.213510982443.issue1685@psf.upfronthosting.co.za>
In-reply-to
Content
To reproduce the error:

a) Save the following file in utf-8 format as c:\temp\module1.py
# -*- coding: utf-8 -*-
print("ψ")

b) Run the following script:
import pdb
d = pdb.Pdb()
filename = r"c:\Temp\module1.py"
print(d.set_break(filename,1))

Expected result
None

Actual Result
Line c:\temp\module1.py:1 does not exist
History
Date User Action Args
2007-12-29 04:14:09pyscriptersetspambayes_score: 0.110834 -> 0.11083432
recipients: + pyscripter
2007-12-29 04:14:09pyscriptersetspambayes_score: 0.110834 -> 0.110834
messageid: <1198901649.45.0.213510982443.issue1685@psf.upfronthosting.co.za>
2007-12-29 04:14:09pyscripterlinkissue1685 messages
2007-12-29 04:14:09pyscriptercreate