<feed xmlns='http://www.w3.org/2005/Atom'>
<title>cpython.git/Python, branch v2.7rc2</title>
<subtitle>https://github.com/python/cpython.git</subtitle>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/'/>
<entry>
<title>different spellings are just unacceptable</title>
<updated>2010-06-11T21:40:37Z</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2010-06-11T21:40:37Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=c6660cf4d68ec17fef0a49aca2cf441c124a88d4'/>
<id>c6660cf4d68ec17fef0a49aca2cf441c124a88d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix code formatting</title>
<updated>2010-06-09T19:45:04Z</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2010-06-09T19:45:04Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=1056ca264f97e42ffafe8451720ca59147a3134c'/>
<id>1056ca264f97e42ffafe8451720ca59147a3134c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #3798: Write sys.exit() message to sys.stderr to use stderr encoding and</title>
<updated>2010-05-25T22:30:32Z</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2010-05-25T22:30:32Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=c49dfcc8dcf5aec3151f7a76fd860ce0247f9bf9'/>
<id>c49dfcc8dcf5aec3151f7a76fd860ce0247f9bf9</id>
<content type='text'>
error handler, instead of writing to the C stderr file in utf-8
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
error handler, instead of writing to the C stderr file in utf-8
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows</title>
<updated>2010-05-21T17:12:38Z</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2010-05-21T17:12:38Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=6a2656094d1806abc5229758246865bcbaa34c5e'/>
<id>6a2656094d1806abc5229758246865bcbaa34c5e</id>
<content type='text'>
embedders of the interpreter to set sys.argv without also modifying
sys.path.  This helps fix `CVE-2008-5983
&lt;http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983&gt;`_.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
embedders of the interpreter to set sys.argv without also modifying
sys.path.  This helps fix `CVE-2008-5983
&lt;http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-5983&gt;`_.
</pre>
</div>
</content>
</entry>
<entry>
<title>Turned out that if you used explicit relative import syntax</title>
<updated>2010-05-20T18:37:55Z</updated>
<author>
<name>Brett Cannon</name>
<email>bcannon@gmail.com</email>
</author>
<published>2010-05-20T18:37:55Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=eb3cd301aea85de122c828afa6473bfc6c9eb10e'/>
<id>eb3cd301aea85de122c828afa6473bfc6c9eb10e</id>
<content type='text'>
(e.g. from .os import sep) and it failed, import would still try the implicit
relative import semantics of an absolute import (from os import sep). That's
not right, so when level is negative, only do explicit relative import
semantics.

Fixes issue #7902. Thanks to Meador Inge for the patch.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(e.g. from .os import sep) and it failed, import would still try the implicit
relative import semantics of an absolute import (from os import sep). That's
not right, so when level is negative, only do explicit relative import
semantics.

Fixes issue #7902. Thanks to Meador Inge for the patch.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use 4-spaces for indentation (instead of tabs) in pgen outputs</title>
<updated>2010-05-15T22:55:28Z</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@haypocalc.com</email>
</author>
<published>2010-05-15T22:55:28Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=3bea1ede7d260484f66b1ee4e3e20d65e3bf9bd1'/>
<id>3bea1ede7d260484f66b1ee4e3e20d65e3bf9bd1</id>
<content type='text'>
Regenerate (reindent) Python/graminit.c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Regenerate (reindent) Python/graminit.c
</pre>
</div>
</content>
</entry>
<entry>
<title>Untabify C files. Will watch buildbots.</title>
<updated>2010-05-09T14:46:46Z</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2010-05-09T14:46:46Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=c83ea137d7e717f764e2f31fc2544f522de7d857'/>
<id>c83ea137d7e717f764e2f31fc2544f522de7d857</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Skip signal handler re-installation if it is not necessary.  Issue 8354.</title>
<updated>2010-05-08T20:06:02Z</updated>
<author>
<name>Jean-Paul Calderone</name>
<email>exarkun@divmod.com</email>
</author>
<published>2010-05-08T20:06:02Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=e54ddf1ed2ec9f4166e51a392afeaa857a56d5c3'/>
<id>e54ddf1ed2ec9f4166e51a392afeaa857a56d5c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert a change where an expression is not needed now, but could be in the future.</title>
<updated>2010-05-05T23:11:08Z</updated>
<author>
<name>Brett Cannon</name>
<email>bcannon@gmail.com</email>
</author>
<published>2010-05-05T23:11:08Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=f4f0bf850bc99f5d70a4d8ffe1e0126d8c46b1ec'/>
<id>f4f0bf850bc99f5d70a4d8ffe1e0126d8c46b1ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove an unneeded variable assignment.</title>
<updated>2010-05-05T20:53:20Z</updated>
<author>
<name>Brett Cannon</name>
<email>bcannon@gmail.com</email>
</author>
<published>2010-05-05T20:53:20Z</published>
<link rel='alternate' type='text/html' href='http://service.techsat.com/oss-git/cpython.git/commit/?id=5335e77810d39670e0a36a888113aee56ddc34ec'/>
<id>5335e77810d39670e0a36a888113aee56ddc34ec</id>
<content type='text'>
Found using Clang's static analyzer.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Found using Clang's static analyzer.
</pre>
</div>
</content>
</entry>
</feed>
