[issue27165] Skip callables when displaying exception fields in cgitb

2018-10-04 Thread Adam Bielański
Change by Adam Bielański : -- pull_requests: +9085 ___ Python tracker <https://bugs.python.org/issue27165> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27165] Skip callables when displaying exception fields in cgitb

2016-06-02 Thread Adam Bielański
Changes by Adam Bielański <abg...@gmail.com>: Removed file: http://bugs.python.org/file43065/cgitb.diff ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue27165] Skip callables when displaying exception fields in cgitb

2016-06-02 Thread Adam Bielański
Changes by Adam Bielański <abg...@gmail.com>: Added file: http://bugs.python.org/file43097/cgitb.patch ___ Python tracker <rep...@bugs.python.org> <http://bugs.python

[issue27165] Skip callables when displaying exception fields in cgitb

2016-05-31 Thread Adam Bielański
New submission from Adam Bielański: Issue: cgitb text formatter outputs all members of exception object, using standard dir() to get their names. My patch changes its behaviour to skip fields which are callable, since printing them only clutters the output but is rarely helpful. HTML

[issue18756] os.urandom() fails under high load

2013-09-20 Thread Adam Bielański
Changes by Adam Bielański abg...@gmail.com: -- nosy: +Adam.Bielański ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18756 ___ ___ Python-bugs-list

[issue7563] yield in except clause causes exception context to be lost

2013-01-18 Thread Adam Bielański
Changes by Adam Bielański abg...@gmail.com: -- nosy: +Adam.Bielański ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7563 ___ ___ Python-bugs-list

[issue10425] xmlrpclib support for None isn't compliant with XMLRPC

2010-11-16 Thread Adam Bielański
Adam Bielański abg...@gmail.com added the comment: Ok, I apologize for being to hasty. Below you can find my answers: 1. SlowParser used in xmlrpclib doesn't deal with namespaces in any reasonable way. If there's a namespace prefix for tag, it's not separated from tag name, but passed as part

[issue10425] xmlrpclib support for None isn't compliant with XMLRPC

2010-11-16 Thread Adam Bielański
Adam Bielański abg...@gmail.com added the comment: It is. It might go. Didn't notice issue8792 before, thanks for pointing it out. Whole ex:nil issue is discussed there, so this issue might be closed. -- ___ Python tracker rep...@bugs.python.org

[issue8792] Support Apache extensions to XML-RPC in xmlrpclib

2010-11-16 Thread Adam Bielański
Adam Bielański abg...@gmail.com added the comment: To make example provided by Amaury complete I'll add that in order to support both ways you also need to replace xmlrpclib.dumps() with code from attached file. Changes to original xmlrpclib.dumps() function are outlined with comments

[issue10425] xmlrpclib support for None isn't compliant with XMLRPC

2010-11-15 Thread Adam Bielański
New submission from Adam Bielański abg...@gmail.com: XMLRPC standard doesn't support None/nil/null values. Element `nil/` was added as an extension to original protocol. Currently sending None object through xmlrpclib produces `valuenil//value` string. This causes parsing errors in more

[issue10166] maximum recursion depth exceeded in lib\pstats.py

2010-10-21 Thread Adam Bielański
New submission from Adam Bielański abg...@gmail.com: There's a bug in module lib\pstats.py, line 150. Let me paste a little piece of surrounding code: class Stats: () def add(self, *arg_list): if not arg_list: return self if len(arg_list) 1