summaryrefslogtreecommitdiffstatshomepage
path: root/py/misc.h
Commit message (Expand)AuthorAge
* py: Implement basic unicode functions.Chris Angelico2014-06-27
* Prefix ARRAY_SIZE with micropython prefix MP_Emmanuel Blot2014-06-19
* unicode: Add trivial implementation of unichar_charlen().Paul Sokolovsky2014-06-14
* unicode: String API is const byte*.Paul Sokolovsky2014-06-14
* add methods isspace(), isalpha(), isdigit(), isupper() and islower() to strKim Bauters2014-05-31
* objstr: Implement .lower() and .upper().Paul Sokolovsky2014-05-10
* py: Improve handling of memory error in parser.Damien George2014-05-10
* py, unix: Add -v option, print bytecode dump if used.Paul Sokolovsky2014-05-05
* Add license header to (almost) all files.Damien George2014-05-03
* Add ARRAY_SIZE macro, and use it where possible.Damien George2014-04-26
* py: Check explicitly for memory allocation failure in parser.Damien George2014-04-10
* py: Add emergency exception object for when heap allocation fails.Damien George2014-04-10
* Improve GC finalisation code; add option to disable it.Damien George2014-04-05
* Merge pull request #425 from iabdalkader/delDamien George2014-04-05
|\
| * Implement delmux2014-04-03
* | py: Add m_malloc_fail function to handle memory allocation error.Damien George2014-04-04
|/
* py: Wrap compile_scope_inline_asm in #if; remove comment from misc.h.Damien George2014-04-02
* Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George2014-03-15
* py: Take out bitfield entries from their own structure.Damien George2014-02-26
* py: Rename strtonum to mp_strtonum.Damien George2014-02-22
* Make DEBUG_printf() a proper function, implementation is port-dependent.Paul Sokolovsky2014-02-16
* Implement fixed buffer vstrs; use them for import path.Damien George2014-02-06
* Search paths properly on import and execute __init__.py if it exists.Damien George2014-02-05
* Implement support for sys.path when loading modules.Paul Sokolovsky2014-02-05
* Add generic MIN()/MAX() functions.Paul Sokolovsky2014-02-05
* Implement octal and hex escapes in strings.Paul Sokolovsky2014-01-22
* Revamp qstrs: they now include length and hash.Damien George2014-01-21
* Merge branch 'str2int' of github.com:xyb/micropython into xyb-str2intDamien George2014-01-15
|\
* \ Merge pull request #173 from pfalcon/file-readallDamien George2014-01-14
|\ \
| * | Add "buffer management" and "shrink" API calls to vstr.Paul Sokolovsky2014-01-13
| |/
* / added zip()John R. Lenton2014-01-13
|/
* Revert MP_BOOL, etc. and use <stdbool.h> insteadian-v2014-01-06
* Co-exist with C++ (issue #85)ian-v2014-01-06
* Add new alloc metric: peak_bytes_allocated.Paul Sokolovsky2014-01-03
* Add new alloc metric: current_bytes_allocated.Paul Sokolovsky2014-01-03
* Put unicode functions in unicode.c, and tidy their names.Damien George2013-12-30
* Change memory allocation API to require size for free and realloc.Damien2013-12-29
* Change object representation from 1 big union to individual structs.Damien2013-12-21
* Fixup include of stdarg and va_list definition.Damien2013-11-03
* Add simple var-arg functions; add simple string.format.Damien2013-11-03
* Fix func decls with no arguments: () -> (void).Damien2013-10-23
* Add vstr and its functions.Damien2013-10-20
* Initial commit.Damien2013-10-04