<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Python/clinic/bltinmodule.c.h, branch fix-misc-acks</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>bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)</title>
<updated>2017-12-15T11:11:11+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-12-15T11:11:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a5552f023e1d8cbafee1e51d316cc581deb2295f'/>
<id>a5552f023e1d8cbafee1e51d316cc581deb2295f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30950: Convert round() to Argument Clinic. (#2740)</title>
<updated>2017-11-15T15:51:14+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-11-15T15:51:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=aca7f574b06c72c85a5e3e4b16a8a5e384a7c4a8'/>
<id>aca7f574b06c72c85a5e3e4b16a8a5e384a7c4a8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)</title>
<updated>2017-07-03T18:20:15+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-07-03T18:20:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=6969eaf4682beb01bc95eeb14f5ce6c01312e297'/>
<id>6969eaf4682beb01bc95eeb14f5ce6c01312e297</id>
<content type='text'>
the bare METH_FASTCALL be used for functions with positional-only
parameters.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
the bare METH_FASTCALL be used for functions with positional-only
parameters.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)</title>
<updated>2017-06-10T04:51:48+00:00</updated>
<author>
<name>Sylvain</name>
<email>sylvain.desodt+github@gmail.com</email>
</author>
<published>2017-06-10T04:51:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=7445381c606faf20e253da42656db478a4349f8e'/>
<id>7445381c606faf20e253da42656db478a4349f8e</id>
<content type='text'>
The function '_PyArg_ParseStack()' and
'_PyArg_UnpackStack' were failing (with error
"XXX() takes Y argument (Z given)") before
the function '_PyArg_NoStackKeywords()' was called.
Thus, the latter did not raise its more meaningful
error : "XXX() takes no keyword arguments".</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The function '_PyArg_ParseStack()' and
'_PyArg_UnpackStack' were failing (with error
"XXX() takes Y argument (Z given)") before
the function '_PyArg_NoStackKeywords()' was called.
Thus, the latter did not raise its more meaningful
error : "XXX() takes no keyword arguments".</pre>
</div>
</content>
</entry>
<entry>
<title>Add reference to help('FORMATTING') in format() builtin (GH-166)</title>
<updated>2017-05-29T01:02:26+00:00</updated>
<author>
<name>Amit Kumar</name>
<email>aktech@users.noreply.github.com</email>
</author>
<published>2017-05-29T01:02:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2e6bb4484ee1b0da67d1dfcf0816c58602daa5a0'/>
<id>2e6bb4484ee1b0da67d1dfcf0816c58602daa5a0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Run Argument Clinic: METH_VARARGS=&gt;METH_FASTCALL</title>
<updated>2017-01-17T01:21:47+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-01-17T01:21:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=0c4a828cadfccd8b95a39f7930705de75ed5f729'/>
<id>0c4a828cadfccd8b95a39f7930705de75ed5f729</id>
<content type='text'>
Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling
convention for functions using "boring" positional arguments.

Manually fix _elementtree: _elementtree_XMLParser_doctype() must remain
consistent with the clinic code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling
convention for functions using "boring" positional arguments.

Manually fix _elementtree: _elementtree_XMLParser_doctype() must remain
consistent with the clinic code.
</pre>
</div>
</content>
</entry>
<entry>
<title>Run Argument Clinic: METH_VARARGS=&gt;METH_FASTCALL</title>
<updated>2017-01-17T00:35:17+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-01-17T00:35:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=259f0e4437ed30036578aba822560feb531b7735'/>
<id>259f0e4437ed30036578aba822560feb531b7735</id>
<content type='text'>
Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling
convention for functions using only positional arguments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Issue #29286. Run Argument Clinic to get the new faster METH_FASTCALL calling
convention for functions using only positional arguments.
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords</title>
<updated>2017-01-17T00:29:01+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-01-17T00:29:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3e1fad6913689f1cbb08657ee5f65439a4639303'/>
<id>3e1fad6913689f1cbb08657ee5f65439a4639303</id>
<content type='text'>
Issue #29286.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Issue #29286.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #27810: Rerun Argument Clinic on all modules</title>
<updated>2016-09-10T03:00:13+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2016-09-10T03:00:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=37e4ef7b17ce6e98ca725c0a53ae14c313c0e48c'/>
<id>37e4ef7b17ce6e98ca725c0a53ae14c313c0e48c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #27574: Decreased an overhead of parsing keyword arguments in functions</title>
<updated>2016-08-14T07:52:18+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-08-14T07:52:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9171a8b4cea3e7b30e4f2c0a989d7f7b8ffabe73'/>
<id>9171a8b4cea3e7b30e4f2c0a989d7f7b8ffabe73</id>
<content type='text'>
implemented with using Argument Clinic.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
implemented with using Argument Clinic.
</pre>
</div>
</content>
</entry>
</feed>
