<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/test/test_importlib, branch refactor-lambda-parameters</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/'/>
<entry>
<title>Clean up compatibility code in importlib fixtures (#19156)</title>
<updated>2020-04-15T17:55:43+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2020-04-15T17:55:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=574547a75c79b506261520c5773ae08a1dcea1b9'/>
<id>574547a75c79b506261520c5773ae08a1dcea1b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-40029 mark test_importlib.test_zip as requiring zlib (#19105)</title>
<updated>2020-03-24T19:02:53+00:00</updated>
<author>
<name>Roman Yurchak</name>
<email>rth.yurchak@gmail.com</email>
</author>
<published>2020-03-24T19:02:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=15e5024d04fc89d948ae761d88048bc58a56b650'/>
<id>15e5024d04fc89d948ae761d88048bc58a56b650</id>
<content type='text'>
* bpo-40029 mark test_importlib.test_zip as requiring zlib

* Decorate TestZip / TestEgg classes as requiring zlib</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bpo-40029 mark test_importlib.test_zip as requiring zlib

* Decorate TestZip / TestEgg classes as requiring zlib</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)</title>
<updated>2020-03-17T17:09:46+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-03-17T17:09:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=5b1ef200d31a74a9b478d0217d73ed0a659a8a06'/>
<id>5b1ef200d31a74a9b478d0217d73ed0a659a8a06</id>
<content type='text'>
Extension modules: m_traverse, m_clear and m_free functions of
PyModuleDef are no longer called if the module state was requested
but is not allocated yet. This is the case immediately after the
module is created and before the module is executed (Py_mod_exec
function). More precisely, these functions are not called if m_size is
greater than 0 and the module state (as returned by
PyModule_GetState()) is NULL.

Extension modules without module state (m_size &lt;= 0) are not affected.

Co-Authored-By: Petr Viktorin &lt;encukou@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Extension modules: m_traverse, m_clear and m_free functions of
PyModuleDef are no longer called if the module state was requested
but is not allocated yet. This is the case immediately after the
module is created and before the module is executed (Py_mod_exec
function). More precisely, these functions are not called if m_size is
greater than 0 and the module state (as returned by
PyModule_GetState()) is NULL.

Extension modules without module state (m_size &lt;= 0) are not affected.

Co-Authored-By: Petr Viktorin &lt;encukou@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627)</title>
<updated>2020-03-09T11:57:53+00:00</updated>
<author>
<name>idomic</name>
<email>michael.ido@gmail.com</email>
</author>
<published>2020-03-09T11:57:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=fc72ab6913f2b5337ae7fda711f2de846d38f479'/>
<id>fc72ab6913f2b5337ae7fda711f2de846d38f479</id>
<content type='text'>
The importlib module now ignores the PYTHONCASEOK
environment variable when the -E or -I command line
options are being used.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The importlib module now ignores the PYTHONCASEOK
environment variable when the -E or -I command line
options are being used.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-39769: Fix compileall ddir for subpkgs. (GH-18676)</title>
<updated>2020-02-29T01:28:37+00:00</updated>
<author>
<name>Gregory P. Smith</name>
<email>greg@krypto.org</email>
</author>
<published>2020-02-29T01:28:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=02673352b5db6ca4d3dc804965facbedfe66425d'/>
<id>02673352b5db6ca4d3dc804965facbedfe66425d</id>
<content type='text'>
Fix compileall.compile_dir() ddir= behavior on sub-packages.

Fixes compileall.compile_dir's ddir parameter and compileall command
line flag `-d` to no longer write the wrong pathname to the generated
pyc file for submodules beneath the root of the directory tree being
compiled.  This fixes a regression introduced with Python 3.5.

Also marks the _new_ in 3.9 from PR #16012 parameters to compile_dir as keyword only (as that is the only way they will be used) and fixes an omission of them in one place from the docs.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix compileall.compile_dir() ddir= behavior on sub-packages.

Fixes compileall.compile_dir's ddir parameter and compileall command
line flag `-d` to no longer write the wrong pathname to the generated
pyc file for submodules beneath the root of the directory tree being
compiled.  This fixes a regression introduced with Python 3.5.

Also marks the _new_ in 3.9 from PR #16012 parameters to compile_dir as keyword only (as that is the only way they will be used) and fixes an omission of them in one place from the docs.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-39595: Improve zipfile.Path performance (#18406)</title>
<updated>2020-02-12T02:58:47+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2020-02-12T02:58:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=e5bd73632e77dc5ab0cab77e48e94ca5e354be8a'/>
<id>e5bd73632e77dc5ab0cab77e48e94ca5e354be8a</id>
<content type='text'>
* Improve zipfile.Path performance on zipfiles with a large number of entries.

* 📜🤖 Added by blurb_it.

* Add bpo to blurb

* Sync with importlib_metadata 1.5 (6fe70ca)

* Update blurb.

* Remove compatibility code

* Add stubs module, omitted from earlier commit

Co-authored-by: blurb-it[bot] &lt;43283697+blurb-it[bot]@users.noreply.github.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Improve zipfile.Path performance on zipfiles with a large number of entries.

* 📜🤖 Added by blurb_it.

* Add bpo to blurb

* Sync with importlib_metadata 1.5 (6fe70ca)

* Update blurb.

* Remove compatibility code

* Add stubs module, omitted from earlier commit

Co-authored-by: blurb-it[bot] &lt;43283697+blurb-it[bot]@users.noreply.github.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 (GH-17568)</title>
<updated>2019-12-11T01:05:10+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-12-11T01:05:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=b7a0109cd2bafaa21a4d50aad307e901c68f9156'/>
<id>b7a0109cd2bafaa21a4d50aad307e901c68f9156</id>
<content type='text'>
* bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 including improved docs for custom finders and better serialization support in EntryPoints.

* 📜🤖 Added by blurb_it.

* Correct module reference
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 including improved docs for custom finders and better serialization support in EntryPoints.

* 📜🤖 Added by blurb_it.

* Correct module reference
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-38839: Fix some unused functions in tests (GH-17189)</title>
<updated>2019-11-19T19:45:20+00:00</updated>
<author>
<name>Adam Johnson</name>
<email>me@adamj.eu</email>
</author>
<published>2019-11-19T19:45:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=892221bfa04a41cf581f988ba19dc263f557e157'/>
<id>892221bfa04a41cf581f988ba19dc263f557e157</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in test_api.py. (GH-16119)</title>
<updated>2019-09-13T17:27:59+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2019-09-13T17:27:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=0bc17ea2f5966f429b5b8d6b4ccb9c01f1f610d0'/>
<id>0bc17ea2f5966f429b5b8d6b4ccb9c01f1f610d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840)</title>
<updated>2019-09-10T13:53:31+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-09-10T13:53:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=17499d82702432955d8e442a1871ff276ca64bc5'/>
<id>17499d82702432955d8e442a1871ff276ca64bc5</id>
<content type='text'>
https://gitlab.com/python-devs/importlib_metadata/-/tags/0.21</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://gitlab.com/python-devs/importlib_metadata/-/tags/0.21</pre>
</div>
</content>
</entry>
</feed>
