summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* closes bpo-34646: Remove PyAPI_* macros from declarations.benjamin-pyapiBenjamin Peterson2018-09-1212-30/+30
* bpo-33437: add __new__ vs __init__ example (GH-9145)Ethan Furman2018-09-122-0/+32
* closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206)Benjamin Peterson2018-09-125-81/+0
* Simplified implementation of _sre.ascii_iscased(). (GH-9097)Sergey Fedoseev2018-09-121-6/+1
* closes bpo-25041: Document AF_PACKET socket address format. (GH-4092)Cheryl Sabella2018-09-113-13/+39
* Delete old expat comment. (GH-9197)Benjamin Peterson2018-09-111-8/+0
* bpo-33649: Cleanup asyncio/streams and asyncio/synchronization docs (GH-9192)Yury Selivanov2018-09-113-286/+263
* bpo-34605: Replace "pliant children" with "helpers" (GH-9195)Victor Stinner2018-09-111-1/+1
* Remove configure check LOG1P_DROPS_ZERO_SIGN. (GH-9193)Benjamin Peterson2018-09-114-86/+2
* bpo-1621: Avoid signed integer overflow in set_table_resize(). (GH-9059)Sergey Fedoseev2018-09-112-8/+5
* closes bpo-31903: Release the GIL when calling into SystemConfiguration (GH-4...Max Bélanger2018-09-112-0/+8
* bpo-34636: Use fast path for more chars in SRE category macros. (GH-9170)Sergey Fedoseev2018-09-112-3/+5
* Make sure the line comes from the same node as the col offset. (GH-9189)Benjamin Peterson2018-09-111-3/+3
* Revert "bpo-34595: Add %T format to PyUnicode_FromFormatV() (GH-9080)" (GH-9187)Victor Stinner2018-09-124-66/+53
* Initialize a variable to make the compiler happy. (GH-9153)Benjamin Peterson2018-09-111-1/+1
* bpo-20180: convert most of itertoolsmodule.c to use Argument Clinic (GH-9164)Tal Einat2018-09-112-219/+694
* closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point ...guoci2018-09-113-22/+28
* bpo-34365: Update date object documentation (GH-8814)Danish Prakash2018-09-111-4/+3
* closes bpo-31608: Fix a crash in methods of a subclass of _collections.deque ...Oren Milman2018-09-113-4/+30
* bpo-34613: document the correct value of limit argument of asyncio.StreamRead...Bram2018-09-111-1/+3
* Update VSTS to Azure DevOps and simplify dependencies (GH-9168)Steve Dower2018-09-119-123/+37
* bpo-28617 Fixed docs inaccuracies about the types that support membership tes...wim glenn2018-09-112-2/+4
* bpo-29386: Pass -1 to epoll_wait() when timeout is < -1 (GH-9040)Berker Peksag2018-09-111-8/+15
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-1118-110/+148
* bpo-33649: First asyncio docs improvement pass (GH-9142)Yury Selivanov2018-09-1117-1737/+2303
* closes bpo-29832: Remove "getsockaddrarg" from error messages. (GH-3163)Oren Milman2018-09-112-60/+121
* closes bpo-32490: Fix filename duplication in subprocess exception message. (...Zackery Spytz2018-09-113-3/+5
* bpo-34405: Update to OpenSSL 1.1.0i for macOS installer builds (GH-9166)Ned Deily2018-09-112-3/+4
* closes bpo-33883: Mention type checkers in the FAQ. (GH-7760)Andrés Delfino2018-09-101-0/+5
* bpo-33032: Mention the implicit cache in struct.Struct() docs (GH-7700)Zackery Spytz2018-09-101-0/+6
* bpo-34625: Update vendorized expat version to 2.2.6. (GH-9150)Benjamin Peterson2018-09-105-27/+70
* Fix missing line from example shell session (GH-9143)Raymond Hettinger2018-09-101-0/+1
* bpo-33487: improve BZ2File Deprecation and documentation. (GH-6785)Matthias Bussonnier2018-09-103-6/+17
* bpo-33460: remove ellipsis that look like continuation prompts (GH-7851)Lew Kurtz2018-09-102-4/+11
* Use bytes.hex instead of binascii.hexlify in pbkdf2_hmac example (GH-8420)Ville Skyttä2018-09-101-3/+3
* Lib/test/support: fix typo in docstring (GH-8506)Daniel Hahler2018-09-101-2/+2
* Remove obsolete comment about latin-1 in `normalize_encoding` (GH-8739)Anthony Sottile2018-09-101-2/+1
* bpo-32270: Don't close stdin/out/err in pass_fds (GH-6242)Gregory P. Smith2018-09-103-10/+46
* bpo-8110: Refactor platform detection in subprocess (GH-9053)Zachary Ware2018-09-102-55/+58
* switch descriptor howto to return value annotation (GH-7796)NotAFile2018-09-101-3/+3
* bpo-20180: itertools.groupby Argument Clinic conversion (GH-4170)Tal Einat2018-09-102-23/+105
* bpo-33217: Raise TypeError for non-Enum lookups in Enums (GH-6651)Rahul Jha2018-09-104-5/+62
* bpo-33604: Remove deprecated HMAC default value marked for removal in 3.8 (GH...Matthias Bussonnier2018-09-104-33/+13
* closes bpo-34525: Fix smtplib's authobject() documentation (GH-8965)Sebastian Rittau2018-09-102-3/+3
* bpo-26502: Implement FrameSummary.__len__() (GH-8632)Berker Peksag2018-09-103-0/+10
* Fix misleading mentions of tp_size in comments (GH-9093)Peter Eisentraut2018-09-1015-21/+21
* bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077)Benjamin Peterson2018-09-104-26/+96
* bpo-30977: rework code changes according to post-merge code review (GH-9106)Tal Einat2018-09-103-68/+146
* Test dict values iterator pickling with pickle.HIGHEST_PROTOCOL. (GH-9052)Sergey Fedoseev2018-09-101-1/+1
* Revert "Fix misindented yaml in logging how to example (GH-8604)" (GH-9081)Rémy HUBSCHER2018-09-101-3/+3