Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fix a minor typo. (#1032) | dd9a0a14c89d57e43898d4b866b8c161e4ff8506 | Barry Warsaw | 2017-04-07 18:18:14 |
bpo-29958: Minor improvements to zipfile and tarfile CLI. (#944) | 150cd1916a59e750ce88c65325de9ef0c42c6cb5 | Serhiy Storchaka | 2017-04-07 15:56:12 |
Remove Invalid comment in test_urllib2.py (#1020) | fd0cd07a5a3c964c084f4efc5bbcb89dd2193ee6 | Senthil Kumaran | 2017-04-07 07:19:08 |
bpo-28837: Fix lib2to3 handling of map/zip/filter calls when followed with a 'trailer', e.g. zip()[x] (#24) | 93b4b47e3a720171d67f3b608de406aef462835c | Stuart Berg | 2017-04-06 05:19:40 |
Correct typo in configparser.rst (#1012) | 01fa9ae5460b00bf1ced500c797176ebd3fb060d | Alex Jordan | 2017-04-06 02:21:30 |
bpo-29962: add math.remainder (#950) | a0ce375e10b50f7606cb86b072fed7d8cd574fe7 | Mark Dickinson | 2017-04-05 17:34:27 |
Miscellaneous minor fixes of Misc/NEWS formatting. (#1002) | a0157b5f11e621f2196af4e918b9f07688a6cd1c | Serhiy Storchaka | 2017-04-05 09:07:22 |
Update Argument Clinic generated code for bpo-29878. (#1001) | bae6881b4215b2613ad08ef0dc7bed7743c2b8cc | Serhiy Storchaka | 2017-04-05 09:00:42 |
bpo-29762: More use "raise from None". (#569) | 5affd23e6f42125998724787025080a24839266e | Serhiy Storchaka | 2017-04-05 06:37:24 |
bpo-29549: Fixes docstring for str.index (#256) | 43ba8861e0ad044efafa46a7cc04e12ac5df640e | Lisa Roach | 2017-04-05 05:36:22 |
correct parse_qs and parse_qsl test case descriptions. (#968) | 257b980b316a5206ecf6c23b958e2b7c4df4f3de | Senthil Kumaran | 2017-04-05 04:19:43 |
bpo-29649: Improve struct.pack_into() boundary error messages (#424) | f78b119364b521307237a1484ba5f43f42300898 | Andrew Nester | 2017-04-04 10:46:25 |
bpo-29972: Skip tests known to fail on AIX (#979) | 5de85a17029356084b96db63e04d9eb150efd9c0 | Victor Stinner | 2017-04-04 08:35:15 |
bpo-29725: DOC: add text for arraysize in sqlite3.Cursor (#947) | 02e12138000da834f23719521a011fa93763384d | csabella | 2017-04-04 05:16:14 |
Remove obsolete declaration in tokenizer.h (#962) | cf1958af4c762c970d1f2fa0e92577f577774c22 | Jim Fasarakis-Hilliard | 2017-04-03 16:18:32 |
Correct typo (#976) | 8614b59910c0b3529891be164aee581eb729f1b3 | Angus Hollands | 2017-04-03 16:16:14 |
test_locale now ignores the DeprecationWarning (#977) | 9acc6a03f1fd684fce2755b3b22f7448ad4c1dd6 | Victor Stinner | 2017-04-03 16:09:55 |
Fix misleading documentation for math.exp. (#951) | 734125938d4653459593ebd28a0aec086efb1f27 | Mark Dickinson | 2017-04-02 15:30:04 |
bpo-19225: Add a table of warning names and missed exception names in C API doc (#881) | e8c763128fb459c5c98194e4312f31493c0f12df | cocoatomo | 2017-04-02 10:45:40 |
bpo-29654 : Support If-Modified-Since HTTP header (browser cache) (#298) | 351adda54bed3afbbf6db7725699679e68722d7d | Pierre Quentel | 2017-04-02 10:26:12 |
File | Lines added | Lines deleted |
---|---|---|
Doc/library/asyncio-protocol.rst | 1 | 1 |
File Doc/library/asyncio-protocol.rst changed (mode: 100644) (index 482ffbbed3..3f55506c66) | |||
... | ... | The following callbacks are called on :class:`Protocol` instances: | |
384 | 384 | ||
385 | 385 | .. method:: Protocol.eof_received() | .. method:: Protocol.eof_received() |
386 | 386 | ||
387 | Calls when the other end signals it won't send any more data | ||
387 | Called when the other end signals it won't send any more data | ||
388 | 388 | (for example by calling :meth:`write_eof`, if the other end also uses | (for example by calling :meth:`write_eof`, if the other end also uses |
389 | 389 | asyncio). | asyncio). |
390 | 390 |