- Jan 28, 2015
-
-
Damien George authored
This cleans up vstr so that it's a pure "variable buffer", and the user can decide whether they need to add a terminating null byte. In most places where vstr is used, the vstr did not need to be null terminated and so this patch saves code size, a tiny bit of RAM, and makes vstr usage more efficient. When null termination is needed it must be done explicitly using vstr_null_terminate.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Makes pyexec.c more re-usable for other ports.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Jan 27, 2015
-
-
David Steinberg authored
- This then provides support for floats in the struct package
-
Damien George authored
Eg, "() + 1" now tells you that __add__ is not supported for tuple and int types (before it just said the generic "binary operator"). We reuse the table of names for slot lookup because it would be a waste of code space to store the pretty name for each operator.
-
Damien George authored
-
- Jan 26, 2015
-
-
Paul Sokolovsky authored
Actually manage size of the output buffer.
-
- Jan 25, 2015
-
-
Damien George authored
-
Damien George authored
Defining NDEBUG (to any value, even 0) disables debugging. Otherwise, if it's not defined, debugging is enabled.
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
So far implements .scan(lambda x: print(x)) function to scan for WiFi access points.
-
Damien George authored
-
- Jan 24, 2015
-
-
Damien George authored
It uses RAM and on pyboard we are generally tight on RAM, so disable this optimisation for general builds. If users need the speed then they can build their own version. Maybe in the future we can have different versions of pyboard firmware built with different tradeoffs.
-
Paul Sokolovsky authored
-
Damien George authored
This makes the code (more) compatible with the C99 standard.
-
Damien George authored
-
David Steinberg authored
- Tests vary based on build configuration (32/64-bit and internal int type). - Added tests for exceptions raised on overflow of int type.
-
David Steinberg authored
-
David Steinberg authored
-
David Steinberg authored
-
David Steinberg authored
-
stijn authored
- namedtuple was wrongly using MP_OBJ_QSTR_VALUE instead of mp_obj_str_get_qstr, so when passed a non-interned string it would segfault; fix this by using mp_obj_str_get_qstr - store the namedtuple field names as qstrs so it is not needed to use mp_obj_str_get_qstr everytime the field name has to be accessed. This also slighty increases performance when fetching attributes
-
Damien George authored
accept might raise an exception, in which case the new socket is not fully created. It has a finaliser so will run close() method when GC'd. Before this patch close would try to close an invalid socket. Now fixed. setsockopt took address of stack value which became out of scope. Now fixed.
-
Paul Sokolovsky authored
-
- Jan 23, 2015
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
After vstr refactor. Fixes #1084.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
There was really weird warning (promoted to error) when building Windows port. Exact cause is still unknown, but it uncovered another issue: 8-bit and unicode str_make_new implementations should be mutually exclusive, and not built at the same time. What we had is that bytes_decode() pulled 8-bit str_make_new() even for unicode build.
-
Paul Sokolovsky authored
To somewhat unbreak -DSTATIC="" compile.
-
- Jan 22, 2015
-
-
Damien George authored
See issue #699.
-