<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/test/test_tools, branch benjamin-pyapi</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>bpo-25094: Fix test_tools.test_sundry() on Windows (GH-8406)</title>
<updated>2018-07-23T11:17:59+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@redhat.com</email>
</author>
<published>2018-07-23T11:17:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=752d4b7531093c55d6f0a5846748f981d79b29d3'/>
<id>752d4b7531093c55d6f0a5846748f981d79b29d3</id>
<content type='text'>
When Python is installed on Windows, python -m test test_tools failed
because it tried to run Tools\scripts\2to3.py which requires an
argument. Skip this script. On other platforms or on Windows but when
run from source code (not installed), the script is called "2to3"
instead of "2to.py" and so was already skipped.

Modify also the unit test to unload all modules which have been
loaded by the test.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When Python is installed on Windows, python -m test test_tools failed
because it tried to run Tools\scripts\2to3.py which requires an
argument. Skip this script. On other platforms or on Windows but when
run from source code (not installed), the script is called "2to3"
instead of "2to.py" and so was already skipped.

Modify also the unit test to unload all modules which have been
loaded by the test.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33189: pygettext.py now accepts only literal strings (GH-6364)</title>
<updated>2018-04-19T06:23:03+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-04-19T06:23:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=69524821a87251b7aee966f6e46b3810ff5aaa64'/>
<id>69524821a87251b7aee966f6e46b3810ff5aaa64</id>
<content type='text'>
as docstrings and translatable strings, and rejects
bytes literals and f-string expressions.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
as docstrings and translatable strings, and rejects
bytes literals and f-string expressions.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31920: Fixed handling directories as arguments in the ``pygettext`` script. (GH-6259)</title>
<updated>2018-04-09T17:09:17+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-04-09T17:09:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c93938b5beea4c3f592119ebee6d4029558db8de'/>
<id>c93938b5beea4c3f592119ebee6d4029558db8de</id>
<content type='text'>
Based on patch by Oleg Krasnikov.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Based on patch by Oleg Krasnikov.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32222: Fix pygettext skipping docstrings for funcs with arg typehints (GH-4745)</title>
<updated>2018-02-26T22:48:14+00:00</updated>
<author>
<name>Tobotimus</name>
<email>Tobotimus@users.noreply.github.com</email>
</author>
<published>2018-02-26T22:48:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=eee72d4778a5513038edd5236cdd87ccce2bc60a'/>
<id>eee72d4778a5513038edd5236cdd87ccce2bc60a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31174: Improve the code of test_tools.test_unparse. (#4146)</title>
<updated>2017-10-27T12:35:11+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-10-27T12:35:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=7351f9e5a91c403d15c6d556f9989b443f1296f9'/>
<id>7351f9e5a91c403d15c6d556f9989b443f1296f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31174: Fix test_tools.test_unparse (#4102)</title>
<updated>2017-10-24T10:33:36+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-10-24T10:33:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8e482bea21cb942804234e36d3c6c896aabd32da'/>
<id>8e482bea21cb942804234e36d3c6c896aabd32da</id>
<content type='text'>
test_unparse.DirectoryTestCase now stores the names sample to always
test the same files. It prevents false alarms when hunting reference
leaks.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
test_unparse.DirectoryTestCase now stores the names sample to always
test the same files. It prevents false alarms when hunting reference
leaks.</pre>
</div>
</content>
</entry>
<entry>
<title>Trivial cleanups following bpo-31370 (#3649)</title>
<updated>2017-09-18T21:50:44+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>pitrou@free.fr</email>
</author>
<published>2017-09-18T21:50:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=88c60c9668f0aa732693517a60b851cc1dfce0cb'/>
<id>88c60c9668f0aa732693517a60b851cc1dfce0cb</id>
<content type='text'>
* Trivial cleanups following bpo-31370

* Also cleanup the "importlib._bootstrap_external" module
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Trivial cleanups following bpo-31370

* Also cleanup the "importlib._bootstrap_external" module
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30109: Fix reindent.py (GH-1207)</title>
<updated>2017-04-20T05:59:20+00:00</updated>
<author>
<name>Mariatta</name>
<email>Mariatta@users.noreply.github.com</email>
</author>
<published>2017-04-20T05:59:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=58f3c9dc8f5626abe09ac9738c34f6ba99ce2972'/>
<id>58f3c9dc8f5626abe09ac9738c34f6ba99ce2972</id>
<content type='text'>
Skip the file if it has bad encoding.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Skip the file if it has bad encoding.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-29972: Skip tests known to fail on AIX (#979)</title>
<updated>2017-04-04T08:35:15+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-04-04T08:35:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5de85a17029356084b96db63e04d9eb150efd9c0'/>
<id>5de85a17029356084b96db63e04d9eb150efd9c0</id>
<content type='text'>
* bpo-29972: Fix test_eintr on AIX

On AIX, sigtimedwait(0.2) sleeps 199.8 ms, whereas the test expects
200 ms or longer.

* bpo-29972: Skip some inet_pton() tests on AIX

Skip some inet_pton() tests of test_socket on AIX.

inet_pton() on AIX is less strict than on Linux and doesn't reject
some invalid IP addresses. The unit tests test more the libc than
Python itself.

* bpo-29972: Skip tests known to fail on AIX

* test_locale.test_strcoll_with_diacritic()
* test_locale.test_strxfrm_with_diacritic()
* test_strptime.test_week_of_year_and_day_of_week_calculation()
* test_tools.test_POT_Creation_Date()
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bpo-29972: Fix test_eintr on AIX

On AIX, sigtimedwait(0.2) sleeps 199.8 ms, whereas the test expects
200 ms or longer.

* bpo-29972: Skip some inet_pton() tests on AIX

Skip some inet_pton() tests of test_socket on AIX.

inet_pton() on AIX is less strict than on Linux and doesn't reject
some invalid IP addresses. The unit tests test more the libc than
Python itself.

* bpo-29972: Skip tests known to fail on AIX

* test_locale.test_strcoll_with_diacritic()
* test_locale.test_strxfrm_with_diacritic()
* test_strptime.test_week_of_year_and_day_of_week_calculation()
* test_tools.test_POT_Creation_Date()
</pre>
</div>
</content>
</entry>
<entry>
<title>merge 3.5</title>
<updated>2016-09-13T05:09:39+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2016-09-13T05:09:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4ce9e7a14ac776c61427c2a320e0a0f41f6eb123'/>
<id>4ce9e7a14ac776c61427c2a320e0a0f41f6eb123</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
