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 Michael.Smith
Recipients Michael.Smith
Date 2013-09-23.00:29:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1379896161.02.0.342769344307.issue19076@psf.upfronthosting.co.za>
In-reply-to
Content
Pretty straightforward:

File "/usr/local/Cellar/python3/3.3.2/Frameworks/Python.framework/Versions/3.3/lib/python3.3/pdb.py", line 675, in do_break
    self.error(err, file=self.stdout)
TypeError: error() got an unexpected keyword argument 'file'

Sure enough, line 675 reads:
                self.error(err, file=self.stdout)

but line 448:
    def error(self, msg):
History
Date User Action Args
2013-09-23 00:29:21Michael.Smithsetrecipients: + Michael.Smith
2013-09-23 00:29:21Michael.Smithsetmessageid: <1379896161.02.0.342769344307.issue19076@psf.upfronthosting.co.za>
2013-09-23 00:29:20Michael.Smithlinkissue19076 messages
2013-09-23 00:29:20Michael.Smithcreate