summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | [3.6] bpo-30727: Fix a race condition in test_threading. (GH-2334) (#2351)Serhiy Storchaka2017-06-231-5/+14
| | | | | | (cherry picked from commit 32cb968)
* | fix some reference to Unicode 8 that should be to Unicode 9 (#2346)Benjamin Peterson2017-06-232-3/+3
| |
* | [3.6] bpo-30709: Improve code example in Descriptor HowTo doc (GH-2339) ↵Mariatta2017-06-231-3/+3
| | | | | | | | | | (GH-2342) (cherry picked from commit b066edfb1b268e90ea11f45dd1827f46d7ceec88)
* | [3.6] bpo-30619: Clarify typing.Union documentation (GH-2326) (GH-2337)Mariatta2017-06-231-1/+1
| | | | | | | | When a class and its subclass are present, the latter is skipped. (cherry picked from commit 6580c19bbbe7bc9bc0884699afd69184f523b32e)
* | Add "Misc/NEWS.d" directory tree for "blurb". GH-2329larryhastings2017-06-2311-0/+11
| | | | | | | | | | | | | | | | | | | | CPython workflow is changing! We're going to start using "blurb" to manage Misc/NEWS entries: https://github.com/python/core-workflow (This will be a big win for release managers, honest.) This checkin simply populates the "Misc/NEWS.d" subdirectory tree so that people can start putting their news entries in there. No other changes (yet).
* | [3.6] Fix typo in idlelib.config_key.py (GH-2322) (#2323)terryjreedy2017-06-221-1/+1
| | | | | | (cherry picked from commit a0e911b)
* | [3.6] Fix trivial typo in idlelib/config.py (GH-2309) (#2321)terryjreedy2017-06-221-1/+1
| | | | | | | | Comceptually -> Conceptually (cherry picked from commit f3e8209)
* | bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) (#2313)Victor Stinner2017-06-219-158/+887
| | | | | | | | New file: Modules/expat/siphash.h. (cherry picked from commit 5ff7132313eb651107b179d20218dfe5d4e47f13)
* | [3.6] bpo-29755: Fixed the lgettext() family of functions in the gettext ↵Serhiy Storchaka2017-06-204-107/+229
| | | | | | | | | | | | | | | | module. (GH-2266) (#2297) They now always return bytes. Updated the gettext documentation.. (cherry picked from commit 26cb4657bcc9a7adffa95798ececb588dddfeadb)
* | bpo-30500: Fix the NEWS entry (#2296)Victor Stinner2017-06-201-1/+1
| | | | | | splithost() expects an URL starting with "//" not with "http://".
* | bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2289)Victor Stinner2017-06-204-13/+46
| | | | | | | | | | | | | | | | | | The current regex based splitting produces a wrong result. For example:: http://abc#@def Web browsers parse that URL as ``http://abc/#@def``, that is, the host is ``abc``, the path is ``/``, and the fragment is ``#@def``. (cherry picked from commit 90e01e50ef8a9e6c91f30d965563c378a4ad26de)
* | [3.6] bpo-30420: List cwd parameter in subprocess convenience APIs (GH-1685) ↵Mariatta2017-06-201-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | (GH-2253) Partially clarify the subprocess convenience API documentation by explicitly listing the `cwd` parameter in their abbreviated signatures. While this has been merged as an improvement, it doesn't fully resolve the issue, as the `cwd` should also be covered in the "Frequently Used Arguments" section, and the fact these APIs pass unlisted keyword arguments down to the lower level APIs is currently still unclear. (cherry picked from commit 368cf1d20630498ca7939069a05d744fabb570aa)
* | bpo-30687: Fixes build scripts to find msbuild.exe and stop relying on ↵Steve Dower2017-06-1910-51/+102
| | | | | | | | | | | | vcvarsall.bat (#2252) (#2280) * Fixes build scripts to find msbuild.exe and stop relying on vcvarsall.bat Also fixes bdist_wininst.vcxproj to use correct version in generated name.
* | bpo-29887: test_normalization handles PermissionError (#1196) (#2275)Victor Stinner2017-06-191-0/+3
| | | | | | | | | | Skip test_normalization.test_main() if download raises a permission error. (cherry picked from commit d13d54748d3a7db023d9db37223ea7d40bb8f8e3)
* | [3.6] bpo-29887: Test normalization now fails if download fails (GH-905) (#2271)Mariatta2017-06-191-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | * test_normalization fails if download fails bpo-29887. The test is still skipped if "-u urlfetch" option is not passed to regrtest (python3 -m test -u urlfetch test_normalization). * Fix ResourceWarning in test_normalization bpo-29887: Fix ResourceWarning in test_normalization if tests are interrupted by CTRL+c. (cherry picked from commit 722a3af092b94983aa26f5e591fb1b45e2c2a0ff)
* | Bump version for post 3.6.2rc1Ned Deily2017-06-182-2/+14
|/
* Version bump to 3.6.2rc1v3.6.2rc1Ned Deily2017-06-173-7/+7
|
* Update pydoc topics for v3.6.2rc1Ned Deily2017-06-171-110/+122
|
* Remove check for git binary in Mac installer buildNed Deily2017-06-171-5/+4
|
* Add option to pass vcs info into Mac installer buildNed Deily2017-06-171-2/+19
|
* bpo-30038: add Misc/NEWS entry.Ned Deily2017-06-171-0/+3
|
* bpo-23894: add Misc/NEWS entry. (#2255)Ned Deily2017-06-171-0/+2
|
* bpo-30176: Add missing curses cell attributes constants (GH-1302). (GH-2241)Mariatta2017-06-162-9/+47
| | | (cherry picked from commit 116dd5eba60a940b35db6aaf4e8c998ac30ad440)
* [email] bpo-29478: Fix passing max_line_length=None from Compat32 policy ↵Mariatta2017-06-164-2/+17
| | | | | | | (GH-595) (GH-2233) If max_line_length=None is specified while using the Compat32 policy, it is no longer ignored.. (cherry picked from commit b459f7482612d340b88b62edc024628595ec6337)
* [3.6] bpo-30682: Removed a too-strict assertion that failed for certain ↵Serhiy Storchaka2017-06-163-2/+11
| | | | | | f-strings. (GH-2232) (#2242) This caused a segfault on eval("f'\\\n'") and eval("f'\\\r'") in debug build.. (cherry picked from commit 11e97f2f80bf65cc828c127eafc95229df35d403)
* Synchronize libregrtest from master to 3.6 (#2244)Victor Stinner2017-06-167-58/+228
| | | | | | | * bpo-30523: regrtest: Add --list-cases option (#2238) * bpo-30284: Fix regrtest for out of tree build (#1481) * bpo-30540: regrtest: add --matchfile option (#1909) * bpo-30258: regrtest: Fix run_tests_multiprocess() (#1479) * bpo-30263: regrtest: log system load (#1452)
* Revert "bpo-30673: test.bat: add -t option (timeout) (#2211) (#2225)" (#2246)Victor Stinner2017-06-161-11/+2
| | | This reverts commit e064d4dfeda09fd206653697b70b434e98cc1b57.
* [3.6]Add IDLE items to NEWS and idlelib/NEWS.txt (#2239) (#2240)terryjreedy2017-06-162-1/+29
|
* bpo-30450: Pull Windows dependencies from GitHub rather than svn (GH-1783) ↵Zachary Ware2017-06-165-88/+250
| | | | | | | | | (GH-2237) The Windows build now depends on Python 3.6 to fetch externals, but it will be downloaded via NuGet (which is downloaded via PowerShell) if it is not available via `py -3.6`. This means the only thing that must be installed on a modern Windows box to do a full build of CPython with all extensions is Visual Studio. Also fixes an outdated note about _lzma in PCbuild/readme.txt (cherry-picked from commit 51599e2bdd10ab77212a7cbb41a13ea70ee13da8)
* bpo-28837: Fix lib2to3 handling of map/zip/filter calls when followed with a ↵Mariatta2017-06-165-26/+110
| | | | | 'trailer', e.g. zip()[x] (GH-24) (GH-2235) (cherry picked from commit 93b4b47e3a720171d67f3b608de406aef462835c)
* Check that Python is 64-bit before enabling BLAKE2_USE_SSE. (GH-1332) (GH-2042)Neil Schemenauer2017-06-161-2/+5
| | | (cherry picked from commit 6c991bdee7ec4bedd8c1b8d3812dc884b654b57c)
* bpo-30656: Fix Python C API Module Objects documentation (GH-2170) (GH-2230)Mariatta2017-06-161-1/+1
| | | | `PyModule_New()` now refers to `PyModule_NewObject()` (cherry picked from commit 2d0afef82a07afdb666f2ca0c533aac5d39155cd)
* bpo-23890: Fix ref cycle in TestCase.assertRaises (#858)Victor Stinner2017-06-153-22/+46
| | | | | unittest.TestCase.assertRaises() now manually breaks a reference cycle to not keep objects alive longer than expected. (cherry picked from commit bbd3cf8f1ef1e91a8d6dac6411e18b4b9084abf5)
* bpo-30673: test.bat: add -t option (timeout) (#2211) (#2225)Victor Stinner2017-06-151-2/+11
| | | (cherry picked from commit 258bfc462b1e58689b43f662a10e44ece3a10bef)
* [3.6] bpo-30626: Fix error handling in PyImport_Import(). (GH-2103) (#2221)Serhiy Storchaka2017-06-151-2/+6
| | | | | In rare circumstances PyImport_Import() could return NULL without raising an error. (cherry picked from commit 145541c)
* bpo-30149: Fix partialmethod without explicit self parameter (#1308) (#1662)Dong-hee Na2017-06-153-4/+48
|
* [3.6] bpo-29931 fix __lt__ check in ipaddress.ip_interface for both v4 and ↵Serhiy Storchaka2017-06-153-10/+36
| | | | | | | | | | v6. (GH-879) (#2217) the original logic was just comparing the network address but this is wrong because if the network address is equal then we need to compare the ip address for breaking the tie add more ip_interface comparison tests. (cherry picked from commit 7bd8d3e794782582a4ad1c9749424fff86802c3e)
* [3.6] bpo-30650: Fixed a syntax error: missed right parentheses (GH-2154) ↵Serhiy Storchaka2017-06-151-1/+1
| | | | | (#2215) (cherry picked from commit 0d32218)
* [3.6] bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. ↵Serhiy Storchaka2017-06-154-3/+19
| | | | | | (GH-2016) (#2214) Running our unit tests with `-bb` enabled triggered this failure.. (cherry picked from commit 171b9a354e816eebc6d4c3a8553303942e9c5025)
* bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164) (#2200)Victor Stinner2017-06-1414-476/+527
| | | | | | | | | | | | | | | | | | | | | | * bpo-29591: Upgrade Modules/expat to libexpat 2.2 * bpo-29591: Restore Python changes on expat * bpo-29591: Remove expat config of unsupported platforms Remove the configuration (Modules/expat/*config.h) of unsupported platforms: * Amiga * MacOS Classic on PPC32 * Open Watcom * bpo-29591: Remove useless XML_HAS_SET_HASH_SALT The XML_HAS_SET_HASH_SALT define of Modules/expat/expat.h became useless since our local expat copy was upgrade to expat 2.1 (it's now expat 2.2.0). (cherry picked from commit 23ec4b57e1359f9c539b8defc317542173ae087e)
* bpo-30231: Remove skipped test_imaplib tests (#1419) (#2192)Victor Stinner2017-06-141-20/+10
| | | | | | | | | The public cyrus.andrew.cmu.edu IMAP server (port 993) doesn't accept TLS connection using our self-signed x509 certificate. Remove the two tests which are already skipped. Write a new test_certfile_arg_warn() unit test for the certfile deprecation warning. (cherry picked from commit b18563da8803433509e9a0e29718e0271014659f)
* [3.6]bpo-15786: Fix IDLE autocomplete return problem. (#2198) (#2199)terryjreedy2017-06-141-1/+2
| | | | Before, Enter would not, for instance, complete 're.c' to 're.compile' even with 'compile' highlighted. Now it does. Before, '\n' was inserted into text, which in Shell meant compile() and possibly execute. Now cursor is left after completion. (cherry picked from commit 32fd874afe55e396e3c9a5af35e7bb3d8e0b8f02)
* bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) ↵Mariatta2017-06-141-1/+1
| | | | | (GH-2195) (cherry picked from commit 184bd82ba8106785ba22f0d2477dbd08bef821fb)
* Fix trivial typo in Python Setup documentation (GH-2185) (GH-2188)csabella2017-06-141-1/+1
| | | | Replace platform with platforms. (cherry picked from commit 4ebf03d109f827c91a23256a447c1d74a203dfee)
* bpo-15786: IDLE: Fix mouse clicks on autocompletetion window (#1811) (#2187)terryjreedy2017-06-141-8/+50
| | | | Patch by Louie Lu. (cherry picked from commit 778b484145edfd0d9b65129322d3295bed8eb71a)
* [3.6] bpo-30649: test_os tolerates 50 ms delta for utime (#2156) (#2175)Victor Stinner2017-06-141-1/+6
| | | | | | | | | | | | | | | | | | * bpo-30649: test_os tolerates 50 ms delta for utime (#2156) On Windows, tolerate a delta of 50 ms instead of 20 ms in test_utime_current() and test_utime_current_old() of test_os. On other platforms, reduce the delta from 20 ms to 10 ms. (cherry picked from commit c94caca65cd38802243b5279cf85ee44ffb2abb8) * bpo-30649: Revert utime delta in test_os (#2176) PPC64 Fedora 3.x buildbot requires at least a delta of 14 ms: revert the utime delta to 20 ms. I tried 10 ms, but test_os failed on the PPC64 Fedora 3.x buildbot. (cherry picked from commit 3402f7268897db15053866e1e68404cfa0e02706)
* [3.6]bpo-25514: Improve IDLE's connection refused message (#2177) (#2178)terryjreedy2017-06-144-35/+119
| | | | When IDLE fail to start because the socket connection fails, direct people to a new subsection of the IDLE doc listing various causes and remedies. (cherry picked from commit 188aedf8bb623d41302e10503268b0852ea91134)
* [3.6]bpo-27922: Stop gui flash from idle_test.test_parenmatch (#2171) (#2172)terryjreedy2017-06-131-0/+1
| | | | For unknown reasons, this does not work when running leak tests. (cherry picked from commit 049cf2bb44038351e1b2eed4fc7b1b522329e550)
* [3.6]bpo-30642: Fix ref leak in idle_test.test_macosx (#2163) (#2165)terryjreedy2017-06-131-0/+4
| | | (cherry picked from commit 8323189ff1a19566f923c04b95e4d17fa57d1f56)
* [3.6] bpo-24484: Avoid race condition in multiprocessing cleanup (GH-2159) ↵Antoine Pitrou2017-06-133-13/+86
| | | | | | | | | | | | | (#2166) * bpo-24484: Avoid race condition in multiprocessing cleanup The finalizer registry can be mutated while inspected by multiprocessing at process exit. * Use test.support.start_threads() * Add Misc/NEWS. (cherry picked from commit 1eb6c0074d17f4fd425cacfdda893d65f5f77f0a)