<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Tools/scripts/pathfix.py, branch faster-bytes-iter</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-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-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-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>
<entry>
<title>bpo-22831: Use "with" to avoid possible fd leaks in tools (part 2). (GH-10927)</title>
<updated>2019-03-30T06:33:02+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2019-03-30T06:33:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=172bb39452ae8b3ccdf5d1f23ead46f44200cd49'/>
<id>172bb39452ae8b3ccdf5d1f23ead46f44200cd49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32885: Tools/scripts/pathfix.py: Add -n option for no backup~ (#5772)</title>
<updated>2018-03-13T09:56:43+00:00</updated>
<author>
<name>Miro Hrončok</name>
<email>miro@hroncok.cz</email>
</author>
<published>2018-03-13T09:56:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=5affd5c29eb1493cb31ef3cfdde15538ac134689'/>
<id>5affd5c29eb1493cb31ef3cfdde15538ac134689</id>
<content type='text'>
Creating backup files with ~ suffix can be undesirable in some environment,
such as when building RPM packages. Instead of requiring the user to remove
those files manually, option -n was added, that simply disables this feature.

-n was selected because 2to3 has the same option with this behavior.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Creating backup files with ~ suffix can be undesirable in some environment,
such as when building RPM packages. Instead of requiring the user to remove
those files manually, option -n was added, that simply disables this feature.

-n was selected because 2to3 has the same option with this behavior.</pre>
</div>
</content>
</entry>
<entry>
<title>#27364: fix "incorrect" uses of escape character in the stdlib.</title>
<updated>2016-09-08T17:59:53+00:00</updated>
<author>
<name>R David Murray</name>
<email>rdmurray@bitdance.com</email>
</author>
<published>2016-09-08T17:59:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=44b548dda872c0d4f30afd6b44fd74b053a55ad8'/>
<id>44b548dda872c0d4f30afd6b44fd74b053a55ad8</id>
<content type='text'>
And most of the tools.

Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and
Martin Panter.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And most of the tools.

Patch by Emanual Barry, reviewed by me, Serhiy Storchaka, and
Martin Panter.
</pre>
</div>
</content>
</entry>
<entry>
<title>#18803: merge with 3.3.</title>
<updated>2013-08-25T22:33:30+00:00</updated>
<author>
<name>Ezio Melotti</name>
<email>ezio.melotti@gmail.com</email>
</author>
<published>2013-08-25T22:33:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=d640fe2af5095c8104a7cf850c2a669c8e864215'/>
<id>d640fe2af5095c8104a7cf850c2a669c8e864215</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>#18803: fix more typos.  Patch by Févry Thibault.</title>
<updated>2013-08-25T22:32:56+00:00</updated>
<author>
<name>Ezio Melotti</name>
<email>ezio.melotti@gmail.com</email>
</author>
<published>2013-08-25T22:32:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=7c4a7e6f3cbd98ad547a3f1661582517612419e3'/>
<id>7c4a7e6f3cbd98ad547a3f1661582517612419e3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use OESeeror instead of os.error (#16720)</title>
<updated>2012-12-24T17:58:48+00:00</updated>
<author>
<name>Andrew Svetlov</name>
<email>andrew.svetlov@gmail.com</email>
</author>
<published>2012-12-24T17:58:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=8b33dd8e547790af86e9fc85ea6c315ead276b6e'/>
<id>8b33dd8e547790af86e9fc85ea6c315ead276b6e</id>
<content type='text'>
Patch by Serhiy Storchaka.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch by Serhiy Storchaka.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Issue10140 - Tools/scripts/pathfix.py: add option to preserve timestamps</title>
<updated>2010-10-19T04:39:35+00:00</updated>
<author>
<name>Senthil Kumaran</name>
<email>orsenthil@gmail.com</email>
</author>
<published>2010-10-19T04:39:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/cpython-git.git/commit/?id=7cd94b8aa2bff16d06b254b697c62d52a3f6f5fa'/>
<id>7cd94b8aa2bff16d06b254b697c62d52a3f6f5fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
