aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2014-03-22py: Make 'bytes' be a proper type, support standard constructor args.Paul Sokolovsky
2014-03-22py: Make 'str' be a proper type, support standard constructor args.Paul Sokolovsky
2014-03-22objstr: Switch from in-object string data to ptr to separate memory area.Paul Sokolovsky
2014-03-21Disable some math functions until they work correctly.Damien George
2014-03-21py: Put back proper ValueError for badly parsed integers.Damien George
2014-03-21py: Make str.[r]partition more efficient.Damien George
2014-03-21Merge pull request #351 from xbe/str-partitionDamien George
2014-03-21py: Improve mp_parse_num_integer; make it self contained.Damien George
2014-03-21py: Allow 'complex()' to take a string as first argument.Damien George
2014-03-21py: Implement parsing of infinity and nan for floats.Damien George
2014-03-21str.(r)partition: factor out duplicate code.xbe
2014-03-21Implement str.rpartition and add tests for it.xbe
2014-03-21Implement str.partition and add tests for it.xbe
2014-03-20Added various simple functions to math module.Rachel Dowdall
2014-03-20Added various simple functions to math module.Rachel Dowdall
2014-03-20py: Fix int-longlong binary operations.Damien George
2014-03-20py: Allow hashing of functions and tuples.Damien George
2014-03-20py: Add math.e constant.Damien George
2014-03-20py: Add mpz modulo operation.Damien George
2014-03-19py: Add comment about bugs in objint_longlong.c.Damien George
2014-03-19py: Fix bug in mpz int, where small int is on lhs, mpz on rhs.Damien George
2014-03-17objstr.c: Replace size_t with machine_uint_t.xbe
2014-03-17py: Clean up includes.xbe
2014-03-16Implement support for __str__ and __repr__ special methods in classes.Paul Sokolovsky
2014-03-15py: Fix bug in vstr_ins_blank_bytes.Damien George
2014-03-15Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George
2014-03-14stmhal - add pin mapping, gpio, exti, usrswDave Hylands
2014-03-13py: In string.count, handle case of zero-length needle.Damien George
2014-03-13Fix issues in str.count implementation.xbe
2014-03-12Implement str.count and add tests for it.xbe
2014-03-12py: Cosmetic changes.Damien George
2014-03-12Merge pull request #340 from iabdalkader/reallocDamien George
2014-03-12py: Add expm1 to math module.Damien George
2014-03-12Fix reallocmux
2014-03-12py: Implement integer overflow checking for * and << ops.Damien George
2014-03-12py: Fix some bugs in mpz; add mpz_from_ll and mpz_set_from_ll.Damien George
2014-03-10Rename formatfloat file; remove MICROPY_ENABLE_FLOAT from mpconfigport.h.Damien George
2014-03-10Add proper floating point printing support.Dave Hylands
2014-03-10Fix makeqstrdata.py to work in Python 2.7Dave Hylands
2014-03-09py: Make objstr support buffer protocol (read only).Damien George
2014-03-09py: Fix printing of type name.Damien George
2014-03-08Implement ROMable modules. Add math module.Damien George
2014-03-08py: Wrap mpz float functions in MICROPY_ENABLE_FLOAT.Damien George
2014-03-08makeqstrdata: print error to stderr.Damien George
2014-03-07py: Revert to old gc_realloc for now.Damien George
2014-03-06py: Add comments to new gc_realloc, it has some bugs.Damien George
2014-03-06py: Small cosmetic changes to gc_realloc.Damien George
2014-03-05Merge pull request #334 from iabdalkader/reallocDamien George
2014-03-05Fix gc_realloc to expand in placemux
2014-03-03py: Fix overriding of default arguments.Damien George