- Apr 10, 2016
-
-
Damien George authored
Saves 16 bytes of code. Also, use mp_obj_get_int_truncated to allow integers as big as a machine word to be passed as the value.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Will call underlying C virtual methods of stream interface. This isn't intended to be added to every stream object (it's not in CPython), but is convenient way to expose extra operation on Python side without adding bunch of Python-level methods.
-
Paul Sokolovsky authored
-
- Apr 07, 2016
-
-
Damien George authored
Addresses issue #1965.
-
Damien George authored
-
Damien George authored
Because different emitters need to handle with-cleanup in different ways.
-
- Apr 05, 2016
-
-
Paul Sokolovsky authored
-
- Apr 04, 2016
-
-
Paul Sokolovsky authored
mp_fun_kw_t takes mp_map_t* (and not const mp_map_t*) to ease passing this arg to mp_map_lookup(), which may modify its arg, depending on flags.
-
- Apr 01, 2016
-
-
Stephen Kyle authored
-
- Mar 30, 2016
-
-
Paul Sokolovsky authored
Features inline get/put operations for the highest performance. Locking is not part of implementation, operation should be wrapped with locking externally as needed.
-
- Mar 29, 2016
-
-
Damien George authored
Pow is already a dependency when compiling with floats, so may as well use it here to reduce code size and speed up the conversion for most cases.
-
Damien George authored
Includes extensive test cases to catch hopefully all cases where buffer might overflow.
-
Damien George authored
When taking the logarithm of the float to determine the exponent, there are some edge cases that finish the log loop too large. Eg for an input value of 1e32-epsilon, this is actually less than 1e32 from the log-loop table and finishes as 10.0e31 when it should be 1.0e32. It is thus rendered as :e32 (: comes after 9 in ascii). There was the same problem with numbers less than 1.
-
- Mar 27, 2016
-
-
Paul Sokolovsky authored
-
- Mar 25, 2016
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Mar 24, 2016
-
-
Paul Sokolovsky authored
Just .write() method implemented currently.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Currently, only write support is implemented (of limited buffer size).
-
Paul Sokolovsky authored
Spools entire output buffer to a blocking stream (chunk by chunk if needed).
-
- Mar 19, 2016
-
-
Damien George authored
-
- Mar 16, 2016
-
-
Damien George authored
Previous to this patch, the "**b" in "a**b" had its own parse node with just one item (the "b"). Now, the "b" is just the last element of the power parse-node. This saves (a tiny bit of) RAM when compiling.
-
Paul Sokolovsky authored
-
Damien George authored
-
- Mar 15, 2016
-
-
Damien George authored
-
Damien George authored
-
- Mar 14, 2016
-
-
Damien George authored
Addresses issue #1898.
-
Damien George authored
-
Damien George authored
-
Damien George authored
Passing an mp_uint_t to a %d printf format is incorrect for builds where mp_uint_t is larger than word size (eg a nanboxing build). This patch adds some simple casting to int in these cases.
-
Damien George authored
-
Damien George authored
size_t is the proper type to count number of bytes in a string. The base argument does not need to be a full mp_uint_t, int is enough.
-
- Mar 10, 2016
-
-
Damien George authored
Using the original WORD_MSBIT_HIGH-logic resulted in errors when the object model is not REPR_A or REPR_C.
-
- Mar 09, 2016
-
-
Paul Sokolovsky authored
-
- Mar 08, 2016
-
-
Damien George authored
If the heap is locked, or memory allocation fails, then calling a bound method will still succeed by allocating the argument state on the stack. The new code also allocates less stack than before if less than 4 arguments are passed. It's also a tiny bit smaller in code size. This was done as part of the ESA project.
-
Paul Sokolovsky authored
-
- Mar 07, 2016
-
-
Markus Fix authored
-