summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-34405: Updated to OpenSSL 1.1.0i for Windows builds. (GH-8775)Steve Dower2018-08-153-4/+5
* bpo-34384: Fix os.readlink() on Windows (GH-8740)Berker Peksag2018-08-154-60/+86
* closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439)Zackery Spytz2018-08-152-1/+2
* bpo-34399: 2048 bits RSA keys and DH params (#8762)Christian Heimes2018-08-145-44/+47
* Make regular expressions in test_tasks.py raw strings. (GH-8759)Benjamin Peterson2018-08-141-2/+2
* smtplib documentation fixes (GH-8708)Ville Skyttä2018-08-131-4/+11
* Fix misindented yaml in logging how to example (GH-8604)Rémy HUBSCHER2018-08-121-3/+3
* Minor code clean-up. Don't alter the input vector. Use variables instead. GH-...Raymond Hettinger2018-08-121-4/+5
* Add more tests and assertions for math.hypot() and math.dist() (GH-8747)Raymond Hettinger2018-08-122-5/+13
* bpo-34213: Allow dataclasses to work with a field named 'object'. (GH-8452)Vadim Pushtaev2018-08-123-1/+58
* Fix the versionadded indentation in exec_module doc (GH-8719)Andrés Delfino2018-08-121-1/+1
* Factor-out common code. Also, optimize common cases by preallocating space on...Raymond Hettinger2018-08-121-41/+56
* Replace straight addition with Kahan summation and move max to the end (GH-8727)Raymond Hettinger2018-08-111-20/+45
* bpo-34151: Improve performance of some list operations (GH-8332)Sergey Fedoseev2018-08-112-15/+38
* bpo-34379: Doc: Move note for json.dump (GH-8730)Evan Allrich2018-08-111-6/+5
* closes bpo-34377: Update Valgrind suppressions. (GH-8729)Paul Price2018-08-112-11/+14
* bpo-26818: Add a test to make sure the bug is fixed (GH-8664)Berker Peksag2018-08-111-0/+22
* bpo-9372: Deprecate several __getitem__ methods (GH-8609)Berker Peksag2018-08-1112-0/+82
* bpo-34333: Fix %-formatting in Path.with_suffix() (GH-8663)Berker Peksag2018-08-113-1/+5
* bpo-34047: IDLE: fix mousewheel scrolling direction on macOS (GH-8678)Tal Einat2018-08-102-6/+18
* closes bpo-34353: Add sockets to stat.filemode fallback python implementation...GPery2018-08-103-0/+12
* Fixed inconsistency in string handling in the Task C implementation (GH-8717)Alex Grönholm2018-08-091-5/+9
* Doc: add missing capture_output arg to subprocess.run() signature (#8374)Andriy Maletsky2018-08-091-2/+2
* Improve grammar of asynchronous iterator glossary entry (GH-8657)Andrés Delfino2018-08-091-3/+3
* bpo-34324: Doc README wrong directory name for venv (GH-8650)Stéphane Wirtel2018-08-091-1/+1
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-0813-28/+266
* Assume the raw environ is always declared. (GH-8707)Benjamin Peterson2018-08-081-6/+0
* Make code examples in Functional Programming HOWTO to be PEP 8 compliant. (GH...Sergey Fedoseev2018-08-071-23/+23
* bpo-34335: Use async/await syntax in documentation examples (GH-8674)Mikhail Terekhov2018-08-072-4/+2
* VSTS: Skip build steps when only docs have changed (GH-8546)Steve Dower2018-08-075-1/+87
* Remove unneeded PyErr_Clear() calls after PyErr_Print(). (GH-8699)Zackery Spytz2018-08-071-3/+0
* bpo-18540: Fix EAI_NONAME in imaplib.IMAP4*() (GH-8634)Berker Peksag2018-08-073-1/+22
* Fix HTML formatting in datamodel.rst (GH-8693)Berker Peksag2018-08-061-3/+3
* bpo-34319: Clarify file handler closure in pathlib.read_text (GH-8645)Xtreak2018-08-061-1/+2
* bpo-34272: Move argument parsing tests from test_capi to test_getargs2. (GH-8...Serhiy Storchaka2018-08-062-181/+182
* bpo-34273: Change 'Fixed point' to 'Fixed-point notation'. (#8673)Terry Jan Reedy2018-08-061-4/+4
* bpo-19891: Ignore error while writing history file (GH-8483)Anthony Sottile2018-08-062-1/+12
* bpo-34336: Don't promote possibility to leave out typing.Optional (#8677)Ville Skyttä2018-08-051-4/+12
* bpo-33839: refactor IDLE's tooltips & calltips, add docstrings and tests (GH-...Tal Einat2018-08-057-144/+416
* Fix reST markup in unittest documentation (GH-8665)Berker Peksag2018-08-031-1/+1
* bpo-34170: Fix pymain_run_file() (GH-8660)Victor Stinner2018-08-031-6/+6
* bpo-34329: Doc'd how to remove suffix of pathlib.Path() (GH-8655)Stefan Otte2018-08-032-3/+9
* bpo-34170: _PyCoreConfig_Read() don't replace coerce_c_locale (GH-8658)Victor Stinner2018-08-033-17/+19
* bpo-34325: Skip zipfile test for large timestamps when filesystem don't suppo...Marcel Plch2018-08-031-1/+5
* bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)Victor Stinner2018-08-0322-93/+107
* Fix docstring of Profiler class (GH-8651)INADA Naoki2018-08-032-4/+4
* Improve the grammar in `range` documentation. (GH-8628)Andrés Delfino2018-08-031-1/+1
* bpo-34275: Make IDLE calltips always visible on Mac. (GH-8639)Terry Jan Reedy2018-08-032-0/+3
* Update list.remove(x) documentation (GH-8636)Lysandros Nikolaou2018-08-031-2/+2
* bpo-34317: Fix a dead url to Windows documentation (GH-8622)HiyashiChuka2018-08-031-1/+1