New submission from Christian Klein :
Add command fr(ame) to jump to a stack frame in the Python debugger
--
components: Library (Lib)
messages: 330703
nosy: cnklein
priority: normal
pull_requests: 10045
severity: normal
status: open
title: Add frame command to pub
Christian Klein added the comment:
Wow, that's very embarrassing. Thank you.
(I tried to get further help before but nobody recognized that stupid mistake)
--
___
Python tracker
<http://bugs.python.org/is
New submission from Christian Klein:
The Python 2.7 re module seems not to agree what to consider a word character:
import re
s = u'f\xfc'
print re.sub('\W', '*', s, re.UNICODE)
print re.findall('\w', s, re.UNICODE)
The application of re.sub remov