py: Add keyword arg support to enumerate constructor.

Need to have a policy as to how far we go adding keyword support to
built ins.  It's nice to have, and gets better CPython compatibility,
but hurts the micro nature of uPy.

Addresses issue #577.
This commit is contained in:
Damien George
2014-05-06 16:38:54 +00:00
parent 33b3a6905d
commit 491cbd6a7c
6 changed files with 28 additions and 8 deletions

View File

@@ -238,6 +238,8 @@ Q(startswith)
Q(replace)
Q(partition)
Q(rpartition)
Q(iterable)
Q(start)
Q(bound_method)
Q(closure)