<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Python/compile.c, branch 3.4</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>Issue #25523: Correct "a" article to "an" article</title>
<updated>2015-11-02T03:37:02+00:00</updated>
<author>
<name>Martin Panter</name>
<email>vadmium+py@gmail.com</email>
</author>
<published>2015-11-02T03:37:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=7462b64911f1e2df2de2285ddbf8b156b5cdc418'/>
<id>7462b64911f1e2df2de2285ddbf8b156b5cdc418</id>
<content type='text'>
This changes the main documentation, doc strings, source code comments, and a
couple error messages in the test suite. In some cases the word was removed
or edited some other way to fix the grammar.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes the main documentation, doc strings, source code comments, and a
couple error messages in the test suite. In some cases the word was removed
or edited some other way to fix the grammar.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed indentation of Python examples in C comments.</title>
<updated>2015-06-10T21:06:39+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-06-10T21:06:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d741a880497b8458ef068c111caa64546166e3ff'/>
<id>d741a880497b8458ef068c111caa64546166e3ff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>shorten capsule name macro; it doesn't need to be so long</title>
<updated>2015-05-07T22:41:47+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2015-05-07T22:41:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9e77f72fb2b247d7024e37a106ed2791bb7298d7'/>
<id>9e77f72fb2b247d7024e37a106ed2791bb7298d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23192: Fixed generator lambdas.  Patch by Bruno Cauet.</title>
<updated>2015-03-11T16:20:35+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2015-03-11T16:20:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c775ad615a6370ec8424422422bbec3f0976428b'/>
<id>c775ad615a6370ec8424422422bbec3f0976428b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pop the loop block even for infinite while loops (closes #23048)</title>
<updated>2014-12-13T21:06:19+00:00</updated>
<author>
<name>Benjamin Peterson</name>
<email>benjamin@python.org</email>
</author>
<published>2014-12-13T21:06:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3cda0ed062892c46cbae43989ff59399e8042f58'/>
<id>3cda0ed062892c46cbae43989ff59399e8042f58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #22453: Warn against the use of leaking macro PyObject_REPR().</title>
<updated>2014-11-18T22:08:38+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2014-11-18T22:08:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=81f68a7d4b36be360b1dd28e6cbb49a43dc8937b'/>
<id>81f68a7d4b36be360b1dd28e6cbb49a43dc8937b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #21523: Fix over-pessimistic computation of the stack effect of some opcodes in the compiler.</title>
<updated>2014-05-23T09:46:03+00:00</updated>
<author>
<name>Antoine Pitrou</name>
<email>solipsis@pitrou.net</email>
</author>
<published>2014-05-23T09:46:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9961405ed122c0f91b063f3237ad47278ae72f62'/>
<id>9961405ed122c0f91b063f3237ad47278ae72f62</id>
<content type='text'>
This also fixes a quadratic compilation time issue noticeable when compiling
code with a large number of "and" and "or" operators.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also fixes a quadratic compilation time issue noticeable when compiling
code with a large number of "and" and "or" operators.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #20625: Fix compilation issue</title>
<updated>2014-02-18T21:07:56+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2014-02-18T21:07:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6acc5e1330239cd721205b310dfddec1eb6425c1'/>
<id>6acc5e1330239cd721205b310dfddec1eb6425c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Mangle __parameters in __annotations__ dict properly. Issue #20625.</title>
<updated>2014-02-18T17:49:41+00:00</updated>
<author>
<name>Yury Selivanov</name>
<email>yselivanov@sprymix.com</email>
</author>
<published>2014-02-18T17:49:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=026019f89bf6669593d458dfa3ad9fc7b8d78bc2'/>
<id>026019f89bf6669593d458dfa3ad9fc7b8d78bc2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>upcast int to size_t to silence two autological-constant-out-of-range-compare warnings with clang.</title>
<updated>2013-12-04T07:42:46+00:00</updated>
<author>
<name>Christian Heimes</name>
<email>christian@cheimes.de</email>
</author>
<published>2013-12-04T07:42:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=724b828e7941ab801769a09b1d494cc4d9ffda3b'/>
<id>724b828e7941ab801769a09b1d494cc4d9ffda3b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
