| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-01-22 | Implement octal and hex escapes in strings. | Paul Sokolovsky | |
| 2014-01-21 | py: Implement break and continue byte codes, and add tests. | Damien George | |
| Also fixes a bug in the for-in-range optimiser. I hope to remove break and continue byte codes in the future and just use jump (if possible). | |||
| 2014-01-21 | Add bytearray basic tests. | Paul Sokolovsky | |
| 2014-01-21 | run-tests: Allow to run tests selectively via command line. | Paul Sokolovsky | |
| 2014-01-21 | Implement str.split(None). | Paul Sokolovsky | |
| Note that splitting by explicit string is not implemented so far. | |||
| 2014-01-21 | str: Implement proper string (instead of byte string) indexing. | Paul Sokolovsky | |
| Also, support negative indexes. | |||
| 2014-01-21 | Implement string multiplication. | Paul Sokolovsky | |
| 2014-01-20 | unix io.FileIO: Add iteration support. | Paul Sokolovsky | |
| A file cannot be iterated concurrently, so we make io.FileIO its own iterator. | |||
| 2014-01-20 | Rename unix binary to 'micropython'. | Damien George | |
| 2014-01-20 | unix: Implement sys.argv. | Paul Sokolovsky | |
| 2014-01-19 | Add README for tests/. | Paul Sokolovsky | |
| 2014-01-19 | Add directory for I/O tests with basic test for file methods. | Paul Sokolovsky | |
| 2014-01-19 | Move tests in basic/tests/ up one level preparating to multiple test dirs. | Paul Sokolovsky | |
| 2014-01-19 | Tiny optimisation in objlist.c; a new test for inheritance. | Damien George | |
| 2014-01-18 | Merge branch 'master' of github.com:micropython/micropython | Damien George | |
| 2014-01-18 | Improve method lookup in mp_obj_class_lookup. | Damien George | |
| Now searches both locals_dict and methods. Partly addresses Issue #145. | |||
| 2014-01-18 | Add testcase for subclassing builtin type and calling native method (broken). | Paul Sokolovsky | |
| 2014-01-18 | Implement framework for class-defined built-in operators. | Damien George | |
| Now working for class-defined methods: __getitem__, __setitem__, __add__, __sub__. Easy to add others. | |||
| 2014-01-16 | Add empty (false) value testing for strings, tuples, lists, dicts. | Paul Sokolovsky | |
| 2014-01-16 | str.format: Don't assume that '}' immediately follows '{', skip insides. | Paul Sokolovsky | |
| That at least makes stuff like "{:x}".format(1) to produce not completely broken output. | |||
| 2014-01-15 | Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2int | Damien George | |
| Conflicts: py/objint.c unix-cpy/Makefile unix/Makefile | |||
| 2014-01-15 | Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-repr | Damien George | |
| Conflicts: tests/basics/tests/exception1.py | |||
| 2014-01-15 | Merge branch 'builtins' of github.com:chipaca/micropython into chipaca-builtins | Damien George | |
| Added some checks for number of arguments. Conflicts: py/mpqstrraw.h | |||
| 2014-01-15 | Implement eval. | Damien George | |
| 2014-01-15 | Implement repr. | Damien George | |
| 2014-01-15 | add more tests and remove debug code | xyb | |
| 2014-01-15 | int() test passed | xyb | |
| 2014-01-15 | added filter() | John R. Lenton | |
| 2014-01-15 | Added map | John R. Lenton | |
| 2014-01-15 | type->print(): Distinguish str() and repr() variety by passing extra param. | Paul Sokolovsky | |
| 2014-01-14 | Merge remote-tracking branch 'upstream/master' into builtins | John R. Lenton | |
| 2014-01-14 | added enumerate() | John R. Lenton | |
| 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-14 | Implemented int(str) in UNIX | xyb | |
| 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 | |
