<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Tools/scripts/checkappend.py, branch refactor-lambda-parameters</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>Update README, remove obsolete scripts.</title>
<updated>2010-08-02T22:53:22+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2010-08-02T22:53:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d3f467ac7441a100eb26412424c2dd96ec3ceb67'/>
<id>d3f467ac7441a100eb26412424c2dd96ec3ceb67</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>convert shebang lines: python -&gt; python3</title>
<updated>2010-03-11T22:53:45+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2010-03-11T22:53:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7'/>
<id>90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Issue #719888: Updated tokenize to use a bytes API. generate_tokens has been</title>
<updated>2008-03-18T22:41:35+00:00</updated>
<author>
<name>Trent Nelson</name>
<email>trent.nelson@snakebite.org</email>
</author>
<published>2008-03-18T22:41:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=428de65ca99492436130165bfbaeb56d6d1daec7'/>
<id>428de65ca99492436130165bfbaeb56d6d1daec7</id>
<content type='text'>
  renamed tokenize and now works with bytes rather than strings. A new
  detect_encoding function has been added for determining source file encoding
  according to PEP-0263. Token sequences returned by tokenize always start
  with an ENCODING token which specifies the encoding used to decode the file.
  This token is used to encode the output of untokenize back to bytes.

Credit goes to Michael "I'm-going-to-name-my-first-child-unittest" Foord from Resolver Systems for this work.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  renamed tokenize and now works with bytes rather than strings. A new
  detect_encoding function has been added for determining source file encoding
  according to PEP-0263. Token sequences returned by tokenize always start
  with an ENCODING token which specifies the encoding used to decode the file.
  This token is used to encode the output of untokenize back to bytes.

Credit goes to Michael "I'm-going-to-name-my-first-child-unittest" Foord from Resolver Systems for this work.
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert print statements to function calls in Tools/.</title>
<updated>2007-08-03T17:06:41+00:00</updated>
<author>
<name>Collin Winter</name>
<email>collinw@gmail.com</email>
</author>
<published>2007-08-03T17:06:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6afaeb757af0dbd8508a0f2352ade61e41bec84c'/>
<id>6afaeb757af0dbd8508a0f2352ade61e41bec84c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>SF patch 1631942 by Collin Winter:</title>
<updated>2007-01-10T16:19:56+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2007-01-10T16:19:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b940e113bf90ff71b0ef57414ea2beea9d2a4bc0'/>
<id>b940e113bf90ff71b0ef57414ea2beea9d2a4bc0</id>
<content type='text'>
(a) "except E, V" -&gt; "except E as V"
(b) V is now limited to a simple name (local variable)
(c) V is now deleted at the end of the except block
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(a) "except E, V" -&gt; "except E as V"
(b) V is now limited to a simple name (local variable)
(c) V is now deleted at the end of the except block
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace backticks with repr() or "%r"</title>
<updated>2004-02-12T17:35:32+00:00</updated>
<author>
<name>Walter Dörwald</name>
<email>walter@livinglogic.de</email>
</author>
<published>2004-02-12T17:35:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=70a6b49821a3226f55e9716f32d802d06640cb89'/>
<id>70a6b49821a3226f55e9716f32d802d06640cb89</id>
<content type='text'>
From SF patch #852334.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From SF patch #852334.
</pre>
</div>
</content>
</entry>
<entry>
<title>Apply diff2.txt from SF patch http://www.python.org/sf/572113</title>
<updated>2002-09-11T20:36:02+00:00</updated>
<author>
<name>Walter Dörwald</name>
<email>walter@livinglogic.de</email>
</author>
<published>2002-09-11T20:36:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=aaab30e00cc3e8d90c71b8657c284feeb4ac1413'/>
<id>aaab30e00cc3e8d90c71b8657c284feeb4ac1413</id>
<content type='text'>
(with one small bugfix in bgen/bgen/scantools.py)

This replaces string module functions with string methods
for the stuff in the Tools directory. Several uses of
string.letters etc. are still remaining.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(with one small bugfix in bgen/bgen/scantools.py)

This replaces string module functions with string methods
for the stuff in the Tools directory. Several uses of
string.letters etc. are still remaining.
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct type error in getopt.error handling code.</title>
<updated>2000-02-29T13:08:44+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2000-02-29T13:08:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1b6d21bb3e931cffd30cfa9897405d282d4545e8'/>
<id>1b6d21bb3e931cffd30cfa9897405d282d4545e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Script by Tim Peters to discover illegal append() calls.</title>
<updated>2000-02-29T13:05:49+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>2000-02-29T13:05:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=aacf5ce1ad93189ab9cc03ae6b5fbc2a16e93958'/>
<id>aacf5ce1ad93189ab9cc03ae6b5fbc2a16e93958</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
