| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-15 | Implement eval. | Damien George | |
| 2014-01-15 | Implement repr. | Damien George | |
| 2014-01-14 | Merge pull request #161 from pfalcon/exc-more-pythonic | Damien George | |
| Move towards Python-compliant interface of exceptions | |||
| 2014-01-14 | Merge pull request #142 from chipaca/containment | Damien George | |
| Implemented support for `in` and `not in` operators. | |||
| 2014-01-14 | Merge pull request #165 from chipaca/builtins | Damien George | |
| added zip() | |||
| 2014-01-15 | Implement "is" and "is not" operators. | Paul Sokolovsky | |
| So far, don't work for strings as expected. | |||
| 2014-01-15 | Refactor exception objects to have better impl of Python-side interface. | Paul Sokolovsky | |
| This implements internal args tuple of arguments, while still keeping object useful for reporting C-side errors. Further elaboration is needed. | |||
| 2014-01-13 | sorted | John R. Lenton | |
| 2014-01-13 | added zip() | John R. Lenton | |
| 2014-01-13 | Merge remote-tracking branch 'upstream/master' into containment | John R. Lenton | |
| 2014-01-12 | Merge pull request #162 from chipaca/str_find | Damien George | |
| Implement a basic str.find; fixes #67 | |||
| 2014-01-12 | Merge pull request #160 from pfalcon/elaborate-int | Damien George | |
| Elaborate small-int/long-int | |||
| 2014-01-12 | oops, nasty off-by-one in set_copy | John R. Lenton | |
| 2014-01-12 | Implemented set binary ops. | John R. Lenton | |
| 2014-01-12 | Implement a basic str.find; fixes #67 | John R. Lenton | |
| 2014-01-12 | Add proper checks for fits-in-small-int. Make it reusable. | Paul Sokolovsky | |
| We likely should make mp_obj_new_int() inline, and rely on its encapsulated check rather than inline checks everywhere explicitly. Also, parser for big small int values is still broken. | |||
| 2014-01-12 | Implemented set.update | John R. Lenton | |
| 2014-01-12 | Implemented set.remove | John R. Lenton | |
| 2014-01-12 | Implemented set.isdisjoint | John R. Lenton | |
| 2014-01-12 | Implemented set.intersection and set.intersection_update | John R. Lenton | |
| 2014-01-12 | Implemented set.difference and set.difference_update | John R. Lenton | |
| 2014-01-12 | Implemented set.discard | John R. Lenton | |
| 2014-01-12 | Implemented set.copy | John R. Lenton | |
| 2014-01-12 | Implemented set.clear | John R. Lenton | |
| 2014-01-12 | Implemented set.add | John R. Lenton | |
| 2014-01-12 | make sets iterable | John R. Lenton | |
| 2014-01-12 | list: Implement comparison operators. | Paul Sokolovsky | |
| 2014-01-12 | list: Add extend() methods and += operator. | Paul Sokolovsky | |
| 2014-01-11 | Implemented support for `in` and `not in` operators. | John R. Lenton | |
| 2014-01-10 | Merge pull request #136 from pfalcon/for-range-downto | Damien George | |
| compile_for_stmt_optimised_range(): Properly handle negative & unknown s... | |||
| 2014-01-10 | Merge pull request #135 from pfalcon/simple-raise | Damien George | |
| Crude attempt to implement RAISE_VARARGS (with args=1 so far only). | |||
| 2014-01-10 | Merge pull request #134 from pfalcon/list-mul | Damien George | |
| list: Implement list multiplication. | |||
| 2014-01-11 | compile_for_stmt_optimised_range(): Properly handle negative & unknown steps. | Paul Sokolovsky | |
| If step is not constant, in first approximation, we can't apply optimization, (well, we could, but need a special case for this). | |||
| 2014-01-11 | Crude attempt to implement RAISE_VARARGS (with args=1 so far only). | Paul Sokolovsky | |
| 2014-01-11 | list: Implement list multiplication. | Paul Sokolovsky | |
| 2014-01-10 | Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are. | John R. Lenton | |
| 2014-01-10 | dict views now, refactoring later. | John R. Lenton | |
| 2014-01-09 | Merge pull request #121 from pfalcon/count-testcases | Damien George | |
| Count individual testcases when running tests. | |||
| 2014-01-09 | py: Implement base class lookup, issubclass, isinstance. | Damien George | |
| 2014-01-09 | Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr. | Damien George | |
| Creating of classes (types) and instances is much more like CPython now. You can use "type('name', (), {...})" to create classes. | |||
| 2014-01-08 | Count individual testcases when running tests. | Paul Sokolovsky | |
| The idea is simple: each print represents a testcase within a test unit. As we don't have strict rules on which/how many testcase are put into a test file, it's nice to have an idea how many *testcases* we have totally. Would be nice to count how many testcases pass/fail, but that's a bit less trivial. | |||
| 2014-01-08 | Add string comparison tests. | Paul Sokolovsky | |
| Use computed string to exercise string interning code better. | |||
| 2014-01-07 | Merge remote-tracking branch 'upstream/master' into dict_feats | John R. Lenton | |
| 2014-01-07 | forgot to add test for dict.update | John R. Lenton | |
| 2014-01-07 | Added dict.setdefault | John R. Lenton | |
| 2014-01-07 | Added dict.popitem | John R. Lenton | |
| 2014-01-07 | implemented dict.pop | John R. Lenton | |
| 2014-01-07 | Added dict.get. | John R. Lenton | |
| 2014-01-07 | Added dict.copy | John R. Lenton | |
| 2014-01-07 | Added dict.clear. | John R. Lenton | |
| Added 0 to the list of primes. Funky primes, these. | |||
