[issue36130] Pdb(skip=[...]) + module without __name__ => TypeError

2019-11-14 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks @blueyed, I guess the backport was not made by the bot though the label was applied for 3.7 branch. -- ___ Python tracker _

[issue36130] Pdb(skip=[...]) + module without __name__ => TypeError

2019-11-14 Thread Benjamin Peterson
Change by Benjamin Peterson : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue36130] Pdb(skip=[...]) + module without __name__ => TypeError

2019-11-14 Thread daniel hahler
daniel hahler added the comment: This was fixed / can be closed (https://github.com/python/cpython/pull/12064). -- nosy: +blueyed ___ Python tracker ___ __

[issue36130] Pdb(skip=[...]) + module without __name__ => TypeError

2019-02-26 Thread Anthony Sottile
Change by Anthony Sottile : -- keywords: +patch pull_requests: +12088 stage: -> patch review ___ Python tracker ___ ___ Python-bugs

[issue36130] Pdb(skip=[...]) + module without __name__ => TypeError

2019-02-26 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +xdegaye, xtreak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36130] Pdb(skip=[...]) + module without __name__ => TypeError

2019-02-26 Thread Anthony Sottile
New submission from Anthony Sottile : Here's the simplest example I could come up with -- hit this while debugging pytest (which uses attrs which uses similar code to this to make classes) import pdb; pdb.Pdb(skip=['django.*']).set_trace() eval(compile("1", "", "exec"), {}) print('ok!') When