summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Update to 3.6.4v3.6.4Ned Deily2017-12-192-5/+5
* Update NEWS for 3.6.4 finalNed Deily2017-12-191-0/+8
* bpo-32284: Fix documentation of BinaryIO and TextIO (GH-4832) (#4833)Miss Islington (bot)2017-12-191-3/+3
* Allows non-critical upload steps to fail (GH-4742) (#4743)Miss Islington (bot)2017-12-191-3/+3
* Bump to 3.6.4rc1v3.6.4rc1Ned Deily2017-12-052-6/+6
* Update NEWS and pydoc topics.Ned Deily2017-12-05112-280/+1147
* Tidy NEWS entry.Ned Deily2017-12-051-10/+2
* Add a missing space in tkinter documentation. (GH-4692) (GH-4722)Miss Islington (bot)2017-12-051-1/+1
* [3.6] bpo-31380: Skip test_httpservers test_undecodable_file on macOS. (GH-47...Miss Islington (bot)2017-12-052-1/+3
* bpo-28791: Update Windows builds to use SQLite 3.21.0. (GH-4246). (GH-4717)Mariatta2017-12-054-3/+4
* [3.6] bpo-31392: Update macOS installer to use OpenSSL 1.0.2m (GH-4715) (#4716)Miss Islington (bot)2017-12-052-4/+4
* [bpo-28556] Minor fixes for typing module (GH-4710) (#4713)Miss Islington (bot)2017-12-053-10/+55
* [3.6] bpo-28791: Update macOS installer to use SQLite 3.21.0. (#4245) (#4711)Ned Deily2017-12-052-3/+4
* bpo-32207: Improve tk event exception tracebacks in IDLE. (GH-4703) (#4705)Miss Islington (bot)2017-12-042-5/+15
* bpo-30928: Update idlelib/NEWS.txt to 2017 Dec 3. (GH-4701) (#4702)Miss Islington (bot)2017-12-041-0/+16
* bpo-27240 Rewrite the email header folding algorithm. (GH-3488) (#4693)Miss Islington (bot)2017-12-046-563/+511
* bpo-31619: Fixed integer overflow in converting huge strings to int. (GH-3884...Miss Islington (bot)2017-12-031-3/+11
* [3.6] bpo-32176: Set CO_NOFREE in the code object constructor (GH-4684)Nick Coghlan2017-12-034-13/+59
* [3.6] bpo-31589 : Build PDF using xelatex for better UTF8 support. (GH-3940) ...Miss Islington (bot)2017-12-021-3/+2
* Don't hide unexpected errors in PyErr_WarnExplicitObject(). (GH-4585) (#4662)Miss Islington (bot)2017-12-011-9/+10
* bpo-32186: Release the GIL during lseek and fstat (GH-4652) (#4661)Miss Islington (bot)2017-12-012-1/+8
* bpo-20891: Fix PyGILState_Ensure() (#4650) (#4655)Victor Stinner2017-11-304-26/+174
* [3.6] make tags: index also Modules/_ctypes/ (#4648) (#4659)Victor Stinner2017-11-303-6/+5
* bpo-32072: Fix issues with binary plists. (GH-4455) (#4654)Miss Islington (bot)2017-11-303-36/+112
* bpo-28416: Break reference cycles in Pickler and Unpickler subclasses (GH-408...Miss Islington (bot)2017-11-303-40/+164
* Skip test_socket.test_sha256() on linux < 4.5 (GH-4643) (#4645)Miss Islington (bot)2017-11-302-0/+6
* [3.6] bpo-30923, bpo-31279: Fix GCC warnings (#4620)Victor Stinner2017-11-292-1/+10
* bpo-32030: Fix test_sys.test_getallocatedblocks() (#4637)Victor Stinner2017-11-291-0/+4
* [3.6] bpo-32107 - Backport bitmask check fix (GH-4576) (#4591)Barry Warsaw2017-11-291-14/+12
* bpo-32139: test_strftime does not anymore modify the locale (GH-4569) (#4635)Miss Islington (bot)2017-11-291-2/+4
* bpo-32164: Delete unused file idlelib/tabbedpages.py (GH-4628) (#4631)Miss Islington (bot)2017-11-292-498/+2
* bpo-30781: Remove unused imports in idlelib.configdialog. (GH-4627) (#4630)Miss Islington (bot)2017-11-291-4/+3
* bpo-32100: Delete unneeded import in idlelib.pathbrowser. (GH-4626) (#4629)Miss Islington (bot)2017-11-291-1/+0
* bpo-32110: codecs.StreamReader.read(n) now returns not more than n (GH-4499) ...Miss Islington (bot)2017-11-293-5/+24
* bpo-32155: Bugfixes found by flake8 F841 warnings (#4619)Victor Stinner2017-11-282-2/+2
* Use raw strings in the re module examples. (GH-4616) (#4617)Miss Islington (bot)2017-11-281-4/+4
* bpo-31440: Changed default module search path for windows (#4613)Miss Islington (bot)2017-11-281-2/+2
* asyncio: Fix BaseSelectorEventLoopTests (GH-4595) (#4599)Miss Islington (bot)2017-11-281-0/+2
* asyncio: Remove unused Future._tb_logger attribute (GH-4596) (#4598)Miss Islington (bot)2017-11-281-8/+1
* pythoninfo: add Py_DEBUG (#4198) (#4580)Victor Stinner2017-11-271-0/+8
* bpo-32051: Fix name shadowing in multiprocessing docs (GH-4469)Miss Islington (bot)2017-11-271-2/+2
* bpo-29879: Update typing documentation. (GH-4573) (GH-4574)Miss Islington (bot)2017-11-262-1/+13
* bpo-32059: setup.py now also searches the sysroot paths (GH-4452) (#4562)Miss Islington (bot)2017-11-252-7/+39
* [Doc] Update opcode for var-positional arguments (GH-4446) (#4457)Miss Islington (bot)2017-11-251-1/+1
* Improve Scheduler Objects documentation. (GH-4556) (GH-4557)Miss Islington (bot)2017-11-251-1/+1
* bpo-30004: Fix the code example of using group in Regex Howto Docs (GH-4443) ...Miss Islington (bot)2017-11-251-3/+3
* bpo-32128: Skip test_nntplib.test_article_head_body() (GH-4552) (#4553)Miss Islington (bot)2017-11-251-0/+1
* Asyncion-Dev docs: Fix the reference to sys.excepthook (GH-4414) (GH-4549)Miss Islington (bot)2017-11-251-2/+2
* Improve the String tutorial docs (GH-4541) (GH-4545)Miss Islington (bot)2017-11-241-7/+7
* [3.6] bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539)Berker Peksag2017-11-243-0/+11