<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Doc/includes, branch fix-traceback-syntax-error</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>Minor C API documentation improvements. (GH-17696)</title>
<updated>2019-12-25T04:25:56+00:00</updated>
<author>
<name>William Ayd</name>
<email>william.ayd@icloud.com</email>
</author>
<published>2019-12-25T04:25:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=5c7ed7550ec2da16d7679e538fcd7c1a5631811f'/>
<id>5c7ed7550ec2da16d7679e538fcd7c1a5631811f</id>
<content type='text'>
The added parentheses around the PyIter_Next assignment suppress the following warning which gcc throws without:
```
warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
```
The other change is a typo fix</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The added parentheses around the PyIter_Next assignment suppress the following warning which gcc throws without:
```
warning: using the result of an assignment as a condition without parentheses [-Wparentheses]
```
The other change is a typo fix</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-38351: Modernize email examples from %-formatting to f-strings (GH-17162)</title>
<updated>2019-11-15T09:03:46+00:00</updated>
<author>
<name>Andrey Doroschenko</name>
<email>dorosch.github.io@yandex.ru</email>
</author>
<published>2019-11-15T09:03:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=e8acc865a3f112b98417f676c897ca6ec2dac2c7'/>
<id>e8acc865a3f112b98417f676c897ca6ec2dac2c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-26868: Fix example usage of PyModule_AddObject. (#15725)</title>
<updated>2019-09-12T12:11:20+00:00</updated>
<author>
<name>Brandt Bucher</name>
<email>brandtbucher@gmail.com</email>
</author>
<published>2019-09-12T12:11:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=224b8aaa7e8f67f748e8b7b6a4a77a25f6554651'/>
<id>224b8aaa7e8f67f748e8b7b6a4a77a25f6554651</id>
<content type='text'>
* Add a note to the PyModule_AddObject docs.

* Correct example usages of PyModule_AddObject.

* Whitespace.

* Clean up wording.

* 📜🤖 Added by blurb_it.

* First code review.

* Add &lt; 0 in the tests with PyModule_AddObject
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add a note to the PyModule_AddObject docs.

* Correct example usages of PyModule_AddObject.

* Whitespace.

* Clean up wording.

* 📜🤖 Added by blurb_it.

* First code review.

* Add &lt; 0 in the tests with PyModule_AddObject
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36261: Improve example of the preamble field in email docs (GH-14751)</title>
<updated>2019-07-14T07:46:18+00:00</updated>
<author>
<name>Carl Bordum Hansen</name>
<email>carl@bordum.dk</email>
</author>
<published>2019-07-14T07:46:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8efade91b12a13102a09a3856179021e579da5e9'/>
<id>8efade91b12a13102a09a3856179021e579da5e9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36974: document PEP 590 (GH-13450)</title>
<updated>2019-06-02T23:43:13+00:00</updated>
<author>
<name>Jeroen Demeyer</name>
<email>J.Demeyer@UGent.be</email>
</author>
<published>2019-06-02T23:43:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=9e3e06e582accec82eb29cf665c3b4c7d84d2eb0'/>
<id>9e3e06e582accec82eb29cf665c3b4c7d84d2eb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-34580: Update sqlite3 examples to call close() explicitly (GH-9079)</title>
<updated>2019-05-19T21:52:20+00:00</updated>
<author>
<name>Xtreak</name>
<email>tir.karthi@gmail.com</email>
</author>
<published>2019-05-19T21:52:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=287b84de939db47aa8c6f30734ceb8aba9d1db29'/>
<id>287b84de939db47aa8c6f30734ceb8aba9d1db29</id>
<content type='text'>
The sqlit3.Connection object doesn't call its close() method when it's used
as a context manager.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The sqlit3.Connection object doesn't call its close() method when it's used
as a context manager.
</pre>
</div>
</content>
</entry>
<entry>
<title>Doc: define PY_SSIZE_T_CLEAN always (GH-12794)</title>
<updated>2019-04-13T01:46:21+00:00</updated>
<author>
<name>Inada Naoki</name>
<email>songofacandy@gmail.com</email>
</author>
<published>2019-04-13T01:46:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c88feceb449d6e85d7e17ec36559206094d10d81'/>
<id>c88feceb449d6e85d7e17ec36559206094d10d81</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-24937: Replace the extension module porting HOWTO by links to external projects (GH-9317)</title>
<updated>2018-09-24T10:42:33+00:00</updated>
<author>
<name>Petr Viktorin</name>
<email>encukou@gmail.com</email>
</author>
<published>2018-09-24T10:42:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2d3ff2b5ea6c903973f99d2155c9c1b60591dceb'/>
<id>2d3ff2b5ea6c903973f99d2155c9c1b60591dceb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed unused import from tzinfo_examples.py. (GH-7994)</title>
<updated>2018-07-05T04:47:37+00:00</updated>
<author>
<name>Sergey Fedoseev</name>
<email>fedoseev.sergey@gmail.com</email>
</author>
<published>2018-07-05T04:47:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3a9bb5f269c8534606eb02d1faa2c882d8cb8530'/>
<id>3a9bb5f269c8534606eb02d1faa2c882d8cb8530</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33958: Doc: Remove unused variable in example (GH-7927)</title>
<updated>2018-06-28T06:25:20+00:00</updated>
<author>
<name>Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)</name>
<email>srinivasreddy@users.noreply.github.com</email>
</author>
<published>2018-06-28T06:25:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=62b6cea6b843076cfd6631eccd9347e8c3dd9458'/>
<id>62b6cea6b843076cfd6631eccd9347e8c3dd9458</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
