1. 44307d5 vm: Implement "with" statement (SETUP_WITH and WITH_CLEANUP bytecodes). by Paul Sokolovsky · 11 years ago
  2. e9137b9 py: Implement getattr() builtin. by Paul Sokolovsky · 11 years ago
  3. c12b221 Change mp_method_t.name from const char * to qstr. by Damien George · 11 years ago
  4. 9e6e935 py: Add support for user-defined iterators via __iter__, __next__. by Damien George · 11 years ago
  5. ffb5cfc py: Removed some unnecessary exception objects. by Damien George · 11 years ago
  6. 9512e9e objexcept: Add "args" exception attribute, as well as StopIteration.value. by Paul Sokolovsky · 11 years ago
  7. c910972 py: Remove some unnecessary exception objects. by Damien George · 11 years ago
  8. 3ec0a1a py: Add 'object' object. by Damien George · 11 years ago
  9. 721c55d Added exception hierarchy except for OSError and UnicodeError (requires arguments). Comment out the errors that aren't needed if memory becomes an issue. by Rachel Dowdall · 11 years ago
  10. 249b9c7 Fixed broken math functions that return bool and added some more. by Rachel Dowdall · 11 years ago
  11. 300c8bd Added ZeroDivisionError to float division. by Rachel Dowdall · 11 years ago
  12. 5a14a1d Added various simple functions to math module. by Rachel Dowdall · 11 years ago
  13. a925639 py: Add math.e constant. by Damien George · 11 years ago
  14. 51bbf6a Implement support for __str__ and __repr__ special methods in classes. by Paul Sokolovsky · 11 years ago
  15. 8854e1f py: Add expm1 to math module. by Damien George · 11 years ago
  16. 0c36da0 Implement ROMable modules. Add math module. by Damien George · 11 years ago
  17. d08fd68 Add basic collections.namedtuple implementation. by Paul Sokolovsky · 11 years ago
  18. c596612 Implement proper exception type hierarchy. by Damien George · 11 years ago
  19. a71c83a Change mp_obj_type_t.name from const char * to qstr. by Damien George · 11 years ago
  20. 8c2b333 Merge branch 'master' of github.com:micropython/micropython by Damien George · 11 years ago
  21. 76f06de Add NotImplementedError. by Paul Sokolovsky · 11 years ago
  22. 7d0bfbe py: Add some qstrs to the global table. by Damien George · 11 years ago
  23. 64131f3 Add staticmethod and classmethod to builtin namespace. by Damien George · 11 years ago
  24. cdcb490 Merge pull request #262 from pfalcon/sys-path by Damien George · 11 years ago
  25. 35e2a4e py: Add built-in super. by Damien George · 11 years ago
  26. e11b17c Implement support for sys.path when loading modules. by Paul Sokolovsky · 11 years ago
  27. 0c59db1 Use qstr id to create sys module. by Paul Sokolovsky · 11 years ago
  28. 7cd54d7 Add ImportError. by Paul Sokolovsky · 11 years ago
  29. 1d938c9 Expose __import__() function. by Paul Sokolovsky · 11 years ago
  30. ca47679 py: Implement builtin exec. by Damien George · 11 years ago
  31. 4acb245 py: Add very basic implementation of dir() builtin. by Damien George · 12 years ago
  32. 0ebf853 Implement and add tests for the id() builtin function. by xbe · 12 years ago
  33. 09a0c64 py: Improve __bool__ and __len__ dispatch; add slots for them. by Damien George · 12 years ago
  34. b829b5c Implement mp_parse_node_free; print properly repr(string). by Damien George · 12 years ago
  35. 7c9c667 py: Implement iterator support for object that has __getitem__. by Damien George · 12 years ago
  36. ab5d082 Allow qstr's with non-ident chars, construct good identifier for them. by Paul Sokolovsky · 12 years ago
  37. 12eacca Merge branch 'master' of github.com:micropython/micropython by Damien George · 12 years ago
  38. 55baff4 Revamp qstrs: they now include length and hash. by Damien George · 12 years ago[Renamed from py/mpqstrraw.h]
  39. 7280f79 run-tests: Allow to run tests selectively via command line. by Paul Sokolovsky · 12 years ago
  40. 427905c Add skeleton implementation of array.array and bytearray. by Paul Sokolovsky · 12 years ago
  41. 166bb40 Add OverflowError and use it for small int overflow instead of assert. by Paul Sokolovsky · 12 years ago
  42. 4899ff9 Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-repr by Damien George · 12 years ago
  43. 7a9d0c4 Merge branch 'builtins' of github.com:chipaca/micropython into chipaca-builtins by Damien George · 12 years ago
  44. d02c6d8 Implement eval. by Damien George · 12 years ago
  45. e2fb2ba Implement repr. by Damien George · 12 years ago
  46. 9528cd6 Convert parse errors to exceptions. by Damien George · 12 years ago
  47. fca456b added filter() by John R. Lenton · 12 years ago
  48. 39b174e Added map by John R. Lenton · 12 years ago
  49. 36c4499 Implement str() and repr() builtin functions. by Paul Sokolovsky · 12 years ago
  50. 9daa789 added enumerate() by John R. Lenton · 12 years ago
  51. 5c76839 sorted by John R. Lenton · 12 years ago
  52. 07205ec added zip() by John R. Lenton · 12 years ago
  53. be84297 Merge pull request #123 from xbe/master by Damien George · 12 years ago
  54. 004cdce py: Implement base class lookup, issubclass, isinstance. by Damien George · 12 years ago
  55. 7b0f39f Implement str.strip by xbe · 12 years ago
  56. 1e40840 Add OSError, Python 3.3 generic I/O exception. by Paul Sokolovsky · 12 years ago
  57. 71c5181 Convert Python types to proper Python type hierarchy. by Damien George · 12 years ago
  58. e9906ac Add ellipsis object. by Damien George · 12 years ago
  59. eb7bfcb Split qstr into pools, and put initial pool in ROM. by Damien George · 12 years ago