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 eric.araujo, jonasw, larry, ncoghlan, yselivanov
Date 2014-02-14.18:35:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392402939.17.0.104552799603.issue20625@psf.upfronthosting.co.za>
In-reply-to
Content
Furthermore:

class Foo:
  def bar(self, *, __kw:'anno'='default'):
    pass

>>> Foo.bar.__annotations__
{'__kw': 'anno'}
>>> Foo.bar.__kwdefaults__
{'_Foo__kw': 'default'}
History
Date User Action Args
2014-02-14 18:35:39yselivanovsetrecipients: + yselivanov, ncoghlan, larry, eric.araujo, jonasw
2014-02-14 18:35:39yselivanovsetmessageid: <1392402939.17.0.104552799603.issue20625@psf.upfronthosting.co.za>
2014-02-14 18:35:39yselivanovlinkissue20625 messages
2014-02-14 18:35:39yselivanovcreate