<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Python/compile.c, branch v1.5.2b2</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>Implement -OO; "unsafe" optimization that removes docstrings.</title>
<updated>1999-01-28T15:08:09+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1999-01-28T15:08:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=541563ec7e853bacf12f83bab7a55b0d0ec5b3ee'/>
<id>541563ec7e853bacf12f83bab7a55b0d0ec5b3ee</id>
<content type='text'>
Marc-Andre Lemburg.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Marc-Andre Lemburg.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove prototypes for PyOS_strto[u]l -- Chris Herborth.</title>
<updated>1998-12-10T16:57:44+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-12-10T16:57:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=46e9705ecad324b24ba7d69c6926bce051ec71fa'/>
<id>46e9705ecad324b24ba7d69c6926bce051ec71fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add more SET_LINENO instructions in long argument lists</title>
<updated>1998-12-10T16:56:22+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-12-10T16:56:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ca90605678cb724b9fc521e42abd644162d686c3'/>
<id>ca90605678cb724b9fc521e42abd644162d686c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Changes to support other object types besides strings</title>
<updated>1998-10-07T19:42:25+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-10-07T19:42:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d076c73cc81a974794c9aa7e812931b74d6e03c2'/>
<id>d076c73cc81a974794c9aa7e812931b74d6e03c2</id>
<content type='text'>
as the code string of code objects, as long as they support
the (readonly) buffer interface.  By Greg Stein.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
as the code string of code objects, as long as they support
the (readonly) buffer interface.  By Greg Stein.
</pre>
</div>
</content>
</entry>
<entry>
<title>Eh, better error message for the previous change.  It now says</title>
<updated>1998-10-02T14:06:56+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-10-02T14:06:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=dfede31c7f52f91195f3e9a6cf7c103e23e63d50'/>
<id>dfede31c7f52f91195f3e9a6cf7c103e23e63d50</id>
<content type='text'>
"non-default argument follows default argument".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"non-default argument follows default argument".
</pre>
</div>
</content>
</entry>
<entry>
<title>Treat def f(a, b=1, c): ... as an error (missing default for c)</title>
<updated>1998-10-02T13:41:54+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-10-02T13:41:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=29d38cd08861a8fc458a8f842a8a7077786f5154'/>
<id>29d38cd08861a8fc458a8f842a8a7077786f5154</id>
<content type='text'>
instead of silently supplying a default of None fore c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
instead of silently supplying a default of None fore c.
</pre>
</div>
</content>
</entry>
<entry>
<title>Comment out the print statement about underflow.  (This only seems to</title>
<updated>1998-08-25T18:22:17+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-08-25T18:22:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=90f827c67e27b98804d74e8e579a9bd98bc01702'/>
<id>90f827c67e27b98804d74e8e579a9bd98bc01702</id>
<content type='text'>
happen when you use a non-keyword argument after a keyword argument,
and in this case you also get a syntax error.  I fully suspect that
the underflow is caused by the code that stops generating code when it
detects the syntax error, but I can't find the culprit right now.  I
know, I know.)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
happen when you use a non-keyword argument after a keyword argument,
and in this case you also get a syntax error.  I fully suspect that
the underflow is caused by the code that stops generating code when it
detects the syntax error, but I can't find the culprit right now.  I
know, I know.)
</pre>
</div>
</content>
</entry>
<entry>
<title>Since PyDict_GetItem() can't raise an exception any more, there's no</title>
<updated>1998-05-14T02:16:20+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-05-14T02:16:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=234e260d5ed827364c733bf086d68c4395c0d9e6'/>
<id>234e260d5ed827364c733bf086d68c4395c0d9e6</id>
<content type='text'>
need to call PyErr_Clear() when it returns NULL.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
need to call PyErr_Clear() when it returns NULL.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make first raise argument optional</title>
<updated>1998-04-09T21:39:57+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1998-04-09T21:39:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d295f120ae6bd624eaac9032b70fad0aec110597'/>
<id>d295f120ae6bd624eaac9032b70fad0aec110597</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't use sscanf(s, "%x", &amp;c) to parse \xX... escapes; hardcode it.</title>
<updated>1997-10-20T23:24:07+00:00</updated>
<author>
<name>Guido van Rossum</name>
<email>guido@python.org</email>
</author>
<published>1997-10-20T23:24:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ed1100f3b63c79cc3da075b5c23f3d4fe25270c5'/>
<id>ed1100f3b63c79cc3da075b5c23f3d4fe25270c5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
