| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-03-04 | extmod/ure: Correctly return None when a group has no match. | Damien George | |
| See issue #1122. | |||
| 2015-03-03 | tests: Skip basics/boundmeth1.py for native emitter. | Damien George | |
| 2015-03-03 | tests: Add tests for boundmeth; and bignum cmp, unary, float, error. | Damien George | |
| 2015-03-03 | tests: Skip special math fun tests when math module exists but not funs. | stijn | |
| 2015-03-02 | tests: Add basics test for gc module. | Damien George | |
| 2015-03-02 | tests: Use range as iterable instead of list comprehension. | Damien George | |
| So that navite emitter passes (comprehensions use yield which is not yet supported by native emitter). | |||
| 2015-03-02 | tests: Add tests for builtins: all, any, sum, abs. | Damien George | |
| 2015-03-02 | tests: Add tests for inline assembler beq_n and beq_w ops. | Damien George | |
| 2015-03-02 | tests: Add tests for op special meths, ubinascii, complex. | Damien George | |
| 2015-03-01 | tests: Add test for micropython const feature when it has a SyntaxError. | Damien George | |
| 2015-02-27 | tests: Add test for array slice assignment. | Paul Sokolovsky | |
| 2015-02-27 | tests: Update pyb/uart.py test since baudrate of 1200 is too low. | Damien George | |
| 2015-02-27 | py: Fix adding of traceback so that it appends to existing info. | Damien George | |
| This makes exception traceback info self contained (ie doesn't rely on list object, which was a bit of a hack), reduces code size, and reduces RAM footprint of exception by eliminating the list object. Addresses part of issue #1126. | |||
| 2015-02-23 | tests: Add more tests for pyb.Timer class. | Damien George | |
| 2015-02-22 | tests: Add test for math special functions. | Damien George | |
| 2015-02-21 | tests: Add tests for ure groups and named char classes. | Damien George | |
| Issue #1122 should now be fixed. | |||
| 2015-02-21 | run-tests-exp.sh: Typo fix in comment. | Paul Sokolovsky | |
| 2015-02-16 | py: Implement bl/bx instructions for inline Thumb assembler. | Damien George | |
| 2015-02-16 | tests: Add another testcase for relative imports. | Paul Sokolovsky | |
| 2015-02-15 | stmhal: Add support for CAN rx callbacks. | Henrik Sölver | |
| 2015-02-15 | tests: Remove obsolete test; don't use fp in micropython/ tests. | Damien George | |
| 2015-02-15 | py: Simplify and remove redundant code for __iter__ method lookup. | Damien George | |
| 2015-02-15 | py: Fix loading of immediate pointer in Thumb assembler. | Damien George | |
| Addresses issue #1117. | |||
| 2015-02-14 | py: Add setattr builtin. | stijn | |
| 2015-02-13 | stmhal: Add uart.sendbreak() method, to send a break condition. | Damien George | |
| 2015-02-13 | py: Implement clz and rbit for inline Thumb assembler. | Damien George | |
| 2015-02-13 | py: Implement sdiv/udiv for inline Thumb assembler. | Damien George | |
| 2015-02-13 | py: Implement push/pop for inline Thumb assembler. | Damien George | |
| 2015-02-09 | py: Allow subclass of native object to delegate to the native buffer_p. | Damien George | |
| Addresses issue #1109. | |||
| 2015-02-09 | objstr: Fix bytes creation from array of long ints. | Paul Sokolovsky | |
| 2015-02-08 | py: Parse big-int/float/imag constants directly in parser. | Damien George | |
| Previous to this patch, a big-int, float or imag constant was interned (made into a qstr) and then parsed at runtime to create an object each time it was needed. This is wasteful in RAM and not efficient. Now, these constants are parsed straight away in the parser and turned into objects. This allows constants with large numbers of digits (so addresses issue #1103) and takes us a step closer to #722. | |||
| 2015-02-02 | extmod: Make ujson.loads raise exception if given empty string. | Damien George | |
| Addresses issue #1097. | |||
| 2015-02-02 | tests: Disable float/cmath_fun.py for native emitter. | Damien George | |
| 2015-02-02 | py: Make list.sort keep stack usage within O(log(N)) bound. | Damien George | |
| Also fix list.sort so it works with user-defined types, and parse the keyword arguments properly. Addresses issue #338. | |||
| 2015-02-02 | tests: Add test for cmath module. | Damien George | |
| 2015-01-30 | py: Convert CR to LF and CR LF to LF in lexer. | Damien George | |
| Only noticeable difference is how newlines are encoded in triple-quoted strings. The behaviour now matches CPython3. | |||
| 2015-01-29 | tests: Add some tests to improve coverage. | Damien George | |
| 2015-01-29 | tests: Make float/int_power.py pass on pyboard/single prec float. | Damien George | |
| 2015-01-29 | tests: Add some tests to improve coverage. | Damien George | |
| 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. | |||
| 2015-01-28 | tests: Add testcase for bytes() on values in range 128-255. | Paul Sokolovsky | |
| 2015-01-28 | moduzlib: Implement raw DEFLATE decoding support. | Paul Sokolovsky | |
| 2015-01-27 | py: Add support for floats in mp_binary_{get,set}_val() | David Steinberg | |
| - This then provides support for floats in the struct package | |||
| 2015-01-27 | py: Fix comparison of minus-zero long int. | Damien George | |
| 2015-01-24 | tests: Update float2int tests for new range classifications | David Steinberg | |
| - Tests vary based on build configuration (32/64-bit and internal int type). - Added tests for exceptions raised on overflow of int type. | |||
| 2015-01-23 | tests: Fix typo in file_long_read3.py. | Paul Sokolovsky | |
| 2015-01-23 | modujson: .loads(): Handle more whitespace characters. | Paul Sokolovsky | |
| 2015-01-23 | tests: Add extra test for reading multiple of internal chunk size. | Paul Sokolovsky | |
| 2015-01-23 | tests: Add testcase for reading amounts bigger than buffer/chunk size. | Paul Sokolovsky | |
| 2015-01-22 | lib/libm: Add frexp and modf functions; use in stmhal; add tests. | Damien George | |
| Addresses issue #1081. | |||
| 2015-01-21 | py: Implement proper re-raising in native codegen's finally handler. | Damien George | |
| This allows an exception to propagate correctly through a finally handler. | |||
