[issue5597] inspect.formatargspec crashes on missing kwonlydefaults

2009-03-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: This was fixed in r68647 and will appear in 3.0.2 and 3.1. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker

[issue5597] inspect.formatargspec crashes on missing kwonlydefaults

2009-03-29 Thread Petr Dolezal
New submission from Petr Dolezal : inspect.formatargspec is not able to handle functions with keyword only arguments without the default values (probably rare, but still allowed). This has also impact on help command which is then unable to show proper help page for such functions. Offending fu