<feed xmlns='http://www.w3.org/2005/Atom'>
<title>suspect-devices/circuitpython/tests, branch 4.0.x</title>
<subtitle>CircuitPython - a Python implementation for teaching coding with microcontrollers</subtitle>
<id>https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=4.0.x</id>
<link rel='self' href='https://git.suspectdevices.com/suspect-devices/circuitpython/atom?h=4.0.x'/>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/'/>
<updated>2019-06-26T18:02:18+00:00</updated>
<entry>
<title>Fix tests</title>
<updated>2019-06-26T18:02:18+00:00</updated>
<author>
<name>Scott Shawcroft</name>
<email>scott@tannewt.org</email>
</author>
<published>2019-06-26T18:02:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=6d2072f9cb3385eb6d69ac876d9d415a4e41e062'/>
<id>urn:sha1:6d2072f9cb3385eb6d69ac876d9d415a4e41e062</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use approx of original @godlygeek code for smallints; add tests</title>
<updated>2019-05-12T15:17:29+00:00</updated>
<author>
<name>Dan Halbert</name>
<email>halbert@halwitz.org</email>
</author>
<published>2019-05-12T15:17:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=8664a6574b4cb448df26bfaa0e12eb203cc5d759'/>
<id>urn:sha1:8664a6574b4cb448df26bfaa0e12eb203cc5d759</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add tests for overflows converting ints to bytes</title>
<updated>2019-05-09T07:22:24+00:00</updated>
<author>
<name>Matt Wozniski</name>
<email>godlygeek+git@gmail.com</email>
</author>
<published>2019-05-09T07:19:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=e041df73bb7bf424bcf571f25e3459359c4f36ed'/>
<id>urn:sha1:e041df73bb7bf424bcf571f25e3459359c4f36ed</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix tests and clarify first character access</title>
<updated>2019-05-07T16:30:55+00:00</updated>
<author>
<name>Kathryn Lingel</name>
<email>kathryn@lingel.net</email>
</author>
<published>2019-05-07T16:30:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=eb3cb4d99bc324d941e4fd32fd30c86ebf4c44e3'/>
<id>urn:sha1:eb3cb4d99bc324d941e4fd32fd30c86ebf4c44e3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Correct output expectation</title>
<updated>2019-05-06T22:13:28+00:00</updated>
<author>
<name>Kathryn Lingel</name>
<email>kathryn@lingel.net</email>
</author>
<published>2019-05-06T22:13:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=33b5cff8db0915875d7c45c467bff3c77b7d9532'/>
<id>urn:sha1:33b5cff8db0915875d7c45c467bff3c77b7d9532</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update tests for new autocomplete behavior</title>
<updated>2019-05-06T21:19:07+00:00</updated>
<author>
<name>Kathryn Lingel</name>
<email>kathryn@lingel.net</email>
</author>
<published>2019-05-06T21:19:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=77f177be9c52deea63de544701fa476239249dcd'/>
<id>urn:sha1:77f177be9c52deea63de544701fa476239249dcd</id>
<content type='text'>
</content>
</entry>
<entry>
<title>extmod/ure: Handle some escape sequences.</title>
<updated>2019-02-14T14:42:25+00:00</updated>
<author>
<name>Radomir Dopieralski</name>
<email>openstack@sheep.art.pl</email>
</author>
<published>2017-07-24T23:09:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=20a787adb4140002acb8e5ea21536069e184ffaf'/>
<id>urn:sha1:20a787adb4140002acb8e5ea21536069e184ffaf</id>
<content type='text'>
Fix MicroPython #3176

Handle escape sequences inside regular expressions. This adds
handling for \a, \b, \f, \n, \r, \v and \\.
</content>
</entry>
<entry>
<title>extmod/modure: Add ure.sub() function and method, and tests.</title>
<updated>2019-02-14T14:42:22+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2018-05-24T03:08:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=b9dc23c070bde772a941f803d8fac9cafc0e163c'/>
<id>urn:sha1:b9dc23c070bde772a941f803d8fac9cafc0e163c</id>
<content type='text'>
This feature is controlled at compile time by MICROPY_PY_URE_SUB, disabled
by default.

Thanks to @dmazzella for the original patch for this feature; see #3770.
</content>
</entry>
<entry>
<title>extmod/modure: Add match.span(), start() and end() methods, and tests.</title>
<updated>2019-02-14T14:42:21+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2018-05-24T03:08:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=cbeac094ef88b1f6a12cad7a3135f0530302ad20'/>
<id>urn:sha1:cbeac094ef88b1f6a12cad7a3135f0530302ad20</id>
<content type='text'>
This feature is controlled at compile time by
MICROPY_PY_URE_MATCH_SPAN_START_END, disabled by default.

Thanks to @dmazzella for the original patch for this feature; see #3770.
</content>
</entry>
<entry>
<title>extmod/modure: Add match.groups() method, and tests.</title>
<updated>2019-02-14T14:42:19+00:00</updated>
<author>
<name>Damien George</name>
<email>damien.p.george@gmail.com</email>
</author>
<published>2018-05-24T03:07:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.suspectdevices.com/suspect-devices/circuitpython/commit/?id=a24fabbb6fc0b7dedd56a363e5eb5819010fec37'/>
<id>urn:sha1:a24fabbb6fc0b7dedd56a363e5eb5819010fec37</id>
<content type='text'>
This feature is controlled at compile time by MICROPY_PY_URE_MATCH_GROUPS,
disabled by default.

Thanks to @dmazzella for the original patch for this feature; see #3770.
</content>
</entry>
</feed>
