Change by Adam Bielański :
--
pull_requests: +9085
___
Python tracker
<https://bugs.python.org/issue27165>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Adam Bielański :
Removed file: http://bugs.python.org/file43065/cgitb.diff
___
Python tracker
<http://bugs.python.org/issue27165>
___
___
Python-bugs-list m
Changes by Adam Bielański :
Added file: http://bugs.python.org/file43097/cgitb.patch
___
Python tracker
<http://bugs.python.org/issue27165>
___
___
Python-bugs-list mailin
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
Changes by Adam Bielański :
--
nosy: +Adam.Bielański
___
Python tracker
<http://bugs.python.org/issue18756>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Adam Bielański :
--
nosy: +Adam.Bielański
___
Python tracker
<http://bugs.python.org/issue7563>
___
___
Python-bugs-list mailing list
Unsubscribe:
Adam Bielański 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. In
short - it
Adam Bielański 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
<http://bugs.python.org/is
Adam Bielański 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 p
New submission from Adam Bielański :
XMLRPC standard doesn't support None/nil/null values. Element `` was
added as an extension to original protocol.
Currently sending None object through xmlrpclib produces
`` string. This causes parsing errors in more
sophisticated XMLRPC parsers
New submission from Adam Bielański :
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: self.add(*
11 matches
Mail list logo