summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-29084: Exclude C API for OrderedDict from the limited C API. (GH-4900) (#...Miss Islington (bot)2017-12-251-0/+2
* bpo-24960: use pkgutil.get_data in lib2to3 to read pickled grammar files (GH-...Miss Islington (bot)2017-12-221-0/+3
* bpo-26133: Dont unsubscribe signals in UNIX even loop on interpreter shutdown...Miss Islington (bot)2017-12-211-0/+1
* bpo-32323: urllib.parse.urlsplit() must not lowercase() IPv6 scope value (GH-...Miss Islington (bot)2017-12-211-0/+2
* Merge tag 'v3.6.4' into 3.6Ned Deily2017-12-191-0/+8
|\
| * Update NEWS for 3.6.4 finalNed Deily2017-12-191-0/+8
* | bpo-27456: Ensure TCP_NODELAY is set on linux (#4231) (#4898)Yury Selivanov2017-12-161-0/+1
* | [3.6] bpo-30416: Protect the optimizer during constant folding. (#4865)Serhiy Storchaka2017-12-151-0/+3
* | [3.6] bpo-27169: The __debug__ constant is now optimized out at compile time....Serhiy Storchaka2017-12-151-0/+2
* | bpo-32329: Fix sys.flags.hash_randomization (#4875)Victor Stinner2017-12-151-0/+2
* | bpo-32277: Fix exception raised from chmod(..., follow_symlinks=False) (GH-47...Miss Islington (bot)2017-12-141-0/+3
* | bpo-32302: Fix distutils bdist_wininst for CRT v142 (GH-4851) (#4861)Miss Islington (bot)2017-12-141-0/+2
* | bpo-32255: Always quote a single empty field when write into a CSV file. (GH-...Miss Islington (bot)2017-12-122-0/+4
* | bpo-32252: Fix faulthandler_suppress_crash_report() (GH-4794) (#4795)Miss Islington (bot)2017-12-111-0/+2
* | bpo-32199: The getnode() ip getter now uses 'ip link' instead of 'ip link li...Miss Islington (bot)2017-12-071-0/+1
|/
* Update NEWS and pydoc topics.Ned Deily2017-12-05111-265/+1142
* Tidy NEWS entry.Ned Deily2017-12-051-10/+2
* [3.6] bpo-31380: Skip test_httpservers test_undecodable_file on macOS. (GH-47...Miss Islington (bot)2017-12-051-0/+1
* bpo-28791: Update Windows builds to use SQLite 3.21.0. (GH-4246). (GH-4717)Mariatta2017-12-051-0/+1
* [3.6] bpo-31392: Update macOS installer to use OpenSSL 1.0.2m (GH-4715) (#4716)Miss Islington (bot)2017-12-051-0/+1
* [bpo-28556] Minor fixes for typing module (GH-4710) (#4713)Miss Islington (bot)2017-12-051-0/+3
* [3.6] bpo-28791: Update macOS installer to use SQLite 3.21.0. (#4245) (#4711)Ned Deily2017-12-051-0/+1
* bpo-32207: Improve tk event exception tracebacks in IDLE. (GH-4703) (#4705)Miss Islington (bot)2017-12-041-0/+6
* bpo-27240 Rewrite the email header folding algorithm. (GH-3488) (#4693)Miss Islington (bot)2017-12-041-0/+3
* [3.6] bpo-32176: Set CO_NOFREE in the code object constructor (GH-4684)Nick Coghlan2017-12-031-0/+5
* bpo-32186: Release the GIL during lseek and fstat (GH-4652) (#4661)Miss Islington (bot)2017-12-011-0/+3
* bpo-20891: Fix PyGILState_Ensure() (#4650) (#4655)Victor Stinner2017-11-301-0/+3
* bpo-32072: Fix issues with binary plists. (GH-4455) (#4654)Miss Islington (bot)2017-11-301-0/+6
* bpo-28416: Break reference cycles in Pickler and Unpickler subclasses (GH-408...Miss Islington (bot)2017-11-301-0/+3
* Skip test_socket.test_sha256() on linux < 4.5 (GH-4643) (#4645)Miss Islington (bot)2017-11-301-0/+3
* bpo-32164: Delete unused file idlelib/tabbedpages.py (GH-4628) (#4631)Miss Islington (bot)2017-11-291-0/+2
* bpo-32110: codecs.StreamReader.read(n) now returns not more than n (GH-4499) ...Miss Islington (bot)2017-11-291-0/+3
* bpo-29879: Update typing documentation. (GH-4573) (GH-4574)Miss Islington (bot)2017-11-261-1/+1
* bpo-32059: setup.py now also searches the sysroot paths (GH-4452) (#4562)Miss Islington (bot)2017-11-251-0/+2
* [3.6] bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539)Berker Peksag2017-11-241-0/+2
* bpo-12382: Make OpenDatabase() raise better exception messages (GH-4528)Miss Islington (bot)2017-11-241-0/+2
* bpo-31325: Fix usage of namedtuple in RobotFileParser.parse() (GH-4529) (#4533)Miss Islington (bot)2017-11-231-0/+5
* bpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459)Berker Peksag2017-11-231-0/+4
* [3.6] bpo-32100: IDLE: Fix pathbrowser errors; improve tests. (GH-4484) (#4512)Terry Jan Reedy2017-11-231-0/+2
* bpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to ...Miss Islington (bot)2017-11-211-0/+1
* bpo-31701: faulthandler: ignore MSC and COM Windows exception (#3929) (#4416)Victor Stinner2017-11-161-0/+1
* bpo-32034: Make IncompleteReadError & LimitOverrunError pickleable GH-4409 (#...Miss Islington (bot)2017-11-161-0/+1
* bpo-32011: Revert "Issue GH-15480: Remove the deprecated and unused TYPE_INT6...Miss Islington (bot)2017-11-151-0/+2
* [3.6] bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Pri...Serhiy Storchaka2017-11-151-0/+9
* [3.6] bpo-32015: Asyncio looping during simultaneously socket read/write anâ€...Andrew Svetlov2017-11-141-0/+2
* [3.6] bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160). (#4...xdegaye2017-11-121-0/+1
* [3.6] bpo-31927: Fix bugs in socketmodule.c on NetBSD and other issues. (GH-4...Serhiy Storchaka2017-11-091-0/+3
* [3.6] bpo-31934: Abort when building out of a not clean source tree (GH-4255)...xdegaye2017-11-081-0/+1
* bpo-31620: have asyncio/queues not leak memory when you've exceptions during ...Miss Islington (bot)2017-11-071-0/+2
* [3.6] bpo-31970: Reduce performance overhead of asyncio debug mode. (GH-4314)...Antoine Pitrou2017-11-071-0/+1