summaryrefslogtreecommitdiffstatshomepage
path: root/extmod/modure.c
Commit message (Collapse)AuthorAge
* extmod: Prefix py/ for includes from py core directory.Damien George2015-01-01
|
* py: Make functions static where appropriate.Damien George2014-12-10
|
* py: Rename mp_obj_int_get to mp_obj_int_get_truncated; fix struct.pack.Damien George2014-12-05
| | | | | | | | | | | mp_obj_int_get_truncated is used as a "fast path" int accessor that doesn't check for overflow and returns the int truncated to the machine word size, ie mp_int_t. Use mp_obj_int_get_truncated to fix struct.pack when packing maximum word sized values. Addresses issues #779 and #998.
* Use MP_DEFINE_CONST_DICT macro to define module dicts.Damien George2014-11-29
| | | | | This is just a clean-up of the code. Generated code is exactly the same.
* windows: Update config with latest featuresstijn2014-11-21
| | | | | - update mpconfigport.h to reflect latest unix version - fix compilation error in modure due to msvc not allowing dynamic arrays
* modure: Update to re1.5 v0.6, support for char sets/classes ([a-c]).Paul Sokolovsky2014-10-15
|
* modure: Make sure that re1.5 compiled in only of modure itself is enabled.Paul Sokolovsky2014-10-12
| | | | This is achieved by including re1.5 *.c files straight from modure.c .
* modure: Initial module, using re1.5 (which is based on re1 codebase).Paul Sokolovsky2014-10-11
https://github.com/pfalcon/re1.5