pyston / pyston_v1

The previous version of Pyston, a faster implementation of the Python programming language. Please use this link for the new repository:
https://github.com/pyston/pyston/
4.89k stars 289 forks source link

Dict methods #201

Closed kmod closed 9 years ago

kmod commented 10 years ago

Doing a quick comparison, we are missing these methods: ['clear', 'fromkeys', 'has_key', 'popitem', 'update', 'viewitems', 'viewkeys', 'viewvalues']

The view* methods look a somewhat involved since they involve creating new classes, but the others look pretty straightforward.

lameiro commented 10 years ago

Please see PR https://github.com/dropbox/pyston/pull/207 where this is partially implemented.

kmod commented 9 years ago

The rest implemented in PR https://github.com/dropbox/pyston/pull/250