This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author yselivanov
Recipients larry, ncoghlan, yselivanov
Date 2014-02-21.00:54:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392944067.4.0.263463112127.issue20711@psf.upfronthosting.co.za>
In-reply-to
Content
current behaviour:


>>> import inspect
>>> import os
>>> inspect.getfullargspec(os.stat)
<module 'posix' (built-in)>
FullArgSpec(args=['module', 'path'], varargs=None, varkw=None, defaults=None, kwonlyargs=['dir_fd', 'follow_symlinks'], kwonlydefaults={'dir_fd': None, 'follow_symlinks': True}, annotations={})


'module' argument should not be there.

Patch is attached, please review.
History
Date User Action Args
2014-02-21 00:54:27yselivanovsetrecipients: + yselivanov, ncoghlan, larry
2014-02-21 00:54:27yselivanovsetmessageid: <1392944067.4.0.263463112127.issue20711@psf.upfronthosting.co.za>
2014-02-21 00:54:27yselivanovlinkissue20711 messages
2014-02-21 00:54:27yselivanovcreate