Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-07 | py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t. | Damien George | |
Without mp_sys_path and mp_sys_argv in the root pointer section of the state, their memory was being incorrectly collected by GC. | |||
2015-01-07 | py: Put all global state together in state structures. | Damien George | |
This patch consolidates all global variables in py/ core into one place, in a global structure. Root pointers are all located together to make GC tracing easier and more efficient. | |||
2015-01-01 | py: Move to guarded includes, everywhere in py/ core. | Damien George | |
Addresses issue #1022. | |||
2014-11-29 | Use MP_DEFINE_CONST_DICT macro to define module dicts. | Damien George | |
This is just a clean-up of the code. Generated code is exactly the same. | |||
2014-10-31 | py: Make gc.enable/disable just control auto-GC; alloc is still allowed. | Damien George | |
gc.enable/disable are now the same as CPython: they just control whether automatic garbage collection is enabled or not. If disabled, you can still allocate heap memory, and initiate a manual collection. | |||
2014-08-10 | doc: Document gc, sys, math, cmath. | Damien George | |
2014-07-31 | py: Make MP_OBJ_NEW_SMALL_INT cast arg to mp_int_t itself. | Damien George | |
Addresses issue #724. | |||
2014-07-03 | Rename machine_(u)int_t to mp_(u)int_t. | Damien George | |
See discussion in issue #50. | |||
2014-06-25 | modgc: Add mem_free()/mem_alloc() methods. | Paul Sokolovsky | |
Return free/allocated memory on GC heap. | |||
2014-06-21 | py: Include mpconfig.h before all other includes. | Paul Sokolovsky | |
It defines types used by all other headers. Fixes #691. | |||
2014-06-19 | Prefix ARRAY_SIZE with micropython prefix MP_ | Emmanuel Blot | |
2014-06-06 | modgc: Real 64-bit cleanness. | Paul Sokolovsky | |
2014-06-06 | modgc: 64-bit cleanness. | Paul Sokolovsky | |
2014-06-05 | modgc: Implement return value for gc.collect(), enable on Unix. | Paul Sokolovsky | |
2014-05-24 | Rename configuration variables controling Python features. | Damien George | |
Now of the form MICROPY_PY_*. See issue #35. | |||
2014-05-08 | Add gc.enable, gc.disable; remove pyb.gc. | Damien George | |
2014-05-06 | modgc: Add new module for GC-related functionality. | Paul Sokolovsky | |