<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/docs, branch v1.9.2</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.9.2</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=v1.9.2'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2017-08-23T01:46:35+00:00</updated>
<entry>
<title>docs: Bump version to 1.9.2.</title>
<updated>2017-08-23T01:46:35+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2017-08-23T01:46:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=1f78e7a43130acfa4bedf16c1007a1b0f37c75c3'/>
<id>urn:sha1:1f78e7a43130acfa4bedf16c1007a1b0f37c75c3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>docs: Consistently link to micropython-lib in glossary.</title>
<updated>2017-08-22T06:33:31+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-08-22T06:33:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=64a3c52f663b09e10d028ba711132e7f69f450ae'/>
<id>urn:sha1:64a3c52f663b09e10d028ba711132e7f69f450ae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>docs/glossary: Fix typos in micropython-lib paragraph.</title>
<updated>2017-08-20T07:44:02+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-08-20T07:44:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=387a8d26f9b54b37928aa08641b159334b669219'/>
<id>urn:sha1:387a8d26f9b54b37928aa08641b159334b669219</id>
<content type='text'>
</content>
</entry>
<entry>
<title>docs/glossary: Elaborate on possible MicroPython port differences.</title>
<updated>2017-08-20T07:11:44+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-08-20T07:11:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=46583e905771222d7b8395e4c33569e2624f1943'/>
<id>urn:sha1:46583e905771222d7b8395e4c33569e2624f1943</id>
<content type='text'>
State that this doc describes generic, "core" MicroPython functionality,
any particular port may diverge in both directions, by both omitting
some functionality, and adding more, both cases described outside the
generic documentation.
</content>
</entry>
<entry>
<title>docs/library/usocket: Describe complete information on address formats.</title>
<updated>2017-08-20T06:49:12+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-08-20T06:49:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=3f915704833e2bf8b2d8b977640e8c630c5c5ef7'/>
<id>urn:sha1:3f915704833e2bf8b2d8b977640e8c630c5c5ef7</id>
<content type='text'>
Describe that the only portable way to deal with addresses is by using
getaddrinfo(). Describe that some ports may support tuple addresses using
"socket" module (vs "usocket" of native MicroPython).
</content>
</entry>
<entry>
<title>docs/library/usocket: Move socket.error to its own section.</title>
<updated>2017-08-20T06:04:48+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-08-20T06:04:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=ccaad5327087eb93c3c5329b02ba7c11d95c0487'/>
<id>urn:sha1:ccaad5327087eb93c3c5329b02ba7c11d95c0487</id>
<content type='text'>
It's too minor a point to start the module description with it.
</content>
</entry>
<entry>
<title>docs/library/ubinascii: Update base64 docs.</title>
<updated>2017-08-17T06:25:51+00:00</updated>
<author>
<name>Alex Robbins</name>
<email>alexdotrobbins@gmail.com</email>
</author>
<published>2017-08-04T23:01:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=0aa1d3f4477f56faf3bfc2891be627b86d87a63b'/>
<id>urn:sha1:0aa1d3f4477f56faf3bfc2891be627b86d87a63b</id>
<content type='text'>
This clarifies return values and the handling of invalid (e.g. newline)
characters.

Encoding conforms to RFC 3548, but decoding does not, as it ignores invalid
characters in base64 input. Instead, it conforms to MIME handling of base64
(RFC 2045).

Note that CPython doesn't document handling of invalid characters in
a2b_base64() docs:
https://docs.python.org/3/library/binascii.html#binascii.a2b_base64 , so
we specify it more explicitly than it, based on CPython's actual behavior
(with which MicroPython now compliant).
</content>
</entry>
<entry>
<title>docs/library/machine.RTC.rst: Fix typo.</title>
<updated>2017-08-14T05:42:25+00:00</updated>
<author>
<name>Javier Candeira</name>
<email>javier@candeira.com</email>
</author>
<published>2017-08-14T05:42:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=c127ace28a4faeb93ef86743c703a14258137efc'/>
<id>urn:sha1:c127ace28a4faeb93ef86743c703a14258137efc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>docs/esp8266/tutorial: Fix typo, "its" to "it's" in powerctrl.rst.</title>
<updated>2017-07-24T00:33:03+00:00</updated>
<author>
<name>Matthew Brener</name>
<email>akkatracker@gmail.com</email>
</author>
<published>2017-07-23T12:53:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=d003daee06d0547c496169fcc306ed82082e34be'/>
<id>urn:sha1:d003daee06d0547c496169fcc306ed82082e34be</id>
<content type='text'>
</content>
</entry>
<entry>
<title>eps8266/general: Fix typo in recent example.</title>
<updated>2017-07-21T09:08:18+00:00</updated>
<author>
<name>Paul Sokolovsky</name>
<email>pfalcon@users.sourceforge.net</email>
</author>
<published>2017-07-21T09:08:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=205c368fa1e03e93af3b45ae08ac02f87ca866b5'/>
<id>urn:sha1:205c368fa1e03e93af3b45ae08ac02f87ca866b5</id>
<content type='text'>
</content>
</entry>
</feed>
