| Age | Commit message (Collapse) | Author |
|
In Python 3.4 the value is evaluated before the key. In Python 3.5 it's
key then value.
|
|
|
|
Also adds tests specifically for testing constant folding.
|
|
|
|
All breaking changes going from 3.4 to 3.5 are contained in
basics/python34.py.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Adding a line-end makes the determination of skip_native fail as it compares
the output against b'CRASH' while it is in fact b'CRASH\n'
|
|
|
|
|
|
|
|
Test possible combinations of single and double quotes with escaped
quotes and parenthesis with and without function calls in REPL.
Covers: #1419
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Configurable with MICROPY_PY_BUILTINS_SLICE_ATTRS. Disabled by default.
|
|
|
|
When creating constant mpz's, the length of the mpz must be exactly how
many digits are used (not allocated) otherwise these numbers are not
compatible with dynamically allocated numbers.
Addresses issue #1448.
|
|
|
|
Fixes #1435.
|
|
|
|
|
|
|
|
Deassign pins af before assigning. Make uart.any() return the
correct value everytime, this requires interrupts to be always
enabled.
|
|
|
|
Fails because warnings are not enabled on the CC3200.
|
|
|
|
Also remove pin.high() and pin.low() methods.
|
|
Also add relevant test.
|
|
|
|
Eg 0e0 almost looks like a hex number but in fact is a float.
|