<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/tests, branch v1.1.1</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.1.1</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.1.1'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2014-06-13T22:21:13+00:00</updated>
<entry>
<title>objstr: Be 8-bit clean even for repr().</title>
<updated>2014-06-13T22:21:13+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-06-13T18:23:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=2ec38a17d4e357f8f12ee6a2643e2dd2ff7a426e'/>
<id>urn:sha1:2ec38a17d4e357f8f12ee6a2643e2dd2ff7a426e</id>
<content type='text'>
This will allow roughly the same behavior as Python3 for non-ASCII strings,
for example, print("&lt;phrase in non-Latin script&gt;".split()) will print list
of words, not weird hex dump (like Python2 behaves). (Of course, that it
will print list of words, if there're "words" in that phrase at all, separated
by ASCII-compatible whitespace; that surely won't apply to every human
language in existence).
</content>
</entry>
<entry>
<title>py: Rename builtin "io" to "_io".</title>
<updated>2014-06-11T22:22:25+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-06-11T22:22:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=fbdf2f1d63e39cb197e6cebb340af4a648c96121'/>
<id>urn:sha1:fbdf2f1d63e39cb197e6cebb340af4a648c96121</id>
<content type='text'>
Functionality we provide in builtin io module is fairly minimal. Some
code, including CPython stdlib, depends on more functionality. So, there's
a choice to either implement it in C, or move it _io, and let implement other
functionality in Python. 2nd choice is pursued. This setup matches CPython
too (_io is builtin, io is Python-level).
</content>
</entry>
<entry>
<title>tests: Add testcases for "complicated" args to generator functions.</title>
<updated>2014-06-11T17:43:47+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-06-11T17:22:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=f4bf065dac9ee40e89f02115042e86c75ea3f22c'/>
<id>urn:sha1:f4bf065dac9ee40e89f02115042e86c75ea3f22c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py: Implement __contains__ special method.</title>
<updated>2014-06-10T22:07:56+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2014-06-10T22:07:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=58cbb4d661ee40af5ef2b6a6a7f15b1b2ee5b4e5'/>
<id>urn:sha1:58cbb4d661ee40af5ef2b6a6a7f15b1b2ee5b4e5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>objtype: Fix passing of class param to inherited classmethods.</title>
<updated>2014-06-08T19:28:44+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-06-08T19:28:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=195de3247b0a02df9098b45551b0d5e8d9b06a33'/>
<id>urn:sha1:195de3247b0a02df9098b45551b0d5e8d9b06a33</id>
<content type='text'>
This is getting more and more tangled, but that's old news.
</content>
</entry>
<entry>
<title>tests: Run 'micropython' tests on pyboard.</title>
<updated>2014-06-08T12:46:03+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2014-06-08T12:46:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4297fed1c384c6e1fc596fb471a645469a3e6118'/>
<id>urn:sha1:4297fed1c384c6e1fc596fb471a645469a3e6118</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests: Add more tests for default keyword-only args.</title>
<updated>2014-06-08T11:58:32+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2014-06-08T11:58:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=9e951498b28706bac7347d3c599977c13d9515c4'/>
<id>urn:sha1:9e951498b28706bac7347d3c599977c13d9515c4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tests: Fix default arg test.</title>
<updated>2014-06-07T23:12:32+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2014-06-07T23:12:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=c06427c0196fd71ae39276fa359e2036765b719d'/>
<id>urn:sha1:c06427c0196fd71ae39276fa359e2036765b719d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py: Make sure getattr() works with non-interned strings (by interning them).</title>
<updated>2014-06-07T22:15:06+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-06-07T22:13:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=b4efac14cde7dca4b3fd5ded9b29e11f97621d14'/>
<id>urn:sha1:b4efac14cde7dca4b3fd5ded9b29e11f97621d14</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py: Implement default keyword only args.</title>
<updated>2014-06-07T21:01:00+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2014-06-07T21:01:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=f0778a7ccbbdd1d7bf116a6939c7eb05173e1987'/>
<id>urn:sha1:f0778a7ccbbdd1d7bf116a6939c7eb05173e1987</id>
<content type='text'>
Should finish addressing issue #524.
</content>
</entry>
</feed>
