summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Miss Islington (bot)2019-05-075-7/+34
* [3.7] bpo-11001: updated cookie docs (GH-13086) (GH-13161)Miss Islington (bot)2019-05-071-7/+9
* bpo-28795: Signal documentation: Fix misleading statement. (GH-13121)Miss Islington (bot)2019-05-071-1/+2
* bpo-30458: Disallow control chars in http URLs. (GH-12755) (GH-13154)Miro HronĨok2019-05-074-1/+75
* bpo-36783: Added C API Documentation for Time_FromTimeAndFold and PyDateTime_...Miss Islington (bot)2019-05-072-0/+18
* bpo-31855: unittest.mock.mock_open() results now respects the argument of rea...Miss Islington (bot)2019-05-073-26/+22
* bpo-35925: Skip SSL tests that fail due to weak external certs. (GH-13124)Miss Islington (bot)2019-05-073-12/+51
* [3.7] bpo-36766: Typos in docs and code comments (GH-13116). (GH-13136)penguindustin2019-05-0621-21/+21
* [3.7] Clarify the download unit in the download section (GH-13122) (GH-13130)Miss Islington (bot)2019-05-061-2/+1
* bpo-36275: enhance documentation for venv.create() (GH-13114)Miss Islington (bot)2019-05-061-1/+6
* bpo-30668: add missing word in license.rst (GH-13115)Miss Islington (bot)2019-05-061-1/+1
* simplify StartupImportTests (GH-13096)Miss Islington (bot)2019-05-051-7/+7
* bpo-36189: Fixing typo in tutorial introduction (GH-13093)Miss Islington (bot)2019-05-051-1/+1
* bpo-36166: Change to rst datamodel file. (GH-13089) (#13094)Miss Islington (bot)2019-05-051-2/+2
* bpo-36613: call remove_done_callback if exception (GH-12800)Miss Islington (bot)2019-05-032-1/+3
* bpo:34848 : Correct an incorrect docstring for range().index method (GH-9877)Miss Islington (bot)2019-05-031-1/+1
* [3.7] bpo-34162: Fix idlelib/NEWS.text for 3.7.4 (#13067)Terry Jan Reedy2019-05-021-4/+9
* [3.7] bpo-14546: Fix the argument handling in Tools/scripts/lll.py (GH-13026)...Miss Islington (bot)2019-05-023-4/+43
* bpo-35726: Add test for QueueHandler with multiple handlers (GH-11659) (GH-13...Miss Islington (bot)2019-05-021-0/+13
* [3.7] bpo-35726: Prevented QueueHandler formatting from affecting other handl...Xtreak2019-05-022-0/+4
* Change bisect to bisect_cmd in docstring (GH-13040)Miss Islington (bot)2019-05-021-3/+3
* bpo-27682: Handle client connection terminations in wsgiref (GH-9713)Miss Islington (bot)2019-05-013-0/+24
* bpo-36734: Fix compilation of faulthandler.c on HP-UX (GH-12970)Miss Islington (bot)2019-04-302-1/+4
* bpo-36742: Fixes handling of pre-normalization characters in urlsplit() (GH-1...Miss Islington (bot)2019-04-303-4/+14
* closes bpo-35329: Change 'Package' to 'package' in accordance with PEP8. (GH-...Miss Islington (bot)2019-04-301-1/+1
* bpo-34602: Avoid failures setting macOS stack resource limit (GH-13011)Miss Islington (bot)2019-04-293-12/+3
* bpo-35952: Sync test.pythoninfo from master (GH-13009)Victor Stinner2019-04-291-15/+38
* bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993)Miss Islington (bot)2019-04-281-1/+3
* bpo-2091: Fix typo in exception message (GH-12987)Miss Islington (bot)2019-04-271-1/+1
* Syntax highlight IDLE html doc code example. (GH-12981)Miss Islington (bot)2019-04-272-29/+25
* [3.7] bpo-36679: Rename duplicate test_class_getitem function (GH-12892) (GH-...Ivan Levkivskyi2019-04-271-1/+1
* bpo-31525: Increase minimum sqlite version number check (GH-12923)Miss Islington (bot)2019-04-261-3/+3
* [3.7] bpo-36719: sync regrtest with master branch (GH-12967)Victor Stinner2019-04-2613-383/+667
* bpo-28552: Fix distutils.sysconfig for empty sys.executable (GH-12875) (GH-12...Miss Islington (bot)2019-04-253-2/+11
* bpo-30840: Document relative imports (GH-12831) (GH-12938)Miss Islington (bot)2019-04-243-1/+43
* bpo-36454: Fix test_time.test_monotonic() (GH-12929)Miss Islington (bot)2019-04-232-2/+6
* replace 'sequencial argument' by 'positional' in doc (GH-12925)Miss Islington (bot)2019-04-231-1/+1
* bpo-18372: Add missing PyObject_GC_Track() calls in the pickle module (GH-8505)Miss Islington (bot)2019-04-232-0/+5
* [3.7] bpo-9566: Fix compiler warnings on Windows (GH-12920)Victor Stinner2019-04-234-27/+69
* Fixes platform.win32_ver on non-Windows platforms (GH-12912)Miss Islington (bot)2019-04-221-12/+12
* bpo-36672: Fix a compiler warning in winreg.SetValue() (GH-12882)Miss Islington (bot)2019-04-221-1/+1
* bpo-9194: Fix the bounds checking in winreg.c's fixupMultiSZ() (GH-12687)Miss Islington (bot)2019-04-221-1/+1
* bpo-36690: Fix typo in Tools/demo/rpython.py (GH-12903)Miss Islington (bot)2019-04-221-1/+1
* bpo-36523: Add docstring to io.IOBase.writelines (GH-12683)Marcin Niemira2019-04-224-3/+18
* Doc: add the missing ".tp_flags" in type definition (GH-12902)Miss Islington (bot)2019-04-221-0/+1
* bpo-23078: Add support for {class,static}method to mock.create_autospec() (GH...Berker Peksag2019-04-225-2/+81
* bpo-36645: Fix ambiguous formatting in re.sub() documentation (GH-12879)Miss Islington (bot)2019-04-211-0/+1
* Fix typo (GH-12878)Miss Islington (bot)2019-04-201-1/+1
* bpo-36650: Fix handling of empty keyword args in C version of lru_cache. (GH-...Miss Islington (bot)2019-04-203-4/+21
* bpo-36651: Fixed Asyncio Event Loop documentation inconsistency (GH-12866)Miss Islington (bot)2019-04-181-3/+3