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 georg.brandl
Recipients georg.brandl, ubershmekel
Date 2009-09-14.09:44:45
SpamBayes Score 0.034459386
Marked as misclassified No
Message-id <1252921488.38.0.0968102642187.issue6905@psf.upfronthosting.co.za>
In-reply-to
Content
This is not an issue, but a fundamental restriction of what getargspec()
can do.  C function signatures are not introspectable, because basically
every C function can be thought of as defined as either

  def func(*args)

or 

  def func(*args, **kwargs)

and is free to do what it wants with the args and kwargs.
History
Date User Action Args
2009-09-14 09:44:48georg.brandlsetrecipients: + georg.brandl, ubershmekel
2009-09-14 09:44:48georg.brandlsetmessageid: <1252921488.38.0.0968102642187.issue6905@psf.upfronthosting.co.za>
2009-09-14 09:44:46georg.brandllinkissue6905 messages
2009-09-14 09:44:45georg.brandlcreate