[issue4540] typo in a module describes utf-8 as uft-8

2009-03-10 Thread dariusp
dariusp dari...@internode.on.net added the comment: This appears to be the same issue as described in 5453 in which I supplied a patch for release30-maint and py3k branches. It's probably useful to address both issue 4540 5453 at the same time. I would have added to this issue, but I didn't

[issue5453] pydoc -k fails (release30-maint patch)

2009-03-08 Thread dariusp
New submission from dariusp dari...@internode.on.net: pydoc -k fails for both release30-maint and py3k. In release30-maint the python io module (or more accurately the underlying codecs module used by the io module) raises a LookupError if the encoding is invalid. There is a test module

[issue5454] pydoc -k fails (py3k patch)

2009-03-08 Thread dariusp
New submission from dariusp dari...@internode.on.net: Apologies for the duplicate issue, but I wanted to supply two patches (one for release30-maint and one for py3k) and appears that each issue can only have one file. pydoc -k fails for both release30-maint and py3k. In release30-maint

[issue4959] inspect.formatargspec fails for keyword args without defaults, affects help and likely pydoc

2009-01-15 Thread dariusp
New submission from dariusp dari...@internode.on.net: Hi, Suggested log message: formatargspec now handles keyword only args that don't have defaults. Previously it expected an empty dict but was being given None. Patch: The patch contains a suggested fix to inspect.py and a new test