<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Doc, branch v3.8.5</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>Simple Documentation fix: Missing link to return type class. (GH-21291)</title>
<updated>2020-07-20T11:35:11+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-20T11:35:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=f526d10267e8c0d20b3f5584eb7ca671f3a526df'/>
<id>f526d10267e8c0d20b3f5584eb7ca671f3a526df</id>
<content type='text'>
Just a simple documentation fix: apply_async and map_async return a "multiprocessing.pool.AsyncResult Object", not a "result object".
(cherry picked from commit f9bf0157999cb4adbcfd7e9bf526bfa48601e128)

Co-authored-by: Volker-Weissmann &lt;39418860+Volker-Weissmann@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Just a simple documentation fix: apply_async and map_async return a "multiprocessing.pool.AsyncResult Object", not a "result object".
(cherry picked from commit f9bf0157999cb4adbcfd7e9bf526bfa48601e128)

Co-authored-by: Volker-Weissmann &lt;39418860+Volker-Weissmann@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37703: improve asyncio.gather documentation regarding cancellation (GH-15312)</title>
<updated>2020-07-20T09:00:51+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-20T09:00:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=58f59a962180123a6d29ece512d198b365726b33'/>
<id>58f59a962180123a6d29ece512d198b365726b33</id>
<content type='text'>
These changes updates the doc to comprehensively mention the behaviour of gather.cancel()

Automerge-Triggered-By: @asvetlov
(cherry picked from commit d42528a3a2c7d79fd2e6c9f2a02f3ce12d44c8cc)

Co-authored-by: Vinay Sharma &lt;vinay04sharma@icloud.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These changes updates the doc to comprehensively mention the behaviour of gather.cancel()

Automerge-Triggered-By: @asvetlov
(cherry picked from commit d42528a3a2c7d79fd2e6c9f2a02f3ce12d44c8cc)

Co-authored-by: Vinay Sharma &lt;vinay04sharma@icloud.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41205: Document Decimal power 0 to the 0 (GH-21386)</title>
<updated>2020-07-19T11:10:47+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-19T11:10:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=dac8a3a15647d016842e2ae7284cefa27ce5e838'/>
<id>dac8a3a15647d016842e2ae7284cefa27ce5e838</id>
<content type='text'>
Co-authored-by: Mark Dickinson &lt;dickinsm@gmail.com&gt;
(cherry picked from commit 10e466448f67850ed7bb2e2a4e7f017f2b050cad)

Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్  రెడ్డి తాటిపర్తి) &lt;thatiparthysreenivas@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Mark Dickinson &lt;dickinsm@gmail.com&gt;
(cherry picked from commit 10e466448f67850ed7bb2e2a4e7f017f2b050cad)

Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్  రెడ్డి తాటిపర్తి) &lt;thatiparthysreenivas@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32528: Document the change in inheritance of asyncio.CancelledError (GH-21474)</title>
<updated>2020-07-19T07:50:54+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-19T07:50:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=700cb6617545cdb8a9e16bb2e6efe90788a60d4d'/>
<id>700cb6617545cdb8a9e16bb2e6efe90788a60d4d</id>
<content type='text'>
GH-msg373510

[bpo-32528]()/GH-13528 changed `asyncio.CancelledError` such that it no longer inherits from `concurrent.futures.CancelledError`. As this affects existing code, specifically when catching the latter instead of the former in exception handling, it should be documented in the "What's new in 3.8?" document.

Automerge-Triggered-By: @1st1
(cherry picked from commit 2a5181829af394b82e8e8c917183c709ee72a2b7)

Co-authored-by: JustAnotherArchivist &lt;JustAnotherArchivist@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
GH-msg373510

[bpo-32528]()/GH-13528 changed `asyncio.CancelledError` such that it no longer inherits from `concurrent.futures.CancelledError`. As this affects existing code, specifically when catching the latter instead of the former in exception handling, it should be documented in the "What's new in 3.8?" document.

Automerge-Triggered-By: @1st1
(cherry picked from commit 2a5181829af394b82e8e8c917183c709ee72a2b7)

Co-authored-by: JustAnotherArchivist &lt;JustAnotherArchivist@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41325: Add version note for args and kwargs property in call object (GH-21525)</title>
<updated>2020-07-18T13:13:21+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-18T13:13:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=7734738d71c052779d3cb189e5ba0759beb8d620'/>
<id>7734738d71c052779d3cb189e5ba0759beb8d620</id>
<content type='text'>
(cherry picked from commit 9b01c598ca2576a1056816e85dd84bf5f9c74688)

Co-authored-by: Jordan Speicher &lt;uSpike@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 9b01c598ca2576a1056816e85dd84bf5f9c74688)

