1. 3d9a39e py: Implement str.[r]index() and add tests for them. by xbe · 11 years ago
  2. 729be9b py: Update comment in str.replace(). by xbe · 11 years ago
  3. 7a70a3a bytes: Support buffer protocol. by Paul Sokolovsky · 11 years ago
  4. 12968fb Display \r and \t escape codes in string repr by Andrew Scheller · 11 years ago
  5. a12a0f7 py: Rename pfenv_print_int to pfenv_print_mp_int, and add back former. by Damien George · 11 years ago
  6. c4029e5 Add string formatting support for longlong and mpz. by Dave Hylands · 11 years ago
  7. ff71542 py: Fix str.replace for case when arg 0 or 1 is empty string. by Damien George · 11 years ago
  8. deed087 py: str.split: handle non-default separator. by Damien George · 11 years ago
  9. ea13f40 py: Change nlr_jump to nlr_raise, to aid in debugging. by Damien George · 11 years ago
  10. f81a49e Allow floating point arguments with %d,i,u,o,x,X formats by Dave Hylands · 11 years ago
  11. 6756a37 Implements most of str.modulo by Dave Hylands · 11 years ago
  12. cc7085c Merge branch 'fix-format-int' of github.com:dhylands/micropython into dhylands-fix-format-int by Damien George · 11 years ago
  13. 22fe4d7 Fix str.format to work with {:f/g/e} and ints by Dave Hylands · 11 years ago
  14. c322c5f py: Fix regress for printing of floats and #if. by Damien George · 11 years ago
  15. 70f33cd py: Fix up so that it can compile without float. by Damien George · 11 years ago
  16. baf6f14 Enhance str.format support by Dave Hylands · 11 years ago
  17. 4db727a objstr: Very basic implementation of % string formatting operator. by Paul Sokolovsky · 11 years ago
  18. 15d1806 py: Remove old "run time" functions that were 1 liners. by Damien George · 11 years ago
  19. f7eaf60 py: Fix "TypeError: 'iterator' object is not iterable", doh. by Paul Sokolovsky · 11 years ago
  20. df6567e Merge map.h into obj.h. by Damien George · 11 years ago
  21. d17926d Rename rt_* to mp_*. by Damien George · 11 years ago
  22. 3e1a5c1 py: Rename old const type objects to mp_type_* for consistency. by Damien George · 11 years ago
  23. 07ddab5 py: Change mp_const_* objects to macros. by Damien George · 11 years ago
  24. 9b196cd Remove mp_obj_type_t.methods entry and use .locals_dict instead. by Damien George · 11 years ago
  25. c12b221 Change mp_method_t.name from const char * to qstr. by Damien George · 11 years ago
  26. 66eaf84 py: Replace mp_const_stop_iteration object with MP_OBJ_NULL. by Damien George · 11 years ago
  27. 17a5a83 Implement str.rfind() and add tests for it. by xbe · 11 years ago
  28. 8562de6 py/objstr.c: Remove done TODOs. by xbe · 11 years ago
  29. 1ecea7c py: Make 'bytes' be a proper type, support standard constructor args. by Paul Sokolovsky · 11 years ago
  30. be020c2 py: Make 'str' be a proper type, support standard constructor args. by Paul Sokolovsky · 11 years ago
  31. 5972b4c objstr: Switch from in-object string data to ptr to separate memory area. by Paul Sokolovsky · 11 years ago
  32. b035db3 py: Make str.[r]partition more efficient. by Damien George · 11 years ago
  33. 0a6894c str.(r)partition: factor out duplicate code. by xbe · 11 years ago
  34. 4504ea8 Implement str.rpartition and add tests for it. by xbe · 11 years ago
  35. 613a8e3 Implement str.partition and add tests for it. by xbe · 11 years ago
  36. c553888 objstr.c: Replace size_t with machine_uint_t. by xbe · 11 years ago
  37. efe3422 py: Clean up includes. by xbe · 11 years ago
  38. 536dde2 py: In string.count, handle case of zero-length needle. by Damien George · 11 years ago
  39. c5d70ba Fix issues in str.count implementation. by xbe · 11 years ago
  40. 9e1e8cd Implement str.count and add tests for it. by xbe · 11 years ago
  41. 2da9830 py: Make objstr support buffer protocol (read only). by Damien George · 11 years ago
  42. c596612 Implement proper exception type hierarchy. by Damien George · 11 years ago
  43. a71c83a Change mp_obj_type_t.name from const char * to qstr. by Damien George · 11 years ago
  44. d5df6cd Replace global "static" -> "STATIC", to allow "analysis builds". Part 1. by Paul Sokolovsky · 11 years ago
  45. 4e24608 objstr: Mark few local symbols as static, cleanup codestyle. by Paul Sokolovsky · 11 years ago
  46. 698ec21 Make mp_obj_str_get_data return char* instead of byte*. by Damien George · 11 years ago
  47. ea2509d Fix assert() usage. by Paul Sokolovsky · 12 years ago
  48. 87e85b7 Implement str/bytes rich comparisons. by Paul Sokolovsky · 12 years ago
  49. 7364af2 Factor out m_seq_get_fast_slice_indexes() fucntions as sequence helper. by Paul Sokolovsky · 12 years ago
  50. 9aa2a52 py: Tidy up BINARY_OPs; negation done by special NOT bytecode. by Damien George · 12 years ago
  51. 94f6830 py: Make str.replace do 2 passes over the string. by Damien George · 12 years ago
  52. 480c15a Implement str.replace and add tests for it. by xbe · 12 years ago
  53. 0b7e29c Factor out quoted string print function for reuse (mp_str_print_quoted()). by Paul Sokolovsky · 12 years ago
  54. b829b5c Implement mp_parse_node_free; print properly repr(string). by Damien George · 12 years ago
  55. 7c9c667 py: Implement iterator support for object that has __getitem__. by Damien George · 12 years ago
  56. 91fb1c9 Add basic implementation of bytes type, piggybacking on str. by Paul Sokolovsky · 12 years ago
  57. 1e708fe py: Implement bool unary op; tidy up unary op dispatch. by Damien George · 12 years ago
  58. 1eacefe Implement simplest case of str.startswith(). by Paul Sokolovsky · 12 years ago
  59. 5fa93b6 Second stage of qstr revamp: uPy str object can be qstr or not. by Damien George · 12 years ago
  60. 12eacca Merge branch 'master' of github.com:micropython/micropython by Damien George · 12 years ago
  61. 55baff4 Revamp qstrs: they now include length and hash. by Damien George · 12 years ago
  62. 4c31655 Implement str.split(None). by Paul Sokolovsky · 12 years ago
  63. 7380a83 str: Implement proper string (instead of byte string) indexing. by Paul Sokolovsky · 12 years ago
  64. 545591a Implement string multiplication. by Paul Sokolovsky · 12 years ago
  65. 8965a5e objstr: More support for MP_OBJ_QSTR. by Paul Sokolovsky · 12 years ago
  66. bb33cc6 Properly print MP_OBJ_QSTR objects. by Paul Sokolovsky · 12 years ago
  67. a11ceca Change int to uint for n_args in function with variable arguments. by Damien George · 12 years ago
  68. f2b796e str.format: Don't assume that '}' immediately follows '{', skip insides. by Paul Sokolovsky · 12 years ago
  69. 4899ff9 Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-repr by Damien George · 12 years ago
  70. 76d982e type->print(): Distinguish str() and repr() variety by passing extra param. by Paul Sokolovsky · 12 years ago
  71. f5a0a7d Merge remote-tracking branch 'upstream/master' into containment by John R. Lenton · 12 years ago
  72. f62d33a Consolidate rt_make_function_[0123] to rt_make_function_n. by Damien George · 12 years ago
  73. f88a72a Merge pull request #168 from dhylands/add-strstr by Damien George · 12 years ago
  74. 2300537 Cleanup built-ins, and fix some compiler warnings/errors. by Damien George · 12 years ago
  75. c8effff Added public domain implementations of strchr and strstr. by Dave Hylands · 12 years ago
  76. 13e64f0 Merge remote-tracking branch 'upstream/master' into containment by John R. Lenton · 12 years ago
  77. e820491 Implement a basic str.find; fixes #67 by John R. Lenton · 12 years ago
  78. c1bef21 Implemented support for `in` and `not in` operators. by John R. Lenton · 12 years ago
  79. 2d45429 Use memcpy instead of strncpy; add usart.status to stm. by Damien George · 12 years ago
  80. 7b0f39f Implement str.strip by xbe · 12 years ago
  81. 97209d3 Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-cplusplus by Damien George · 12 years ago
  82. a5a01df Make list and str method tables static by ian-v · 12 years ago
  83. 7a16fad Co-exist with C++ (issue #85) by ian-v · 12 years ago
  84. 860ffb0 Convert many object types structs to use C99 tagged initializer syntax. by Paul Sokolovsky · 12 years ago
  85. 8cfc9f0 Implements str iterator by xyb · 12 years ago
  86. 71c5181 Convert Python types to proper Python type hierarchy. by Damien George · 12 years ago
  87. eb7bfcb Split qstr into pools, and put initial pool in ROM. by Damien George · 12 years ago
  88. 6ee1e38 str slice: Trim slice indexes to be in range. by Paul Sokolovsky · 12 years ago
  89. c8d1384 Fix int -> machine_int_t; add print to slice test. by Damien George · 12 years ago
  90. f8b9d3c str: Throw TypeError for invalid index type and clean up comments. by Paul Sokolovsky · 12 years ago
  91. e606cb6 slice: Allow building with MICROPY_ENABLE_SLICE=0. by Paul Sokolovsky · 12 years ago
  92. decad08 str: Handle non-positive slice indexes. by Paul Sokolovsky · 12 years ago
  93. 31ba60f str: Initial implementation of string slicing. by Paul Sokolovsky · 12 years ago
  94. fe8fb91 py: remove depedence on strcat and stpcpy. by Damien George · 12 years ago
  95. 732407f Change memory allocation API to require size for free and realloc. by Damien · 12 years ago
  96. d99b052 Change object representation from 1 big union to individual structs. by Damien · 12 years ago