summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-29784: Fix the reference to shutil.copy in the docs (GH-602) (GH-608)Mariatta2017-03-111-2/+2
* bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-607)Brett Cannon2017-03-101-30/+39
* bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode (GH-605)Brett Cannon2017-03-101-4/+15
* bpo-28739: Document that f-strings cannot be used as docstring (GH-592) (GH-600)Mariatta2017-03-101-0/+11
* Ignore Include/pydtrace_probes.h (#596)Ɓukasz Langa2017-03-101-0/+1
* Add Appveyor (GH-324 backport) (GH-491)Zachary Ware2017-03-102-0/+10
* [3.6] bpo-29773: Add more cases for testing string to float conversion error...Serhiy Storchaka2017-03-091-8/+20
* bpo-29619: Convert st_ino using unsigned integer (#557) (#584)Victor Stinner2017-03-093-8/+11
* [3.6] bpo-28298: make array 'Q', 'L' and 'I' accept big intables as elements ...orenmn2017-03-093-61/+89
* [3.6] bpo-29768: Fixed compile-time check for expat version. (#576)Serhiy Storchaka2017-03-091-1/+1
* Fix the only non-C90 comment to be C90 compatible. (#568)n.d. parker2017-03-081-1/+1
* bpo-29176: Fix name of the _curses.window class (#52) (#532)Mariatta2017-03-081-1/+1
* [3.6] bpo-28231: The zipfile module now accepts path-like objects for extern...Serhiy Storchaka2017-03-084-21/+143
* [3.6] bpo-28230: Document the pathlib support in tarfile and add tests. (#559)Serhiy Storchaka2017-03-082-4/+100
* Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554) (#555)Benjamin Peterson2017-03-082-1/+2
* bpo-26915: Test identity first in index() and count() of collections.abc.Sequ...Xiang Zhang2017-03-083-6/+19
* Fixes bpo-29680: Older gdb does not have gdb.error. (GH-363) (GH-534)Mariatta2017-03-071-1/+1
* PCbuild: Add -q option to svn export (GH-537)INADA Naoki2017-03-071-1/+1
* bpo-28728: clarify possible test failure due to ISP (GH-412) (GH-531)Xiang Zhang2017-03-071-5/+15
* bpo-29557: Remove ambiguous line in binhex docs (GH-90) (GH-475)Mariatta2017-03-061-2/+0
* fix minor bug in pymalloc. (GH-335) (GH-476)Mariatta2017-03-061-1/+1
* [3.6] bpo-29714: Fix a regression that bytes format may fail when containing ...Xiang Zhang2017-03-063-2/+15
* bpo-29719: Remove Date and Release field in whatsnew/3.6 (GH-500)INADA Naoki2017-03-061-2/+0
* Fixes the upload script to purge the CDN correctly and display success output...Steve Dower2017-03-061-0/+2
* bpo-29638: Fix spurious refleaks after typing is imported (#469) (#483)Ivan Levkivskyi2017-03-051-3/+8
* bpo-29615: backport to 3.6 (#478)Petr Motejlek2017-03-053-20/+117
* Merge 3.6.1rc1 releasing branch into 3.6Ned Deily2017-03-053-205/+189
|\
| * Bump to v3.6.1rc1+.Ned Deily2017-03-052-1/+13
| * Update docs and patchlevel for 3.6.1rc1.v3.6.1rc1Ned Deily2017-03-042-7/+7
| * Update pydoc topics for 3.6.0rc1Ned Deily2017-03-041-199/+171
* | distutils docs: Fix a typo (GH-470) (GH-471)Mariatta2017-03-051-1/+1
* | Correct spelling "instanciate" (GH-465) (GH-467)Mariatta2017-03-041-2/+2
|/
* Refresh Python/importlib.h and Python/importlib_external.h (#464)Ned Deily2017-03-042-2/+2
* [3.6] bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS (#463)Ned Deily2017-03-043-0/+9
* bpo-29572: Update macOS installer build to OpenSSL 1.0.2k (#457) (#459)Ned Deily2017-03-042-4/+4
* bpo-29550: Temporarily skip "make touch" in Mac installer build. (#456) (#458)Ned Deily2017-03-041-6/+7
* [3.6] bpo-27593: Get SCM build info from git instead of hg. (#446) (#454)Ned Deily2017-03-049-78/+86
* Fixes git command (#451) (#452)Steve Dower2017-03-041-1/+1
* bpo-27593: Updates Windows build to use information from git (#262) (#450)Steve Dower2017-03-043-18/+18
* bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes (GH-440)Brett Cannon2017-03-031-2/+53
* bpo-29572: Update Windows build to OpenSSL 1.0.2k (GH-442)Zachary Ware2017-03-034-3/+5
* bpo-29709: Improve Boolean Operations documentation (#433) (#437)Mariatta2017-03-031-2/+2
* bpo-29455: Mention coverage.py in trace module documentation (GH-435)Brett Cannon2017-03-031-0/+6
* [3.6] bpo-29623: Make PathLike objects work with ConfigParser.read() (#242) (...Berker Peksag2017-03-034-9/+31
* Add Python version since deprecation in base64 methods. (#33) (#429)Berker Peksag2017-03-033-6/+25
* Restore NEWS file after incorrect git automergeYury Selivanov2017-03-031-785/+3
* getpass: update docstrings (GH-49) (GH-419)Mariatta2017-03-031-1/+0
* bpo-29026: Clarify documentation of time.time (GH-34) (GH-417)Mariatta2017-03-031-7/+35
* bpo-28963: Fix out of bound iteration in asyncio.Future.remove_done_callback/...Yury Selivanov2017-03-033-1/+33
* asyncio: Optimize _get_running_loop() to call getpid() only when there's a loopYury Selivanov2017-03-031-2/+3