Co-authored-by: Jordan Speicher &lt;uSpike@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unnecessary spaces in code blocks in urllib.parse.rst (GH-21500)</title>
<updated>2020-07-16T11:29:45+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-16T11:29:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d4a63031dac0078d97677da43a1e3004ea64c993'/>
<id>d4a63031dac0078d97677da43a1e3004ea64c993</id>
<content type='text'>
This should also fix the syntax highlighting for these code blocks

Automerge-Triggered-By: @csabella
(cherry picked from commit 5e5c0f98667c9280c6d27b3db98a6cad2cc89077)

Co-authored-by: Christopher Yeh &lt;chrisyeh96@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should also fix the syntax highlighting for these code blocks

Automerge-Triggered-By: @csabella
(cherry picked from commit 5e5c0f98667c9280c6d27b3db98a6cad2cc89077)

Co-authored-by: Christopher Yeh &lt;chrisyeh96@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix repeated words in Classes tutorial (GH-21455)</title>
<updated>2020-07-14T01:49:44+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-14T01:49:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b4cd77de05e5bbaa6a4be90f710b787e0790c36f'/>
<id>b4cd77de05e5bbaa6a4be90f710b787e0790c36f</id>
<content type='text'>
The phrase "At any time during execution," was repeated twice.

Automerge-Triggered-By: @Mariatta
(cherry picked from commit 4f28f75deefc6e8f65694f96f1a40b0a26fc385d)

Co-authored-by: Paul McMillan &lt;paul@mcmillan.ws&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The phrase "At any time during execution," was repeated twice.

Automerge-Triggered-By: @Mariatta
(cherry picked from commit 4f28f75deefc6e8f65694f96f1a40b0a26fc385d)

Co-authored-by: Paul McMillan &lt;paul@mcmillan.ws&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372)</title>
<updated>2020-07-11T02:09:07+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-11T02:09:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c77f71f9819022fa3adeb2f710e564a392ff24c6'/>
<id>c77f71f9819022fa3adeb2f710e564a392ff24c6</id>
<content type='text'>
(cherry picked from commit 344dce312a0cf86d5a5772d54843cc179acaf6e3)

Co-authored-by: Nima Dini &lt;nima.dini@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 344dce312a0cf86d5a5772d54843cc179acaf6e3)

Co-authored-by: Nima Dini &lt;nima.dini@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo in docs: 'created by th' -&gt; 'created by the' (GH-21384)</title>
<updated>2020-07-10T15:51:31+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-10T15:51:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=a1d208435c4a1da5c8df829c35751855a87ef6be'/>
<id>a1d208435c4a1da5c8df829c35751855a87ef6be</id>
<content type='text'>
(cherry picked from commit 6fc732a2116e2c42b0431bb7e2a21719351af755)

Co-authored-by: marload &lt;rladhkstn8@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
(cherry picked from commit 6fc732a2116e2c42b0431bb7e2a21719351af755)

Co-authored-by: marload &lt;rladhkstn8@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-37765: Add keywords to IDLE tab completions (GH-15138)</title>
<updated>2020-07-09T22:54:44+00:00</updated>
<author>
<name>Miss Islington (bot)</name>
<email>31488909+miss-islington@users.noreply.github.com</email>
</author>
<published>2020-07-09T22:54:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3d1c06e8b9eec5fc1ea2ed4dc1ea79c705da8ab8'/>
<id>3d1c06e8b9eec5fc1ea2ed4dc1ea79c705da8ab8</id>
<content type='text'>
Keywords are present in the main module tab completion lists generated by rlcompleter, which is used by REPLs on *nix. Add all keywords to IDLE's main module name list except those already added from builtins (True, False, and None) . This list may also be used by Show Completions on the Edit menu, and its hot key.

Rewrite Completions doc.

Co-authored-by: Cheryl Sabella &lt;cheryl.sabella@gmail.com&gt;
(cherry picked from commit bce2eb4646021910aa4074d86f44a09b32d0b2b2)

Co-authored-by: Terry Jan Reedy &lt;tjreedy@udel.edu&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Keywords are present in the main module tab completion lists generated by rlcompleter, which is used by REPLs on *nix. Add all keywords to IDLE's main module name list except those already added from builtins (True, False, and None) . This list may also be used by Show Completions on the Edit menu, and its hot key.

Rewrite Completions doc.

Co-authored-by: Cheryl Sabella &lt;cheryl.sabella@gmail.com&gt;
(cherry picked from commit bce2eb4646021910aa4074d86f44a09b32d0b2b2)

Co-authored-by: Terry Jan Reedy &lt;tjreedy@udel.edu&gt;</pre>
</div>
</content>
</entry>
</feed>
