<feed xmlns='http://www.w3.org/2005/Atom'>
<title>platform_external_python_uritemplates/tests, branch android11-dev</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/'/>
<entry>
<title>Appease Python 2.7</title>
<updated>2019-12-06T19:15:03+00:00</updated>
<author>
<name>Brett Cannon</name>
<email>brcan@microsoft.com</email>
</author>
<published>2019-12-06T19:15:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=b98d77c546835aeded413cd7048e503f0158f387'/>
<id>b98d77c546835aeded413cd7048e503f0158f387</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Specify file encodings</title>
<updated>2019-12-06T19:12:20+00:00</updated>
<author>
<name>Brett Cannon</name>
<email>brcan@microsoft.com</email>
</author>
<published>2019-12-06T19:12:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=6ef7577baf8a99539d4c2e3965c4797c6ea5d318'/>
<id>6ef7577baf8a99539d4c2e3965c4797c6ea5d318</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert test input file changes</title>
<updated>2019-12-06T19:11:57+00:00</updated>
<author>
<name>Brett Cannon</name>
<email>brcan@microsoft.com</email>
</author>
<published>2019-12-06T19:11:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=0a1cd6f8adf44f7cbe1717e4db44fec364f4e272'/>
<id>0a1cd6f8adf44f7cbe1717e4db44fec364f4e272</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update support for Python 3.7 &amp; 3.8</title>
<updated>2019-12-02T19:18:45+00:00</updated>
<author>
<name>Brett Cannon</name>
<email>brcan@microsoft.com</email>
</author>
<published>2019-12-02T19:18:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=ab215b3eb7b16801d5a13267570caaa944cab3d6'/>
<id>ab215b3eb7b16801d5a13267570caaa944cab3d6</id>
<content type='text'>
Starting in Python 3.7 the quoting support changed from RFC 2396 to RFC 3986.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Starting in Python 3.7 the quoting support changed from RFC 2396 to RFC 3986.
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct handling of empty/undef in list values</title>
<updated>2019-07-11T10:38:12+00:00</updated>
<author>
<name>Tommy Yu</name>
<email>tommy.yu@auckland.ac.nz</email>
</author>
<published>2019-07-11T10:27:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=abb1308fa8b7c50eb79e9f07ee448a76c7449847'/>
<id>abb1308fa8b7c50eb79e9f07ee448a76c7449847</id>
<content type='text'>
- Expansion of a list including `None` values, violating 3.2.1 as the
  undefined value is not ignored, e.g.

  &gt;&gt;&gt; expand('/test{/x*}', x=['one', None, 'three'])
  '/test/one/None/three'

- A list with empty string was ignored, violating 2.3 as this should not
  be tread as undefined, example:

  &gt;&gt;&gt; expand('/test{/x}', x=[])
  '/test'
  &gt;&gt;&gt; expand('/test{/x}', x='')
  '/test/'
  &gt;&gt;&gt; expand('/test{/x}', x=[''])
  '/test'  # should be /test/
  &gt;&gt;&gt; expand('/test{/x}', x=['', ''])
  '/test/,'
  &gt;&gt;&gt; expand('/test{/x*}', x=['', ''])
  '/test//'
  &gt;&gt;&gt; expand('/test{/x*}', x=[''])
  '/test'
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Expansion of a list including `None` values, violating 3.2.1 as the
  undefined value is not ignored, e.g.

  &gt;&gt;&gt; expand('/test{/x*}', x=['one', None, 'three'])
  '/test/one/None/three'

- A list with empty string was ignored, violating 2.3 as this should not
  be tread as undefined, example:

  &gt;&gt;&gt; expand('/test{/x}', x=[])
  '/test'
  &gt;&gt;&gt; expand('/test{/x}', x='')
  '/test/'
  &gt;&gt;&gt; expand('/test{/x}', x=[''])
  '/test'  # should be /test/
  &gt;&gt;&gt; expand('/test{/x}', x=['', ''])
  '/test/,'
  &gt;&gt;&gt; expand('/test{/x*}', x=['', ''])
  '/test//'
  &gt;&gt;&gt; expand('/test{/x*}', x=[''])
  '/test'
</pre>
</div>
</content>
</entry>
<entry>
<title>Tests covering current correct behaviors.</title>
<updated>2019-07-11T10:21:14+00:00</updated>
<author>
<name>Tommy Yu</name>
<email>tommy.yu@auckland.ac.nz</email>
</author>
<published>2019-07-11T10:21:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=21afcf2c35f21034124a230abebd1157cbee8265'/>
<id>21afcf2c35f21034124a230abebd1157cbee8265</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade Python syntax with pyupgrade https://github.com/asottile/pyupgrade</title>
<updated>2018-09-06T13:59:32+00:00</updated>
<author>
<name>Hugo</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2018-09-06T13:59:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=910f60597444da9b9ffc680f73050f6d67083403'/>
<id>910f60597444da9b9ffc680f73050f6d67083403</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix pep8</title>
<updated>2018-09-06T13:49:51+00:00</updated>
<author>
<name>Hugo</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2018-09-06T13:49:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=d4ce8c74cef9dd8ef246b3ce5689fc488c511834'/>
<id>d4ce8c74cef9dd8ef246b3ce5689fc488c511834</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing variables function</title>
<updated>2016-08-23T21:20:14+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-08-23T21:20:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=def5c821ba145aac450947f8eba7e57e484fe9de'/>
<id>def5c821ba145aac450947f8eba7e57e484fe9de</id>
<content type='text'>
At some point the uritemplate module added a variables function. This
adds that interface to maintain compatibility.

Closes #26
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At some point the uritemplate module added a variables function. This
adds that interface to maintain compatibility.

Closes #26
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up for Flake8</title>
<updated>2016-08-17T21:25:27+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-08-17T21:25:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.replicant.us/mirrors/AOSP/platform_external_python_uritemplates/commit/?id=902a8b487cfdd5b9c4d01be6733bb1ec85403585'/>
<id>902a8b487cfdd5b9c4d01be6733bb1ec85403585</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
