<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Doc/c-api/code.rst, branch alex-patch-1</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-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode_New as a compatibility wrapper (GH-13959)</title>
<updated>2019-07-01T10:35:05+00:00</updated>
<author>
<name>Pablo Galindo</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2019-07-01T10:35:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=4a2edc34a405150d0b23ecfdcb401e7cf59f4650'/>
<id>4a2edc34a405150d0b23ecfdcb401e7cf59f4650</id>
<content type='text'>
Add PyCode_NewEx to be used internally and set PyCode_New as a compatibility wrapper
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add PyCode_NewEx to be used internally and set PyCode_New as a compatibility wrapper
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37390: Add audit event table to documentations (GH-14406)</title>
<updated>2019-06-27T17:47:59+00:00</updated>
<author>
<name>Steve Dower</name>
<email>steve.dower@python.org</email>
</author>
<published>2019-06-27T17:47:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=44f91c388a6f4da9ed3300df32ca290b8aa104ea'/>
<id>44f91c388a6f4da9ed3300df32ca290b8aa104ea</id>
<content type='text'>
Also updates some (unreleased) event names to be consistent with the others.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also updates some (unreleased) event names to be consistent with the others.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707)</title>
<updated>2019-06-01T20:18:48+00:00</updated>
<author>
<name>Pablo Galindo</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2019-06-01T20:18:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3b57f50efc16c65df96914ec53bc8d3dc28e18b6'/>
<id>3b57f50efc16c65df96914ec53bc8d3dc28e18b6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37122: Make co-&gt;co_argcount represent the total number of positonal arguments in the code object (GH-13726)</title>
<updated>2019-06-01T17:08:04+00:00</updated>
<author>
<name>Pablo Galindo</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2019-06-01T17:08:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=cd74e66a8c420be675fd2fbf3fe708ac02ee9f21'/>
<id>cd74e66a8c420be675fd2fbf3fe708ac02ee9f21</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Document changes for PyCode_New regarding PEP570 (GH-13706)</title>
<updated>2019-05-31T18:33:41+00:00</updated>
<author>
<name>Pablo Galindo</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2019-05-31T18:33:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=545a3b8814dbf2a5391e830d69e796fb1a1d62ec'/>
<id>545a3b8814dbf2a5391e830d69e796fb1a1d62ec</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36540: Documentation for PEP570 - Python positional only arguments (#13202)</title>
<updated>2019-05-28T23:45:32+00:00</updated>
<author>
<name>Pablo Galindo</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2019-05-28T23:45:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b76302ddd0896cb39ce69909349b53db6e7776e2'/>
<id>b76302ddd0896cb39ce69909349b53db6e7776e2</id>
<content type='text'>
* bpo-36540: Documentation for PEP570 - Python positional only arguments

* fixup! bpo-36540: Documentation for PEP570 - Python positional only arguments

* Update reference for compound statements

* Apply suggestions from Carol

Co-Authored-By: Carol Willing &lt;carolcode@willingconsulting.com&gt;

* Update Doc/tutorial/controlflow.rst

Co-Authored-By: Carol Willing &lt;carolcode@willingconsulting.com&gt;

* Add extra bullet point and minor edits
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* bpo-36540: Documentation for PEP570 - Python positional only arguments

* fixup! bpo-36540: Documentation for PEP570 - Python positional only arguments

* Update reference for compound statements

* Apply suggestions from Carol

Co-Authored-By: Carol Willing &lt;carolcode@willingconsulting.com&gt;

* Update Doc/tutorial/controlflow.rst

Co-Authored-By: Carol Willing &lt;carolcode@willingconsulting.com&gt;

* Add extra bullet point and minor edits
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36842: Implement PEP 578 (GH-12613)</title>
<updated>2019-05-23T15:45:22+00:00</updated>
<author>
<name>Steve Dower</name>
<email>steve.dower@microsoft.com</email>
</author>
<published>2019-05-23T15:45:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b82e17e626f7b1cd98aada0b1ebb65cb9f8fb184'/>
<id>b82e17e626f7b1cd98aada0b1ebb65cb9f8fb184</id>
<content type='text'>
Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs.</pre>
</div>
</content>
</entry>
<entry>
<title>Doc: Replace the deprecated highlightlang directive by highlight. (#13377)</title>
<updated>2019-05-17T09:55:34+00:00</updated>
<author>
<name>Stéphane Wirtel</name>
<email>stephane@wirtel.be</email>
</author>
<published>2019-05-17T09:55:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=cbb6484573ae2058e55614b28d73b0c8478f9a70'/>
<id>cbb6484573ae2058e55614b28d73b0c8478f9a70</id>
<content type='text'>
highlightlang is deprecated since April 2018 in Sphinx.
See https://github.com/sphinx-doc/sphinx/pull/4845</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
highlightlang is deprecated since April 2018 in Sphinx.
See https://github.com/sphinx-doc/sphinx/pull/4845</pre>
</div>
</content>
</entry>
<entry>
<title>[Issue 15476] Make "code object" its own entry in the index</title>
<updated>2016-06-02T23:26:51+00:00</updated>
<author>
<name>Tommy Beadle</name>
<email>tbeadle@gmail.com</email>
</author>
<published>2016-06-02T23:26:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e9b8403a1f5c4ecd199d1f0a03a49b6684a6b707'/>
<id>e9b8403a1f5c4ecd199d1f0a03a49b6684a6b707</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #25161: Add full stops in documentation; patch by Takase Arihiro</title>
<updated>2015-10-10T10:36:22+00:00</updated>
<author>
<name>Martin Panter</name>
<email>vadmium+py@gmail.com</email>
</author>
<published>2015-10-10T10:36:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d21e0b52f1421e253ecdc583faf5743133cac605'/>
<id>d21e0b52f1421e253ecdc583faf5743133cac605</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
