summaryrefslogtreecommitdiffstatshomepage
path: root/py/parsenum.c
Commit message (Expand)AuthorAge
* all: Remove the "STATIC" macro and just use "static" instead.Angus Gratton2024-03-07
* py/parsenum: Fix typo in #endif comment.David Lechner2023-06-14
* py/objstr: Optimise mp_obj_new_str_from_vstr for known-safe strings.Jim Mussared2022-08-26
* py/objstr: Split mp_obj_str_from_vstr into bytes/str versions.Jim Mussared2022-08-26
* py/parsenum: Ensure that trailing zeros lead to identical results.Dan Ellis2022-08-12
* py/parsenum: Optimise when building with complex disabled.Damien George2022-06-23
* py/parsenum: Fix parsing of complex "j" and also "nanj", "infj".Damien George2022-06-23
* py/parsenum: Support parsing complex numbers of the form "a+bj".Jim Mussared2022-06-23
* py: Add option to compile without any error messages at all.Damien George2021-04-27
* all: Fix implicit floating point promotion.stijn2020-04-18
* Revert "all: Fix implicit casts of float/double, and signed comparison."stijn2020-04-18
* all: Use MP_ERROR_TEXT for all error messages.Jim Mussared2020-04-05
* py: Use preprocessor to detect error reporting level (terse/detailed).Jim Mussared2020-04-05
* all: Fix implicit casts of float/double, and signed comparison.David Lechner2020-03-30
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
* py: Rename MP_QSTR_NULL to MP_QSTRnull to avoid intern collisions.Josh Lloyd2019-09-26
* py/parsenum: Avoid rounding errors with negative powers-of-10.Romain Goyet2018-09-20
* py/lexer: Add support for underscores in numeric literals.Damien George2018-06-12
* py/parsenum: Adjust braces so they are balanced.Damien George2018-05-22
* py/parsenum: Avoid undefined behavior parsing floats with large exponents.Jeff Epler2018-05-21
* py/parsenum: Use int instead of mp_int_t for parsing float exponent.Damien George2018-05-21
* py/parsenum: Fix parsing of floats that are close to subnormal.Damien George2018-02-08
* py/parsenum: Improve parsing of floating point numbers.Damien George2017-11-27
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George2017-03-28
* py/parsenum: Fix warning for signed/unsigned comparison.Damien George2016-12-28
* py/parsenum: Simplify and generalise decoding of digit values.Damien George2016-12-28
* py: Add MICROPY_FLOAT_CONST macro for defining float constants.Damien George2016-11-03
* py: Use mp_raise_msg helper function where appropriate.Damien George2016-10-17
* py/parsenum: Use pow function to apply exponent to decimal number.Damien George2016-03-29
* py/parsenum: Fix compiler warnings for no decl and signed comparison.Damien George2016-03-14
* py/parsenum: Use size_t to count bytes, and int for type of base arg.Damien George2016-03-14
* py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR.Damien George2015-11-29
* py/parsenum: Provide detailed error for int parsing with escaped bytes.Damien George2015-10-01
* py: Clarify comment in parsenum.c about ValueError vs SyntaxError.Damien George2015-06-23
* py: Change exception type to ValueError when error reporting is terse.Daniel Campora2015-06-23
* py/parsenum.c: Rename "raise" func to "raise_exc" to avoid name clash.Damien George2015-05-30
* py: Fix printing of error message when parsing malformed integer.Damien George2015-03-16
* py: Parse big-int/float/imag constants directly in parser.Damien George2015-02-08
* py: Move to guarded includes, everywhere in py/ core.Damien George2015-01-01
* py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.Damien George2014-11-06
* parser: Convert (u)int to mp_(u)int_t.Damien George2014-07-03
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* py: Include mpconfig.h before all other includes.Paul Sokolovsky2014-06-21
* py: Separate MICROPY_PY_BUILTINS_COMPLEX from MICROPY_PY_BUILTINS_FLOAT.Paul Sokolovsky2014-06-20
* parsenum: Signedness issues.Paul Sokolovsky2014-06-14
* Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George2014-06-01
* py: Fix check of small-int overflow when parsing ints.Damien George2014-05-28
* py: Implement long int parsing in int(...).Damien George2014-05-28
* Add license header to (almost) all files.Damien George2014-05-03