Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
a45a99b [2.7] bpo-30807: signal.setitimer() may disable the timer by mistake (GH-2493) (#2499) * bpo-30807: signal.setitimer() may disable the timer by mistake * Add NEWS blurb. (cherry picked from commit 729780a810bbcb12b245a1b652302a601fc9f6fd) 30 June 2017, 08:54:54 UTC
12536bd [2.7] Clear potential ref cycle between Process and Process target (GH-2470) (#2473) * Clear potential ref cycle between Process and Process target Besides Process.join() not being called, this was an indirect cause of bpo-30775. The threading module already does this. * Add issue reference. (cherry picked from commit 79d37ae979a65ada0b2ac820279ccc3b1cd41ba6) 28 June 2017, 11:48:38 UTC
5b5002c Clarification to the `break` statement (GH-2453) (GH-2459) Clarify that the break statement breaks out of the innermost enclosing for or while loop. (cherry picked from commit 36fc896740319d2c03aa2054a90a999c162517ef) 28 June 2017, 02:36:15 UTC
fea98bf [2.7] bpo-30523, bpo-30764, bpo-30776: Sync regrtest from master (#2444) * bpo-30523: regrtest --list-cases --match (#2401) * regrtest --list-cases now supports --match and --match-file options. Example: ./python -m test --list-cases -m FileTests test_os * --list-cases now also sets support.verbose to False to prevent messages to stdout when loading test modules. * Add support._match_test() private function. (cherry picked from commit ace56d583664f855d89d1219ece7c21c2fddcf30) (cherry picked from commit 36946c06a3bdb1104c53f0fe535086572ffbdd9e) * bpo-30764: regrtest: add --fail-env-changed option (#2402) * bpo-30764: regrtest: change exit code on failure * Exit code 2 if failed tests ("bad") * Exit code 3 if interrupted * bpo-30764: regrtest: add --fail-env-changed option If the option is set, mark a test as failed if it alters the environment, for example if it creates a file without removing it. (cherry picked from commit 63f54c68936d648c70ca411661e4208329edcf26) (cherry picked from commit 1f33857a3677de84bdc6d80c39f577eb081ed85d) * bpo-30776: reduce regrtest -R false positives (#2422) * Change the regrtest --huntrleaks checker to decide if a test file leaks or not. Require that each run leaks at least 1 reference. * Warmup runs are now completely ignored: ignored in the checker test and not used anymore to compute the sum. * Add an unit test for a reference leak. Example of reference differences previously considered a failure (leak) and now considered as success (success, no leak): [3, 0, 0] [0, 1, 0] [8, -8, 1] (cherry picked from commit 48b5c422ffb03affb00c184b9a99e5537be92732) (cherry picked from commit e0f8b43a46850aa5e5992465cab684496f102fe5) 27 June 2017, 14:56:43 UTC
2d77558 bpo-30705: Fix test_regrtest.test_crashed() (#2439) * Add test.support._crash_python() which triggers a crash but uses test.support.SuppressCrashReport() to prevent a crash report from popping up. * Modify test_child_terminated_in_stopped_state() of test_subprocess and test_crashed() of test_regrtest to use _crash_python(). 27 June 2017, 13:37:19 UTC
95a91df bpo-30764: Windows support.SuppressCrashReport (#2423) * Add Windows support to test.support.SuppressCrashReport: call SetErrorMode() and CrtSetReportMode(). * _testcapi: add CrtSetReportMode() and CrtSetReportFile() functions and CRT_xxx and CRTDBG_xxx constants needed by SuppressCrashReport. 27 June 2017, 12:31:40 UTC
305f333 bpo-30283: Add NEWS entry for backported regrtest (#2398) 27 June 2017, 06:42:01 UTC
2097b9e [2.7] bpo-30764: test_subprocess uses SuppressCrashReport (#2405) (#2412) * bpo-30764: Backport support.SuppressCrashReport Backport test.support.SuppressCrashReport context-manager from master. Drop the Windows implementation since it depends on msvcrt.CrtSetReportMode() which isn't available on Python 2.7. * bpo-30764: test_subprocess uses SuppressCrashReport (#2405) bpo-30764, bpo-29335: test_child_terminated_in_stopped_state() of test_subprocess now uses support.SuppressCrashReport() to prevent the creation of a core dump on FreeBSD. (cherry picked from commit cdee3f14f7f4c995e7eedb0bf6a67e260c739f7d) 26 June 2017, 22:00:51 UTC
8284883 [2.7] bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (GH-2403) (#2420) * [2.7] bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (GH-2403) * bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to lock This is especially important if PyThread_acquire_lock() is called reentrantly (for example from a signal handler). * Update 2017-06-26-14-29-50.bpo-30765.Q5iBmf.rst * Avoid core logic when taking the mutex failed. (cherry picked from commit f84ac420c2af98339678744953869cad3c253281) * Remove test undef 26 June 2017, 20:13:39 UTC
787826c [2.7] bpo-30746: Prohibited the '=' character in environment variable names (GH-2382) (#2393) in `os.putenv()` and `os.spawn*()`.. (cherry picked from commit 77703942c5997dff00c48f10df1b29b11645624c) 25 June 2017, 06:50:00 UTC
9dda2ca [2.7] bpo-30730: Prevent environment variables injection in subprocess on Windows. (GH-2325) (#2372) Prevent passing other invalid environment variables and command arguments.. (cherry picked from commit d174d24a5d37d1516b885dc7c82f71ecd5930700) 24 June 2017, 08:49:00 UTC
7709b4d [2.7] bpo-30727: Fix a race condition in test_threading. (GH-2334). (#2353) (cherry picked from commit 32cb968a2edd482891c33b6f2ebae10f1d305424) 23 June 2017, 11:13:39 UTC
5082674 [2.7] bpo-30709: Improve code example in Descriptor HowTo doc (GH-2339) (GH-2340) (cherry picked from commit b066edfb1b268e90ea11f45dd1827f46d7ceec88) 23 June 2017, 04:24:23 UTC
1ecfa45 Add "Misc/NEWS.d" directory tree for "blurb". (#2333) 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). 22 June 2017, 23:00:05 UTC
da6d305 bpo-8799: Reduce timing sensitivity of condition test by explicitly (#2320) delaying the main thread so that it doesn't race ahead of the workers. (cherry picked from commit 020af2a2bc4708215360a3793b5a1790e15d05dd) 22 June 2017, 00:09:40 UTC
ab3b0ad bpo-29591: Update VS project files (#2310) * Silence warnings caused by duplicated defines from Modules\expat\winconfig.h * Add WIN32 define to VS9.0 project files to match MSBuild project files. 21 June 2017, 19:14:53 UTC
2ada64d [2.7] bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) (#2312) * bpo-30694: Upgrade Modules/expat/ to libexpat 2.2.1 (#2300) New file: Modules/expat/siphash.h. (cherry picked from commit 5ff7132313eb651107b179d20218dfe5d4e47f13) * siphash.h: Address lack of stdint.h for Visual Studio 2003-2008 (cherry picked from libexpat commit c74d380b8f0b5215153d840d2af9455d9c53b960) 21 June 2017, 15:12:46 UTC
ebbccea bpo-30368: Update build_ssl.py to restore Perl-less building (#1805) * bpo-30368: Update build_ssl.py to restore Perl-less building OpenSSL 1.0.2 releases changed how files are copied in the makefile, thus causing Perl to be required even for Python's "prepared" OpenSSL. Now build_ssl.py does the requisite copies before running nmake. * bpo-30368: Update build_ssl.py to use prepared OpenSSL * Updates SSL-linking projects to use the new include{suffix} directory * build_ssl.py now only copies those files not handled by prepare_ssl.py * * bpo-30368: Update build_ssl.py to use prepared OpenSSL * Update SSL-linking projects to use the new include{suffix} directory * Move comment to following line 20 June 2017, 20:53:39 UTC
d4324ba bpo-30500: urllib: Simplify splithost by calling into urlparse. (#1849) (#2294) 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) 20 June 2017, 14:20:36 UTC
b39a748 bpo-30176: Add missing curses cell attributes constants (#2278) 19 June 2017, 14:12:45 UTC
c3c9db8 [2.7] bpo-30657: Check & prevent integer overflow in PyString_DecodeEscape (#2174) 18 June 2017, 16:41:03 UTC
24c2c20 bpo-30540, bpo-30523: Add --matchfile and --list-cases options to regrtest (#2249) [2.7] bpo-30540, bpo-30523: Add --matchfile and --list-cases options to regrtest 16 June 2017, 15:30:03 UTC
8bb0863 bpo-30675: Fix refleak hunting in regrtest (#2227) regrtest now warms up caches: create explicitly all internal singletons which are created on demand to prevent false positives when checking for reference leaks. 16 June 2017, 10:14:09 UTC
0e4571a bpo-29591: Upgrade Modules/expat to libexpat 2.2 (#2164) (#2202) * 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) 15 June 2017, 00:16:35 UTC
4b30107 bpo-30659 : Use ** for kwargs in namedtuple._replace() signature (GH-2173) (GH-2196) (cherry picked from commit 184bd82ba8106785ba22f0d2477dbd08bef821fb) 14 June 2017, 19:07:42 UTC
311054a Fix trivial typo in Python Setup documentation (GH-2185) (GH-2190) Replace platform with platforms. (cherry picked from commit 4ebf03d109f827c91a23256a447c1d74a203dfee) 14 June 2017, 16:26:03 UTC
d09f167 [2.7] bpo-24484: Avoid race condition in multiprocessing cleanup (GH-2159) (#2168) * 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) 13 June 2017, 15:52:29 UTC
a51f12f [2.7] bpo-29514: Check magic number for bugfix releases Add a test to check the current MAGIC_NUMBER against the expected number for the release if the current release is at candidate or final level. On test failure, describe to the developer the procedure for changing the magic number. This ensures that pre-merge CI will automatically pick up on magic number changes in maintenance releases (and explain why those are problematic), rather than relying on all core developers to be aware of the implications of such changes. 13 June 2017, 10:58:48 UTC
bdd3567 _tkinter: Fix refleak in getint() (#2153) PyNumber_Int() creates a new reference: need to decrement result reference counter. 13 June 2017, 09:12:01 UTC
15a6127 [2.7] Mention how to disable signal fd wakeup (GH-2140) (#2151) (cherry picked from commit d79c1d4a9406384f10a37f26a7515ce79f9fdd78) 13 June 2017, 08:21:28 UTC
bbb3358 bpo-30217: add the operators ~ and | to the index (GH-1502) (GH-2137) (cherry picked from commit dc980dfbcfce4695ccde056c3983160ba97b5a36) 12 June 2017, 19:42:47 UTC
41af942 bpo-30615: Fix the leak reference in Modules/_elementtree.c (#2129) 12 June 2017, 13:30:48 UTC
0cc43df [2.7] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) (#2123) The traceback no longer displayed for SystemExit raised in a callback registered by atexit.. (cherry picked from commit 3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4) 12 June 2017, 06:10:53 UTC
107949c bpo-30621: Update Input Output Tutorial Example(GH-2074) (GH-2120) import json before using json module (cherry picked from commit 1dbce04d0e3e93b715eb0d8024da396361759d16) 12 June 2017, 01:59:33 UTC
51658f7 [2.7] Use Travis to make sure all generated files are up to date (GH-2080) (GH-2094) (cherry-picked from commit 0afbabe245e2eb6f7cef3b70531d69f2a7ad8295) Also adds `python.exe-gdb.py` to `.gitignore`, it is created by OS X builds. 11 June 2017, 22:45:40 UTC
5fe8ac6 [2.7] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2086) Also updates checked-in line endings in several files. 11 June 2017, 19:19:39 UTC
9660a7e bpo-25409: Clarify fnmatch and fnmatchcase documentation (GH-1535) (GH-2067) Mention that fnmatchcase does not call normcase, and fnmatch does. (cherry picked from commit e5f6e86c48c7b2eb9e1d6a0e72867b4d8b4720f3) 10 June 2017, 14:26:39 UTC
28288be bpo-30614: testInitNonExistentFile() of test_bz2 leaks references (#2033) * bpo-30614: testInitNonExistentFile() of test_bz2 leaks references Extract the code of BZ2File_dealloc and create a new BZ2File_clear() function. Call BZ2File_clear() in BZ2File_dealloc(). Define BZ2File_clear() as tp_clear. Move the lock initialization before the "self->file = PyObject_CallFunction" in BZ2File_init() and check the lock is not created twice. Call BZ2File_clear() in BZ2File_init() after the init of the lock Co-Authored-By: Victor Stinner <victor.stinner@gmail.com> * Create bz2module.c Fix after the review of Victor Stinner 10 June 2017, 12:36:57 UTC
3c7b67b [2.7] bpo-30417: Disable `cpu` resource on AppVeyor (GH-1951) (cherry picked from commit 42e3acda86829def9adc354fbee77597b849bf9e) 10 June 2017, 03:27:09 UTC
e5bdad2 bpo-30418: Popen.communicate() always ignore EINVAL (#2002) (#2006) On Windows, subprocess.Popen.communicate() now also ignore EINVAL on stdin.write() if the child process is still running but closed the pipe. (cherry picked from commit d52aa31378ae43e044a300edfe8285954c167216) 08 June 2017, 16:34:30 UTC
fe68139 [2.7] trivial: update config.{guess,sub} from gnu.org. (GH-1987) (#2007) * Update config.{guess,sub} from gnu.org.. (cherry picked from commit 6f46683a6257f22f25d136ed080d58d0c060a43b) 08 June 2017, 16:25:58 UTC
536209e bpo-23787: Change sum() docstring from sequence to iterable (GH-1859) * bpo-23787: Change sum() docstring from sequence to iterable Original patch by Raymond Hettinger. 06 June 2017, 16:12:03 UTC
e29c5e8 [2.7] Install dependencies in Travis OSX build (GH-1952) (cherry picked from commit 167e0fc211c06df) 06 June 2017, 03:41:36 UTC
ddf8f14 [2.7] bpo-30417: Disable 'cpu' resource on Travis (GH-1928) Also weakens the 'should this be run?' regex to allow all builds when .travis.yml changes. (cherry picked from commit c53b13b270767948fddb58b287149c499f9a03c4) 06 June 2017, 01:03:05 UTC
e14af32 Simplify code in warnings modules (#1957) Metaprogramming a list of attributes was excessive, and made the code less readable and slower. Backport of 5de3a64179bafcd440b32849b1129ed1fea47b85 05 June 2017, 13:13:50 UTC
ed3edb4 [2.7] Only run AppVeyor on long-lived branches (GH-1941) Also on the short-lived `buildbot-custom` branch. (cherry picked from commit d3bedf356aca04ed9135a84b08) 05 June 2017, 00:52:00 UTC
87edc5e Skip UNC tests on AppVeyor in case of ENOENT (GH-1950) 04 June 2017, 22:45:02 UTC
6a1b89d [2.7] Turn on macOS builds for Travis (GH-1846) (GH-1931) Initially the macOS builds are allowed to fail until such time that they can be determined to be stable and not add an unacceptable amount of time to the overall Travis-passing process. (cherry picked from commit 21c2dd7cf8414c903f0e83cf1d6b7f02f645f422) 03 June 2017, 17:38:43 UTC
3ef3bcb bpo-30378: Fix the problem that SysLogHandler can't handle IPv6 addresses (#1904) (#1676) 01 June 2017, 14:22:18 UTC
662d856 bpo-30499: Remove a deprecated note about sets. (GH-1848) (GH-1907) (cherry picked from commit 0737ee20671d60802a7ef40f653fe449f1921de0) 01 June 2017, 14:12:18 UTC
9139f23 bpo-22702: Clarify documentation of str.join & bytes.join (GH-156) (GH-1898) The "iterable iterable" phrasing created confusion between the term reference and the parameter name. This simplifies the phrasing to just use the parameter name without linking directly to the term definition.. (cherry picked from commit 08e2f355d04d3cbea5751ce1275306ee3f569b32) 01 June 2017, 02:49:30 UTC
32e220f [2.7] Fix Travis config to reinstate test build (GH-1879) (GH-1891) (cherry picked from commit a5aa72ac789052411797c6f079ffff0a9fdbf82c) 31 May 2017, 22:53:30 UTC
e81aa87 [2.7] Fix a trivial typo in global section (GH-1497) (GH-1882) (cherry picked from commit f34c6850203a2406c4950af7a9c8a134145df4ea) 31 May 2017, 05:08:19 UTC
497e5e1 [2.7] Build docs in parallel (GH-1842). (GH-1873) (cherry picked from commit eba68e2c42e149acecb15bbeb692786e2540157d) 30 May 2017, 22:29:40 UTC
1f29cef bpo-29766: Do not force --with-lto to true for --enable-optimizations (#1858) This fixes a faulty backport to the Python 2.7 branch only of http://bugs.python.org/issue28032. Details in the bpo-29766. 30 May 2017, 02:07:07 UTC
1626a47 [2.7] bpo-29960 _random.Random corrupted on exception in setstate(). … (#1289) (cherry picked from commit 9616a82e7802241a4b74cf7ae38d43c37bf66e48) 27 May 2017, 14:19:55 UTC
96f5020 [2.7] bpo-30310: tkFont now supports unicode options (e.g. font family). (#1567) 26 May 2017, 05:15:51 UTC
2bb6eb3 [2.7] Indent methods and attributes of MimeType class (GH-1306) (#1801) 25 May 2017, 17:11:30 UTC
bdd9647 [2.7] bpo-30414: multiprocessing.Queue._feed do not break from main loop on exc (GH-1683) (#1817) * bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc Queue background running thread was not handling exceptions correctly. Any exception occurred inside thread (putting unpickable object) cause feeder to finish running. After that every message put into queue is silently ignored. * bpo-30414: multiprocesing.Queue._feed do not break from main loop on exc Queue background running thread was not handling exceptions correctly. Any exception occurred inside thread (putting unpickable object) cause feeder to finish running. After that every message put into queue is silently ignored.. (cherry picked from commit bc50f03db4f58c869b78e98468e374d7e61f1227) 25 May 2017, 15:53:04 UTC
779e7c9 bpo-30394: Fix a socket leak in smtplib.SMTP.__init__() (#1700) (#1788) 24 May 2017, 18:24:27 UTC
9395ca4 added re.UNICODE effects to insensitive flags (#1781) 24 May 2017, 07:08:41 UTC
f31f225 Fix spelling mistakes in tkinter.py (#1754) Ran the docstrings through spell checker, and fixed spelling issues. 23 May 2017, 06:16:27 UTC
fd58340 Build the docs against Sphinx 1.6.1 (GH-1744) 23 May 2017, 00:47:01 UTC
374e57d [2.7] Fix typos in multiple `.rst` files (GH-1668) (#1707) 22 May 2017, 17:16:53 UTC
6e1b832 bpo-30003: Fix handling escape characters in HZ codec (#1720) (#1556) 22 May 2017, 17:04:27 UTC
2b67c7a [2.7] bpo-30415: Add new tests for the fnmatch module. (GH-1684). (#1696) (cherry picked from commit 817554715b5578b0bac5c35e6ec9a1abd8649e53) 21 May 2017, 07:37:43 UTC
cef8b17 bpo-30409: locale.getpreferredencoding doesn't return result (#1672) 21 May 2017, 01:44:02 UTC
e6a0b59 [2.7] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1681) Based on patches by Duane Griffin and Tim Mitchell. (cherry picked from commit 753bca3934a7618a4fa96e107ad1c5c18633a683) 20 May 2017, 17:05:27 UTC
e9f9b04 [2.7] bpo-25794: Fix `type.__setattr__()` for non-interned or unicode attribute names. (GH-1652) (#1675) Based on patch by Eryk Sun. (cherry picked from commit d896985bb2de49046f9b6879e906d1e4db255e23) 20 May 2017, 07:04:53 UTC
c47c315 bpo-26434: Fix multiprocessing grandchilds in a Windows service (GH-1167) Patch by Davin with help from Marc. 19 May 2017, 00:40:16 UTC
dfcfc91 [2.7] bpo-30375: Correct the stacklevel of regex compiling warnings. (#1595) (#1648) Warnings emitted when compile a regular expression now always point to the line in the user code. Previously they could point into inners of the re module if emitted from inside of groups or conditionals. (cherry picked from commit c7ac7280c321b3c1679fe5f657a6be0f86adf173) 18 May 2017, 10:46:17 UTC
955b676 [2.7] bpo-30363: Backport warnings in the re module. (#1577) Running Python with the -3 option now warns about regular expression syntax that is invalid or has different semantic in Python 3 or will change the behavior in future Python versions. 18 May 2017, 09:34:40 UTC
09b5247 bpo-30365: Backport warnings and fix bugs in ElementTree. (#1581) Running Python with the -3 option now emits deprecation warnings for getchildren() and getiterator() methods of the Element class in the xml.etree.cElementTree module and when pass the html argument to xml.etree.ElementTree.XMLParser(). Fixed a deprecation warning about the doctype() method of the xml.etree.ElementTree.XMLParser class. Now it is emitted only when define the doctype() method in the subclass of XMLParser. Fixed a bug in the test_bug_200708_close test method. An EchoTarget instance was incorrectly passed to XMLParser() as the html argument and silently ignored. Tests no longer failed when use the -m option for running only selected test methods. Checking warnings now is more specific, warnings are expected only when use deprecated features. 17 May 2017, 07:08:11 UTC
800e4b7 bpo-30329: Catch Windows error 10022 on shutdown() (#1538) (#1624) Catch the Windows socket WSAEINVAL error (code 10022) in imaplib on shutdown(SHUT_RDWR): An invalid operation was attempted This error occurs sometimes on SSL connections. (cherry picked from commit 83a2c2879839da2e10037f5e4af1bd1dafbf1a52) 17 May 2017, 00:38:30 UTC
b8b9f95 [2.7] bpo-30380: Fix Sphinx 1.6.1 warnings. (GH-1613) (#1616) * Use explicit numbering for footnotes referred by explicit number. * Fix literal strings formatting in howto/urllib2.rst. * Add `:noindex:` to duplicated definition of list. * Update susp-ignored.csv for reference/expressions.rst. (cherry picked from commit d97b7dc94b19063f0589d401bdc4aaadc7030762) 16 May 2017, 22:26:48 UTC
97eb2a7 [2.7] bpo-30380: Pin the version of Sphinx used to build the docs (GH-1612) (GH-1619) 16 May 2017, 21:41:00 UTC
6924ed5 bpo-30357 each test in test_thread waits until all spawned threads finish (#1583) * bpo-30357 each test in test_thread waits until all spawn threads finish * bpo-30357 each test in test_thread waits until all spawn threads finish * bpo-30357: test_thread now uses threading_cleanup() (#1592) test_thread: setUp() now uses support.threading_setup() and support.threading_cleanup() to wait until threads complete to avoid random side effects on following tests. Co-Authored-By: Victor Stinner <victor.stinner@gmail.com> * bpo-30357: test_thread now uses threading_cleanup() (#1592) test_thread: setUp() now uses support.threading_setup() and support.threading_cleanup() to wait until threads complete to avoid random side effects on following tests. Co-Authored-By: Victor Stinner <victor.stinner@gmail.com> 15 May 2017, 19:01:07 UTC
9d1983b bpo-11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition. (#1591) (cherry picked from commit f25a8de845d20349a265442eb0f3dcd71d0d7ac5) 15 May 2017, 15:32:14 UTC
eb66897 [2.7] bpo-30366: Backport tests for test.support. (#1582) Also backport new functions temp_dir() and python_is_optimized(). temp_cwd() now accepts None as a name (means using tempfile.mkdtemp). check_syntax_error() now accepts arguments lineno and offset. Use more specific error messages in get_attribute(). 15 May 2017, 08:59:35 UTC
982a17e bpo-30242: resolve some undefined behaviours in struct (#1418) (#1588) 15 May 2017, 05:17:54 UTC
bd82a07 Update Travis Doc build config (GH-1565) Build the 'suspicious' doc target, turn on warnings-as-errors on the docs, and always build the docs. This better matches master's doc build setup. 13 May 2017, 15:05:53 UTC
f6c6d1e bpo-11681: Document the `-b` and `-bb` options (GH-1562) 13 May 2017, 14:30:20 UTC
4be66b6 Fix warnings due to deprecated latex options (GH-1563) 13 May 2017, 14:16:44 UTC
c7362b4 Update susp-ignored.csv (GH-1564) 13 May 2017, 14:16:25 UTC
94a3694 bpo-6393: Fix locale.getprerredencoding() on macOS (#1555) Fix for bpo-6393: Python crashes on OSX when $LANG is set to some (but not all) invalid values due to an invalid result from nl_langinfo (cherry picked from commit 6d77e07196bfb5dfa4de6f5d80b2619c0643a75e) 12 May 2017, 09:51:38 UTC
f2e894c bpo-30342: Fix sysconfig.is_python_build() on VS9.0 (#1544) Fix sysconfig.is_python_build() if Python is built with Visual Studio 2008 (VS 9.0). 12 May 2017, 09:31:08 UTC
a5bb624 [2.7] bpo-30283: regrtest: backport test_slow_interrupted() and test_coverage() (#1541) * bpo-30283: regrtest: backport test_coverage() * Add --coverage option, the option was already described in the doc * When coverage is used, regrtest now pass all options to runtest() and calls also accumulate_result() (as done when coverage is not used). * bpo-25260: Fix coverage on Windows: remove the list of ignored directories. * bpo-30283: regrtest: backport test_slow_interrupted() * Fix regrtest to report interrupted tests as omitted rather than failed. * bpo-25260: Fix coverage on Windows: remove the list of ignored directories. * bpo-30283: Fix test_regrtest on Visual Studio 2008 Skip Tools\buildbot\test.bat and PCbuild\rt.bat if Python was not compiled in PCbuild (but compiled in PC\VS9.0\ for example). 11 May 2017, 09:30:23 UTC
3837d97 bpo-15526: test_startfile changes the cwd (#1537) Try to fix test_startfile's inability to clean up after itself in time. Patch by Jeremy Kloth. Fix the following support.rmtree() error while trying to remove the temporary working directory used by Python tests: WindowsError: [Error 32] The process cannot access the file because it is being used by another process: ... Original commit: 8a53dbeb7a9d0ae3e446f36e56cf9acfabe443c1 10 May 2017, 23:23:19 UTC
05469fa bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1531) (#1480) 10 May 2017, 11:20:28 UTC
8832141 gitignore: add rules for the PC/ directory (#1514) [2.7] gitignore: add rules for the PC/ directory 10 May 2017, 00:38:28 UTC
a473a73 [2.7] bpo-29243: Fix Makefile with respect to --enable-optimizations (GH-1478) (#1522) * bpo-29243: Fix Makefile with respect to --enable-optimizations When using the Profile Guided Optimization (./configure --enable-optimizations) Python is built not only during `make` but rebuilt again during `make test`, `make install` and others. This patch fixes the issue. Note that this fix produces no change at all in the Makefile if configure is run witout --enable-optimizations. * !squash. (cherry picked from commit a1054c3b0037d4c2a5492e79fc193f36245366c7) 09 May 2017, 16:04:29 UTC
453a685 bpo-30283: Backport regrtest features from master to 2.7 (#1516) * regrtest: add --slowest alias to --slow * make buildbottest: add --slowest option * regrtest: add "- " prefix to --slowest output * regrtest: Fix an outdated comment * regrtest: replace PermissionError Replace PermissionError with OSError and check on exc.errno. PermissionError was added to Python 3.3. * regrtest: add -3 -tt options to run Python scripts * regrtest: backport --list-tests option * regrtest: backport "Tests result: xxx" summary * regrtest: backport total duration * regrtest: add timestamp to the progress * regrtest: describe previous test state * Add the state of the test: passed, failed, etc. * If a test took longer than 30 seconds, log its execution time * regrtest: -jN logs running workers * regrtest: mention if tests are run in parallel * regrtest: parallel mode is more verbose during wait Display running tests every 30 seconds if no test completed in the meanwhile. * test_regrtest: fix typo in SubprocessRun 09 May 2017, 15:06:34 UTC
d2aff60 [2.7] bpo-30283: Backport test_regrtest from master to 2.7 (#1513) * bpo-30283: regrtest: add --testdir option * bpo-30283: Backport _testcapi.raise_signal() Function used by test_regrtest to simulate an interrupted unit test. * bpo-30283: Backport test_regrtest from master 09 May 2017, 11:57:20 UTC
c8a77d3 Fix SyntaxWarning on importing test_inspect (#1512) Fix the following warning when test_inspect.py is compiled to test_inspect.pyc: test_inspect.py:505: SyntaxWarning: tuple parameter unpacking has been removed in 3.x def spam_deref(a, b, c, d=3, (e, (f,))=(4, (5,)), *g, **h): Replace also test.test_support import with test.support. 09 May 2017, 09:53:16 UTC
4e7457b bpo-29990: Fix range checking in GB18030 decoder (#1509) 09 May 2017, 04:18:56 UTC
228da42 bpo-30258: Fix handling of child error in regrtest (#1477) Don't stop the worker thread if a child failed. 05 May 2017, 08:28:35 UTC
03b2788 bpo-30265: support.unlink() don't catch any OSError (#1456) support.unlink() now only ignores ENOENT and ENOTDIR, instead of ignoring any OSError exception. 05 May 2017, 08:27:34 UTC
5d7a18f [2.7] bpo-30243: Fixed the possibility of a crash in _json. (GH-1420) (#1471) It was possible to get a core dump by using uninitialized _json objects. Now __new__ methods create initialized objects. __init__ methods are removed.. (cherry picked from commit 76a3e51a403bc84ed536921866c86dd7d07aaa7e) 05 May 2017, 08:21:45 UTC
d81f9e2 bpo-30264: ExpatParser now closes the source (#1476) ExpatParser.parse() of xml.sax.xmlreader now closes the source: close the file object or the urllib object if source is a string (not an open file-like object). Add test_parse_close_source() unit test. 05 May 2017, 08:11:55 UTC
fd6094c Relax test timing (bpo-29861) to avoid sporadic failures (#1120) (#1472) (cherry picked from commit 685cdb9acc3fca04a9897d88b89771ddfd50e772) 05 May 2017, 07:47:11 UTC
back to top