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.

classification
Title: Postgresql calls undefined method in __str__
Type: behavior Stage: resolved
Components: Library (Lib) Versions: 3rd party
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: Claudiu.Popa, r.david.murray
Priority: normal Keywords:

Created on 2010-10-01 12:58 by Claudiu.Popa, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg117793 - (view) Author: PCManticore (Claudiu.Popa) * (Python triager) Date: 2010-10-01 12:58
In postgresql library, client3.py, the "__str__" method defined in Connection close calls the undefined method self.exception_string as in the following line of code:

excstr = ''.join(self.exception_string(type(self.exception), self.exception))
msg117794 - (view) Author: PCManticore (Claudiu.Popa) * (Python triager) Date: 2010-10-01 12:59
I meant "Connection class calls the.."
msg117799 - (view) Author: R. David Murray (r.david.murray) * (Python committer) Date: 2010-10-01 13:48
There is no postgresql client in the Python standard library, you'll need to report this bug on the appropriate project's tracker.
History
Date User Action Args
2022-04-11 14:57:07adminsetgithub: 54214
2010-10-01 13:48:22r.david.murraysetstatus: open -> closed

nosy: + r.david.murray
messages: + msg117799

resolution: not a bug
stage: resolved
2010-10-01 12:59:56Claudiu.Popasetmessages: + msg117794
2010-10-01 12:58:40Claudiu.Popacreate