aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Work around Path.glob() issue when creating nuget package (GH-16855)Steve Dower2019-10-191-1/+1
* 2.2.17+Benjamin Peterson2019-10-191-1/+1
* Empty blurb file for 2.7.17.v2.7.17Benjamin Peterson2019-10-191-0/+8
* Bump version to 2.7.17 final.Benjamin Peterson2019-10-191-3/+3
* Update doc switcher list for 3.8.0 (GH-16809)Miss Islington (bot)2019-10-191-1/+1
* Update build docs for macOS (GH-16844)Ned Deily2019-10-193-90/+85
* bpo-32758: Warn that ast.parse() and ast.literal_eval() can segfault the inte...Ashley Whetter2019-10-181-0/+10
* bpo-32758: Warn that compile() can crash when compiling to an AST object (GH-...Ashley Whetter2019-10-181-0/+6
* Doc: 3.8 is now stable. (GH-16790) (GH-16794)Miss Islington (bot)2019-10-141-1/+1
* [2.7] Update macOS installer display files for 2.7.17 (GH-16768)Ned Deily2019-10-144-163/+83
* [2.7] bpo-31036: Allow sphinx and blurb to be found automatically (GH-16638)Benjamin Peterson2019-10-072-7/+14
* bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024)Miss Islington (bot)2019-10-071-1/+0
* bpo-31589 : Build PDF using xelatex for better UTF8 support. (GH-3940)Miss Islington (bot)2019-10-071-3/+2
* [2.7] Stop using deprecated logging API in Sphinx suspicious checker (GH-16635)Benjamin Peterson2019-10-073-7/+10
* Update macOS installer displays for 2.7.17rc1 (#16634)v2.7.17rc1Ned Deily2019-10-072-3/+16
* Bump version to 2.7.17rc1.Benjamin Peterson2019-10-072-5/+5
* Roll up news for 2.7.17rc1.Benjamin Peterson2019-10-0780-146/+785
* [2.7] bpo-38216, bpo-36274: Allow subclasses to separately override validatio...Jason R. Coombs2019-10-073-11/+40
* [2.7] bpo-37664: Update ensurepip bundled wheels, again (GH-16633)Benjamin Peterson2019-10-074-2/+3
* bpo-38106: Fix race in pthread PyThread_release_lock() (GH-16047)Kirill Smelkov2019-10-032-6/+14
* [2.7] bpo-38338, test.pythoninfo: add more ssl infos (GH-16543)Victor Stinner2019-10-021-0/+60
* [2.7] bpo-38243: Escape the server title of DocXMLRPCServer (GH-16447)Dong-hee Na2019-10-013-1/+35
* [2.7] bpo-38301: In Solaris family, we must be sure to use '-D_REENTRANT' (GH...Jesús Cea2019-09-283-0/+8
* bpo-38174 follow up: Remove loadlibrary.c from VS9.0. (GH-16411)Benjamin Peterson2019-09-252-8/+0
* [2.7] closes bpo-38174: Update vendored expat library to 2.2.8. (GH-16408)Benjamin Peterson2019-09-2524-4844/+3972
* closes bpo-38253: Fix typo of Py_SET_ERANGE_IF_OVERFLOW in pyport.h. (GH-16230)Miss Islington (bot)2019-09-231-1/+1
* bpo-37904: Edition on python tutorial - section 4 (GH-16169) (GH-16236)Miss Islington (bot)2019-09-181-2/+2
* [2.7] bpo-38175: Fix a memory leak in comparison of sqlite3.Row objects. (GH-...Serhiy Storchaka2019-09-173-12/+20
* bpo-33936: Don't call obsolete init methods with OpenSSL 1.1.0+ (GH-16140)Miss Islington (bot)2019-09-162-1/+3
* bpo-38117: Updates bundled OpenSSL to 1.0.2t (GH-16178)Steve Dower2019-09-164-3/+8
* [2.7] bpo-38168: Fix a possbile refleak in setint() of mmapmodule.c (GH-16136...Xiang Zhang2019-09-161-1/+2
* bpo-38117: Updated OpenSSL to 1.0.2t in macOS installer for 2.7.x. (GH-16171)Ned Deily2019-09-162-3/+4
* [2.7] bpo-34155: Dont parse domains containing @ (GH-13079) (GH-16006)Roberto C. Sánchez2019-09-143-1/+25
* [2.7] bpo-35264: Modules/_ssl.c: fix build with OpenSSL 1.1.0 (GH-10570)Alexandru Ardelean2019-09-112-2/+3
* closes bpo-36712: Fix duplicate method in Lib/email/test/test_email_renamed.p...Zackery Spytz2019-09-111-5/+0
* closes bpo-36711: Remove duplicate method in Lib/email/feedparser.py. (GH-14801)Zackery Spytz2019-09-111-20/+0
* bpo-37445: Include FORMAT_MESSAGE_IGNORE_INSERTS in FormatMessageW() calls (G...Zackery Spytz2019-09-113-2/+7
* [2.7] bpo-36502: Update link to UAX GH-44, the Unicode doc on the UCD. (GH-15...Benjamin Peterson2019-09-091-1/+1
* [2.7] bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625)...Serhiy Storchaka2019-09-094-0/+56
* closes bpo-37965: Fix compiler warning of distutils CCompiler.test_function. ...Miss Islington (bot)2019-08-282-1/+3
* bpo-34521: Fix FD transfer in multiprocessing on FreeBSD (GH-15422)Victor Stinner2019-08-232-1/+3
* test_multiprocessing removes temporary files (GH-15421)Victor Stinner2019-08-231-0/+2
* bpo-37823: Fix open() link in telnetlib doc (GH-15281)Miss Islington (bot)2019-08-211-1/+1
* bpo-35518: Skip test that relies on a deceased network service. (GH-15349)Miss Islington (bot)2019-08-201-0/+1
* [2.7] bpo-37730: Fix usage of NotImplemented instead of NotImplementedError i...David H2019-08-052-6/+6
* closes bpo-37675: Use pkgutil.iter_modules to find fixers in a package rather...Miss Islington (bot)2019-07-242-4/+5
* bpo-34369: make kqueue.control() docs better reflect that timeout is position...Miss Islington (bot)2019-07-111-3/+4
* Document default parameter of .seek() in the signature. (GH-14691)Miss Islington (bot)2019-07-101-2/+2
* bpo-37513: Change ValueError to TypeError in an example in ctypes doc (GH-14615)Miss Islington (bot)2019-07-071-1/+1
* bpo-37487: Fix PyList_GetItem index description. (GH-14623) (GH-14626)Miss Islington (bot)2019-07-062-3/+4