Paul Sokolovsky
471b2a8906
esp8266: modesp: Add connect() function to connect to WiFi AP.
10 years ago
Paul Sokolovsky
8fff7f8d38
esp8266: Add "reset" target to Makefile.
Just always keep jumper in bootloader position. After flashing, uPy
automatically executed. And to get back to bootloader, do "make reset".
10 years ago
Paul Sokolovsky
eca9a9323a
esp8266: Update ROM address map to vendor SDK 0.9.5.
10 years ago
Paul Sokolovsky
98c4bc3fac
py: Add MICROPY_PY_ALL_SPECIAL_METHODS and __iadd__ special method under it.
10 years ago
Damien George
32bade19d9
py: Convert CR to LF and CR LF to LF in lexer.
Only noticeable difference is how newlines are encoded in triple-quoted
strings. The behaviour now matches CPython3.
10 years ago
Damien George
3da677e658
py: Implement Ellipsis object in native emitter.
10 years ago
Damien George
92ab95f215
tests: Add some tests to improve coverage.
10 years ago
Damien George
598af3a7d6
unix: Add "coverage" target to do coverage testing using gcov.
10 years ago
Damien George
827b0f747b
py: Change vstr_null_terminate -> vstr_null_terminated_str, returns str.
10 years ago
Damien George
26c0b155fa
tests: Make float/int_power.py pass on pyboard/single prec float.
10 years ago
Damien George
12c66be2b8
tests: Add some tests to improve coverage.
Used gcov to find some parts of vm.c, runtime.c, obj.c that were not
covered by any tests. Still need to use gcov more thoroughly.
10 years ago
Damien George
81e70a88a7
py: Make REPL printing function print repr of object, not str.
Addresses issue #1014 .
10 years ago
Damien George
0d3cb6726d
py: Change vstr so that it doesn't null terminate buffer by default.
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.
10 years ago
Paul Sokolovsky
57aebe1714
tests: Add testcase for bytes() on values in range 128-255.
10 years ago
Paul Sokolovsky
bbd9251bac
py: bytes(): Make sure we add values as bytes, not as chars.
10 years ago
Damien George
98e3a64694
py: Remove duplicated mp_obj_str_make_new function from objstrunicode.c.
10 years ago
Damien George
16677ce311
py: Be more precise about unicode type and disabled unicode behaviour.
10 years ago
Damien George
0ecd5988a2
stmhal: Remove unnecessary #include "systick.h" from pyexec.c.
Makes pyexec.c more re-usable for other ports.
10 years ago
Paul Sokolovsky
e9995bdea2
moduzlib: Align out buffer to block size; shrink when decompression done.
10 years ago
Paul Sokolovsky
2324f3ef29
moduzlib: Implement raw DEFLATE decoding support.
10 years ago
David Steinberg
0b3014ce3a
py: Add support for floats in mp_binary_{get,set}_val()
- This then provides support for floats in the struct package
10 years ago
Damien George
a5efcd4745
py: Specify unary/binary op name in TypeError error message.
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.
10 years ago
Damien George
a9dc9b8f6d
py: Fix comparison of minus-zero long int.
10 years ago
Paul Sokolovsky
e6a118ee85
moduzlib: Update to uzlib v1.2.
Actually manage size of the output buffer.
10 years ago
Damien George
2f8c409a4f
qemu-arm: Disable try_finally1.py test (it fails randomly on Travis).
10 years ago
Damien George
8788b131ec
py: Check for NDEBUG using #ifdef rather than #if.
Defining NDEBUG (to any value, even 0) disables debugging. Otherwise,
if it's not defined, debugging is enabled.
10 years ago
Damien George
17d299b7bd
lib/mp-readline: Use simple VT100 commands to speed up line redraw.
10 years ago
Damien George
4b35a5464c
Merge branch 'master' of github.com:micropython/micropython
10 years ago
Paul Sokolovsky
5fb775a0c0
esp8266: Handle exceptions in callback.
10 years ago
Paul Sokolovsky
6ec650b41f
esp8266: Add "esp" module with esp8266-specific "cooperative" networking.
So far implements .scan(lambda x: print(x)) function to scan for WiFi access
points.
10 years ago
Damien George
552f7c40a0
docs: Bump version to 1.3.9.
10 years ago
Damien George
ad33e2465c
stmhal: Disable MICROPY_OPT_CACHE_MAP_LOOKUP_IN_BYTECODE.
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.
10 years ago
Paul Sokolovsky
31c1f1300e
modffi: 's' (string) return type: handle NULL properly (return None).
10 years ago
Damien George
32444b759a
py: Don't use anonymous unions, name them instead.
This makes the code (more) compatible with the C99 standard.
10 years ago
Damien George
5c670acb1f
py: Be more machine-portable with size of bit fields.
10 years ago
David Steinberg
4c1a7e0d6a
tests: Update float2int tests for new range classifications
- Tests vary based on build configuration (32/64-bit and internal int type).
- Added tests for exceptions raised on overflow of int type.
10 years ago
David Steinberg
0fb17f6ef4
py: Use float-to-int classifications for mp_obj_new_int_from_float() functions
10 years ago
David Steinberg
ca377b10de
py: Add float-to-int classification function
10 years ago
David Steinberg
8d427b7ab7
py: Fix issue in mpz_set_from_float() when mp_int_t is larger than float
10 years ago
David Steinberg
c585ad1020
py: Move mp_float_t related defines to misc.h
10 years ago
stijn
6b636738b2
py: Fix segfault in namedtuple when name is a non-interned string
- 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
10 years ago
Damien George
23342c09ff
stmhal: Bug fix for usocket's accept and setsockopt methods.
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.
10 years ago
Paul Sokolovsky
91232d3850
binary: Rework array accessors. They work with native, not stdint types.
10 years ago
Paul Sokolovsky
ca3dbb8d8b
stream: readall(): Make sure there's a trailing NUL char.
10 years ago
Paul Sokolovsky
66b060f3e6
tests: Fix typo in file_long_read3.py.
10 years ago
Paul Sokolovsky
444331c07f
modujson: .loads(): Handle more whitespace characters.
10 years ago
Paul Sokolovsky
1f04336b23
tests: Add extra test for reading multiple of internal chunk size.
10 years ago
Paul Sokolovsky
425f952a1e
stream: Fix readall() implementation in respect to NUL terminator bytes.
After vstr refactor. Fixes #1084 .
10 years ago
Paul Sokolovsky
220d21e1bf
tests: Add testcase for reading amounts bigger than buffer/chunk size.
10 years ago
Paul Sokolovsky
344e15b1ae
objstr: Remove code duplication and unbreak Windows build.
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.
10 years ago