<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/test/test_tools, 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>bpo-40443: Remove unused imports in tests (GH-19805)</title>
<updated>2020-04-29T23:48:37+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@python.org</email>
</author>
<published>2020-04-29T23:48:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=57572b103ebd8732ac21922f0051a7f140d0e405'/>
<id>57572b103ebd8732ac21922f0051a7f140d0e405</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-38870: Expose a function to unparse an ast object in the ast module (GH-17302)</title>
<updated>2019-11-24T23:02:40+00:00</updated>
<author>
<name>Pablo Galindo</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2019-11-24T23:02:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=27fc3b6f3fc49a36d3f962caac5c5495696d12ed'/>
<id>27fc3b6f3fc49a36d3f962caac5c5495696d12ed</id>
<content type='text'>
Add ast.unparse() as a function in the ast module that can be used to unparse an
ast.AST object and produce a string with code that would produce an equivalent ast.AST
object when parsed.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add ast.unparse() as a function in the ast module that can be used to unparse an
ast.AST object and produce a string with code that would produce an equivalent ast.AST
object when parsed.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36876: Re-organize the c-analyzer tool code. (gh-16841)</title>
<updated>2019-10-19T02:00:04+00:00</updated>
<author>
<name>Eric Snow</name>
<email>ericsnowcurrently@gmail.com</email>
</author>
<published>2019-10-19T02:00:04+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=e4c431ecf50def40eb93c3969c1e4eeaf7bf32f1'/>
<id>e4c431ecf50def40eb93c3969c1e4eeaf7bf32f1</id>
<content type='text'>
This is partly a cleanup of the code. It also is preparation for getting the variables from the source (cross-platform) rather than from the symbols.

The change only touches the tool (and its tests).</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is partly a cleanup of the code. It also is preparation for getting the variables from the source (cross-platform) rather than from the symbols.

The change only touches the tool (and its tests).</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-38347: find pathfix for Python scripts whose name contain a '-' (GH-16536)</title>
<updated>2019-10-11T13:36:50+00:00</updated>
<author>
<name>Ruediger Pluem</name>
<email>r.pluem@gmx.de</email>
</author>
<published>2019-10-11T13:36:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=2b7dc40b2af6578181808ba73c1533fc114e55df'/>
<id>2b7dc40b2af6578181808ba73c1533fc114e55df</id>
<content type='text'>
 pathfix.py: Assume all files that end on '.py' are Python scripts when working recursively. </content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 pathfix.py: Assume all files that end on '.py' are Python scripts when working recursively. </pre>
</div>
</content>
</entry>
<entry>
<title>bpo-38187: Fix a refleak in Tools/c-analyzer. (gh-16304)</title>
<updated>2019-09-27T14:53:34+00:00</updated>
<author>
<name>Eric Snow</name>
<email>ericsnowcurrently@gmail.com</email>
</author>
<published>2019-09-27T14:53:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=6693f730e0eb77d9453f73a3da33b78a97e996ee'/>
<id>6693f730e0eb77d9453f73a3da33b78a97e996ee</id>
<content type='text'>
The "Slot" helper (descriptor) is leaking references due to its caching mechanism. The change includes a partial fix to Slot, but also adds Variable.storage to replace the problematic use of Slot.

https://bugs.python.org/issue38187</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The "Slot" helper (descriptor) is leaking references due to its caching mechanism. The change includes a partial fix to Slot, but also adds Variable.storage to replace the problematic use of Slot.

https://bugs.python.org/issue38187</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37064: Add option -a to pathfix.py tool (GH-15717)</title>
<updated>2019-09-25T12:26:28+00:00</updated>
<author>
<name>PatrikKopkan</name>
<email>kopkanpatrik@gmail.com</email>
</author>
<published>2019-09-25T12:26:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=1dc1acbd73f05f14c974b7ce1041787d7abef31e'/>
<id>1dc1acbd73f05f14c974b7ce1041787d7abef31e</id>
<content type='text'>
Add option -a to Tools/Scripts/pathfix.py script: add flags.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add option -a to Tools/Scripts/pathfix.py script: add flags.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-38187: Fix reference leak in test_tools (GH-16233)</title>
<updated>2019-09-17T16:04:46+00:00</updated>
<author>
<name>Pablo Galindo</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2019-09-17T16:04:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=6fbc924696b4b5097c273c06ca2d82662940e184'/>
<id>6fbc924696b4b5097c273c06ca2d82662940e184</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36876: Add a tool that identifies unsupported global C variables. (#15877)</title>
<updated>2019-09-11T18:49:45+00:00</updated>
<author>
<name>Eric Snow</name>
<email>ericsnowcurrently@gmail.com</email>
</author>
<published>2019-09-11T18:49:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=ee536b2020b1f0baad1286dbd4345e13870324af'/>
<id>ee536b2020b1f0baad1286dbd4345e13870324af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37064: Skip test_tools.test_pathfix if installed (GH-15705)</title>
<updated>2019-09-05T16:09:46+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@redhat.com</email>
</author>
<published>2019-09-05T16:09:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=3f43ceff186da09978d0aff257bb18b8ac7611f7'/>
<id>3f43ceff186da09978d0aff257bb18b8ac7611f7</id>
<content type='text'>
If Python is installed, skip test_tools.test_pathfix test because
Tools/scripts/pathfix.py script is not installed.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If Python is installed, skip test_tools.test_pathfix test because
Tools/scripts/pathfix.py script is not installed.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37064: Add option -k to Tools/scripts/pathfix.py (GH-15548)</title>
<updated>2019-09-05T14:54:54+00:00</updated>
<author>
<name>PatrikKopkan</name>
<email>kopkanpatrik@gmail.com</email>
</author>
<published>2019-09-05T14:54:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=50254ac4c179cb412e90682098c97db786143929'/>
<id>50254ac4c179cb412e90682098c97db786143929</id>
<content type='text'>
Add flag -k to pathscript.py script: preserve shebang flags.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add flag -k to pathscript.py script: preserve shebang flags.</pre>
</div>
</content>
</entry>
</feed>
