PyScripter added the comment:

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

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1685>
__________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to