<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython.git/Python, branch master</title>
<subtitle>
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/'/>
<entry>
<title>Backed out changeset f23fa1f7b68f</title>
<updated>2017-02-10T13:19:36+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-02-10T13:19:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=ec7729dfc2425044ab4d508165b4fb0a00c065d0'/>
<id>ec7729dfc2425044ab4d508165b4fb0a00c065d0</id>
<content type='text'>
Sorry, I didn't want to push this change before the review :-( I was pushing a
change into the 2.7 branch.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Sorry, I didn't want to push this change before the review :-( I was pushing a
change into the 2.7 branch.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #29465: Add Objects/call.c file</title>
<updated>2017-02-10T12:32:29+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-02-10T12:32:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=d3f4d3fd74ca4924bbca57433ba13435c164978e'/>
<id>d3f4d3fd74ca4924bbca57433ba13435c164978e</id>
<content type='text'>
* Move all functions to call objects in a new Objects/call.c file.
* Rename fast_function() to _PyFunction_FastCallKeywords().
* Copy null_error() from Objects/abstract.c
* Inline type_error() in call.c to not have to copy it, it was only
  called once.
* Export _PyEval_EvalCodeWithName() since it is now called
  from call.c.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Move all functions to call objects in a new Objects/call.c file.
* Rename fast_function() to _PyFunction_FastCallKeywords().
* Copy null_error() from Objects/abstract.c
* Inline type_error() in call.c to not have to copy it, it was only
  called once.
* Export _PyEval_EvalCodeWithName() since it is now called
  from call.c.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and</title>
<updated>2017-02-06T08:41:46+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-02-06T08:41:46+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=54ab9ca906471f8a49e22c7f85d4f34c2ef7212c'/>
<id>54ab9ca906471f8a49e22c7f85d4f34c2ef7212c</id>
<content type='text'>
_PyArg_NoPositional() now are macros.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
_PyArg_NoPositional() now are macros.
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed redundant Argument Clinic directives.</title>
<updated>2017-02-04T09:53:22+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-02-04T09:53:22+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=2da5419cea8ee7c2332331c45ab96b295011bdff'/>
<id>2da5419cea8ee7c2332331c45ab96b295011bdff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #29263: LOAD_METHOD support for C methods</title>
<updated>2017-02-02T22:43:03+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2017-02-02T22:43:03+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=99c092a531abf57a8f5c37356dc6971cdfed497a'/>
<id>99c092a531abf57a8f5c37356dc6971cdfed497a</id>
<content type='text'>
Calling builtin method is at most 10% faster.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Calling builtin method is at most 10% faster.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #29286: Rename private PyArg_UnpackStack_impl() to unpack_stack()</title>
<updated>2017-02-01T16:42:18+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-02-01T16:42:18+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=f4bb50d8e1bc9fb5eee226b901838ce9c399824e'/>
<id>f4bb50d8e1bc9fb5eee226b901838ce9c399824e</id>
<content type='text'>
Rename also "l" argument to "nargs".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Rename also "l" argument to "nargs".
</pre>
</div>
</content>
</entry>
<entry>
<title>Document that _PyFunction_FastCallDict() must copy kwargs</title>
<updated>2017-02-01T16:04:52+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>victor.stinner@gmail.com</email>
</author>
<published>2017-02-01T16:04:52+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=d9d677581682d1b326293ea2b62beaefdb34084f'/>
<id>d9d677581682d1b326293ea2b62beaefdb34084f</id>
<content type='text'>
Issue #29318: Caller and callee functions must not share the dictionary:
kwargs must be copied.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Issue #29318: Caller and callee functions must not share the dictionary:
kwargs must be copied.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #29369: Use Py_IDENTIFIER in Python-ast.c</title>
<updated>2017-01-25T13:33:43+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2017-01-25T13:33:43+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=7feaf0d910db343577e557694e2ad1c6188ba375'/>
<id>7feaf0d910db343577e557694e2ad1c6188ba375</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #26729: Fixed __text_signature__ for sorted().</title>
<updated>2017-01-23T10:30:59+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-01-23T10:30:59+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=a5c896babbece4868dffd1e8e64ab88afe55b46f'/>
<id>a5c896babbece4868dffd1e8e64ab88afe55b46f</id>
<content type='text'>
Patch by Erik Welch.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch by Erik Welch.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #26729: Fixed __text_signature__ for sorted().</title>
<updated>2017-01-23T10:30:35+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2017-01-23T10:30:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/cpython.git/commit/?id=c0f01d9eb22ed81c49d8c9fbfd49b6d4c4020310'/>
<id>c0f01d9eb22ed81c49d8c9fbfd49b6d4c4020310</id>
<content type='text'>
Patch by Erik Welch.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Patch by Erik Welch.
</pre>
</div>
</content>
</entry>
</feed>
