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 blueyed
Recipients blueyed, eamanu, lukasz.langa, miss-islington, ned.deily, remi.lapeyre, zach.ware
Date 2019-03-09.17:40:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552153237.01.0.735306664078.issue35931@roundup.psfhosted.org>
In-reply-to
Content
Example of the API breakage:

```
/opt/python/3.8-dev/lib/python3.8/pdb.py:321: in _cmdloop
    self.cmdloop()
/opt/python/3.8-dev/lib/python3.8/cmd.py:138: in cmdloop
    stop = self.onecmd(line)
/opt/python/3.8-dev/lib/python3.8/pdb.py:418: in onecmd
    return cmd.Cmd.onecmd(self, line)
/opt/python/3.8-dev/lib/python3.8/cmd.py:217: in onecmd
    return func(arg)
pdb.py:699: in do_debug
    return orig_do_debug(self, cmd)
/opt/python/3.8-dev/lib/python3.8/pdb.py:1097: in do_debug
    code = compile(arg, "<string>", "exec")
E   TypeError: compile() arg 1 must be a string, bytes or AST object
```

(via https://travis-ci.org/antocuni/pdb/jobs/504061679#L367)
History
Date User Action Args
2019-03-09 17:40:37blueyedsetrecipients: + blueyed, ned.deily, lukasz.langa, zach.ware, eamanu, miss-islington, remi.lapeyre
2019-03-09 17:40:37blueyedsetmessageid: <1552153237.01.0.735306664078.issue35931@roundup.psfhosted.org>
2019-03-09 17:40:37blueyedlinkissue35931 messages
2019-03-09 17:40:36blueyedcreate