<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/py/py.mk, branch v1.3</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.3</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.3'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2014-08-12T21:26:19+00:00</updated>
<entry>
<title>modzlibd: Decompress part of "zlib" module, based on miniz tinfl.c .</title>
<updated>2014-08-12T21:26:19+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-08-08T19:51:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=510296f25ae53e5732fe98cdd4b68bfeea15204a'/>
<id>urn:sha1:510296f25ae53e5732fe98cdd4b68bfeea15204a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py: Implement builtin reversed() function.</title>
<updated>2014-08-12T17:33:40+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2014-08-12T17:33:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=4c03b3a899d49f0f4f2c54903403aaa9b384c315'/>
<id>urn:sha1:4c03b3a899d49f0f4f2c54903403aaa9b384c315</id>
<content type='text'>
reversed function now implemented, and works for tuple, list, str, bytes
and user objects with __len__ and __getitem__.

Renamed mp_builtin_len to mp_obj_len to make it publically available (eg
for reversed).
</content>
</entry>
<entry>
<title>py: Make print() accept "file" argument, and actually print to stream.</title>
<updated>2014-07-19T18:27:22+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-07-13T20:07:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=cb66f41ebc4980f4e6b7543bece19e3b9daac25c'/>
<id>urn:sha1:cb66f41ebc4980f4e6b7543bece19e3b9daac25c</id>
<content type='text'>
And not system printf(), like it was before. For this, move pfenv_printf()
from stmhal port to py/.
</content>
</entry>
<entry>
<title>moductypes: Foreign data interface module, roughly based on ctype ideas.</title>
<updated>2014-07-09T16:28:24+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-06-28T00:03:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=8215847b4d3bbbf859893db44f6de8a9fdea9f35'/>
<id>urn:sha1:8215847b4d3bbbf859893db44f6de8a9fdea9f35</id>
<content type='text'>
But much smaller and memory-efficient. Uses Python builtin data structures
(dict, tuple, int) to describe structure layout.
</content>
</entry>
<entry>
<title>py: Prune unneeded code from objstrunicode, reuse code in objstr.</title>
<updated>2014-06-26T21:04:18+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-06-13T19:01:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=9731912ccba94adeda95a150502d3ed7e97ce99b'/>
<id>urn:sha1:9731912ccba94adeda95a150502d3ed7e97ce99b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>py: Add portable framework to query/check C stack usage.</title>
<updated>2014-06-26T21:03:55+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-06-25T00:03:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=23668698cba9bf861c697e65e3d07f9433396b8b'/>
<id>urn:sha1:23668698cba9bf861c697e65e3d07f9433396b8b</id>
<content type='text'>
Such mechanism is important to get stable Python functioning, because Python
function calling is handled with C stack. The idea is to sprinkle
STACK_CHECK() calls in places where there can be C recursion.

TODO: Add more STACK_CHECK()'s.
</content>
</entry>
<entry>
<title>modgc: Add new module for GC-related functionality.</title>
<updated>2014-05-05T23:28:49+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-05-05T23:16:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=f9e54e0ea53c774c4458c4af11764e5b929a2b33'/>
<id>urn:sha1:f9e54e0ea53c774c4458c4af11764e5b929a2b33</id>
<content type='text'>
</content>
</entry>
<entry>
<title>modio: Implement io.StringIO class.</title>
<updated>2014-04-26T17:26:14+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-04-26T17:26:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=cb9dc086a34a501dd05c439277eb79c93c4c02a0'/>
<id>urn:sha1:cb9dc086a34a501dd05c439277eb79c93c4c02a0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Makefile: Allow to override "super optimization" options used for some files.</title>
<updated>2014-04-23T23:59:43+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2014-04-23T23:59:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=1c1d902cd395f1b521e4fe1e11f8f26f50eafc3f'/>
<id>urn:sha1:1c1d902cd395f1b521e4fe1e11f8f26f50eafc3f</id>
<content type='text'>
To help with debugging issue like #510 for example.
</content>
</entry>
<entry>
<title>py: Add arg checking helper functions.</title>
<updated>2014-04-19T23:13:22+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2014-04-19T23:13:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=a3f94e0030dc209f4d180531878cede7a1e2dbbe'/>
<id>urn:sha1:a3f94e0030dc209f4d180531878cede7a1e2dbbe</id>
<content type='text'>
These are to assist in writing native C functions that take positional
and keyword arguments.  mp_arg_check_num is for just checking the
number of arguments is correct.  mp_arg_parse_all is for parsing
positional and keyword arguments with default values.
</content>
</entry>
</feed>
