Bugs item #1723875, was opened at 2007-05-23 00:46 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1723875&group_id=5470
Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Python Library Group: Python 2.5 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Patrick Dobbs (patrickcd) Assigned to: Nobody/Anonymous (nobody) Summary: inspect.formatargspec last argument ignored Initial Comment: from: [EMAIL PROTECTED] The last argument of inspect.formatargspect() is a function to control the way the entire returned string is formatted: ...join=joinseq): joinseq being a function at line 757 in inspect.py However, this argument is ignored and joinseq is not called. The line in question is inspect.py 794 it was: return '(' + string.join(specs, ', ') + ')' The function seems to work as advertised if this line is replaced by: return join(specs) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1723875&group_id=5470 _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com