<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/tests, branch v1.4.3</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.4.3</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.4.3'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2015-05-13T22:10:15+00:00</updated>
<entry>
<title>py: Fix printing of complex number when imaginary part is nan</title>
<updated>2015-05-13T22:10:15+00:00</updated>
<author>
<name>stijn</name>
<email>stinos@zoho.com</email>
</author>
<published>2015-05-13T19:35:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=709955b601a0b7de7a85e91d97846660979904a7'/>
<id>urn:sha1:709955b601a0b7de7a85e91d97846660979904a7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unix: Add some extra coverage tests for vstr and attrtuple.</title>
<updated>2015-05-12T22:34:10+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-05-12T22:34:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=f601390ef899a3b87b92d5075ded98a9766fdd6b'/>
<id>urn:sha1:f601390ef899a3b87b92d5075ded98a9766fdd6b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests: Add further tests for class defining __hash__.</title>
<updated>2015-05-12T22:08:18+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-05-12T22:08:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=7bab32ef89d760a8cf4aeb2700725ea88e3fc31c'/>
<id>urn:sha1:7bab32ef89d760a8cf4aeb2700725ea88e3fc31c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.</title>
<updated>2015-05-12T21:46:02+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-05-11T12:25:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=c2a4e4effc81d8ab21bb014e34355643e5ca0da2'/>
<id>urn:sha1:c2a4e4effc81d8ab21bb014e34355643e5ca0da2</id>
<content type='text'>
Hashing is now done using mp_unary_op function with MP_UNARY_OP_HASH as
the operator argument.  Hashing for int, str and bytes still go via
fast-path in mp_unary_op since they are the most common objects which
need to be hashed.

This lead to quite a bit of code cleanup, and should be more efficient
if anything.  It saves 176 bytes code space on Thumb2, and 360 bytes on
x86.

The only loss is that the error message "unhashable type" is now the
more generic "unsupported type for __hash__".
</content>
</entry>
<entry>
<title>vm: Properly handle StopIteration raised in user instance iterator.</title>
<updated>2015-05-11T22:57:42+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2015-05-10T23:59:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=6738c1dded8e436686f85008ec0a4fc47406ab7a'/>
<id>urn:sha1:6738c1dded8e436686f85008ec0a4fc47406ab7a</id>
<content type='text'>
I.e. in bytecode Python functions.
</content>
</entry>
<entry>
<title>sthmal/rtc.c: Add calibration() method to get/set RTC fine-tuning value.</title>
<updated>2015-05-11T22:48:39+00:00</updated>
<author>
<name>blmorris</name>
<email>bryan.morrissey@gmail.com</email>
</author>
<published>2015-05-07T17:18:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=5df81de7afbf4e9f24413ba957f4a7cce89fa1e0'/>
<id>urn:sha1:5df81de7afbf4e9f24413ba957f4a7cce89fa1e0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py: iternext() may not return MP_OBJ_NULL, only MP_OBJ_STOP_ITERATION.</title>
<updated>2015-05-09T21:41:49+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2015-05-09T21:41:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4ed7b7f751b161420e6979927fd0756467a10cb7'/>
<id>urn:sha1:4ed7b7f751b161420e6979927fd0756467a10cb7</id>
<content type='text'>
Testing for incorrect value led to premature termination of generator
containing yield from for such iterator (e.g. "yield from [1, 2]").
</content>
</entry>
<entry>
<title>unix: Make extra-coverage function callable from Python scripts.</title>
<updated>2015-05-08T08:18:38+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-05-08T08:18:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d792d9e49ea89aa8a742f57d70e5b59c9d68939e'/>
<id>urn:sha1:d792d9e49ea89aa8a742f57d70e5b59c9d68939e</id>
<content type='text'>
This allows the output of the extra-coverage tests to be checked using
the normal run-tests script.
</content>
</entry>
<entry>
<title>tests: Add test for machine module (mem* functions).</title>
<updated>2015-05-07T23:18:28+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-05-07T23:18:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=0589c19d5239bb4456f06049925d71851e896d1e'/>
<id>urn:sha1:0589c19d5239bb4456f06049925d71851e896d1e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>unix-cpy: Fix adjustment of stack size when leaving exception handler.</title>
<updated>2015-05-06T15:46:21+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2015-05-06T15:46:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=57ebe1b27d6ae10584d3b5f767e3cc5aa481c0b0'/>
<id>urn:sha1:57ebe1b27d6ae10584d3b5f767e3cc5aa481c0b0</id>
<content type='text'>
Also remove __debug__ from one of the bytecode tests.
</content>
</entry>
</feed>
