summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-19225: Remove duplicated description for standard warning categories (GH-...cocoatomo2017-04-201-12/+9
* [3.5] bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). ...Serhiy Storchaka2017-04-195-26/+41
* [3.5] bpo-30070: Fixed leaks and crashes in errors handling in the parser mod...Serhiy Storchaka2017-04-193-43/+150
* [3.5] bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() ...Serhiy Storchaka2017-04-197-31/+95
* [3.5] bpo-29943: Do not replace the function PySlice_GetIndicesEx() with a ma...Serhiy Storchaka2017-04-162-2/+4
* bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese...Xiang Zhang2017-04-153-11/+23
* [3.5] bpo-30059: Include Py_Ellipsis in C API documentation (GH-1018) (GH-1148)Michael Seifert2017-04-151-0/+11
* [3.5] bpo-29738: Fix memory leak in _get_crl_dp (GH-526) (GH-1143)Mariatta2017-04-151-7/+1
* Fix misplaced positional argument in OS X support library (#1135)Jack McCracken2017-04-141-1/+1
* Relax test timing (bpo-29861) to avoid sporadic failures (#1120) (#1133)Antoine Pitrou2017-04-141-0/+1
* [3.5] bpo-29694: race condition in pathlib mkdir with flags parents=True (GH-...Mariatta2017-04-143-2/+36
* [3.5] Fix a typo in Doc/library/functions.rst (GH-1117) (GH-1124)Mariatta2017-04-131-1/+1
* bpo-30021: Add examples for re.escape(). (#1048) (#1116)Serhiy Storchaka2017-04-132-3/+16
* bpo-29791: Clarify that flush is keyword-only argument (GH-1093)Berker Peksag2017-04-131-1/+1
* [3.5] bpo-29692: contextlib.contextmanager may incorrectly unchain RuntimeErr...Mariatta2017-04-133-6/+32
* [3.5] Clarify exception handler scope in contextlib (GH-1104)Mariatta2017-04-131-1/+2
* [3.5] Remove superfluous comment in urllib.error. (GH-1076) (GH-1102)Mariatta2017-04-131-4/+0
* bpo-26985: Add missing info of code object in inspect documentation (GH-1090)...Xiang Zhang2017-04-133-191/+220
* Remove OSError related comment in urllib.request. (#1071)Senthil Kumaran2017-04-101-1/+0
* [3.5] Correct typo in configparser.rst (GH-1012) (GH-1027)Mariatta2017-04-091-2/+2
* Remove invalid comment in urllib.request.(#1056)Senthil Kumaran2017-04-091-6/+2
* bpo-29506: Clarify deep copy note in copy moduleNick Coghlan2017-04-092-2/+3
* bpo-29798: Handle git worktree in patchcheckNick Coghlan2017-04-091-1/+1
* bpo-29998: Pickling and copying ImportError now preserves name and path (#101...Serhiy Storchaka2017-04-083-0/+71
* Expand the PySlice_GetIndicesEx macro. (#1023) (#1045)Serhiy Storchaka2017-04-0811-45/+47
* Closes bpo-29939: suppress compiler warnings in _ctypes_test (#1039)Vinay Sajip2017-04-071-3/+3
* Fix a minor typo. (#1032) (#1036)Barry Warsaw2017-04-071-1/+1
* Remove Invalid comment in test_urllib2.py (#1021)Senthil Kumaran2017-04-071-1/+0
* [3.5] bpo-19225: Lack of c api exceptions doc (#965)cocoatomo2017-04-062-56/+146
* correct parse_qs and parse_qsl test case descriptions. (#968) (#998)Senthil Kumaran2017-04-052-19/+23
* Miscellaneous minor fixes of Misc/NEWS formatting. (#1002) (#1006)Serhiy Storchaka2017-04-051-9/+9
* bpo-29725: DOC: add text for arraysize in sqlite3.Cursor (#947) (#986)Senthil Kumaran2017-04-041-0/+5
* Minor spell fix and formatting fixes in urllib tests. (#959) (#960)Senthil Kumaran2017-04-022-2/+6
* bpo-29941: Assert fixes (#886) (#956)T. Wouters2017-04-022-1/+7
* bpo-26947: DOC: clarify wording on hashable in glossary (#948) (#958)Senthil Kumaran2017-04-021-3/+3
* bpo-29952: Use usual terminology of dict (GH-923)INADA Naoki2017-03-311-1/+1
* Remove catching OSError in ftphandler test. Only URLError is raised in urllib...Senthil Kumaran2017-03-311-3/+1
* bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#912)T. Wouters2017-03-303-24/+39
* bpo-29935: Fixed error messages in the index() method of tuple, list and dequ...Serhiy Storchaka2017-03-306-11/+31
* bpo-27863: Fixed multiple crashes in ElementTree. (#765) (#904)Serhiy Storchaka2017-03-303-48/+167
* Remove an unrequired TODO in test_urllib2. (#897) (#901)Senthil Kumaran2017-03-301-1/+0
* bpo-29917: DOC: Remove link from PyMethodDef (#890) (#895)Senthil Kumaran2017-03-301-2/+2
* bpo-29677: DOC: clarify documentation for `round` (GH-877) (GH-893)Mariatta2017-03-301-3/+6
* bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-884)Xiang Zhang2017-03-293-25/+117
* bpo-16011: clarify that 'in' always returns a boolean value (GH-152) (GH-875)Mariatta2017-03-281-9/+10
* bpo-29643: Fix check for --enable-optimizations (GH-871)INADA Naoki2017-03-283-2/+7
* bpo-29677: DOC: clarify documentation for `round` (GH-357) (GH-863)Mariatta2017-03-281-1/+2
* Drop the standard gcc test build on Travis (GH-853) (GH-860)Brett Cannon2017-03-271-4/+4
* bpo-27425: Add .gitattributes, fix Windows tests (#844)Victor Stinner2017-03-271-0/+8
* Minor test cleanup (GH-837) (GH-839)Zachary Ware2017-03-272-7/+0