From: Zachary Ware Date: Mon, 2 Jun 2014 21:04:25 +0000 (-0500) Subject: Issue #18492: Merge with 3.4 X-Git-Tag: v3.5.0a1~1534 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7e1375e5796263a9d7279dc247d4f6bb4243a46;p=python Issue #18492: Merge with 3.4 --- e7e1375e5796263a9d7279dc247d4f6bb4243a46 diff --cc Lib/test/test_decimal.py index 8072899711,8358ba6e41..f8bb7ebaa7 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@@ -5553,10 -5427,9 +5553,10 @@@ if not C all_tests = all_tests[1::2] else: all_tests.insert(0, CheckAttributes) + all_tests.insert(1, SignatureTest) - def test_main(arith=False, verbose=None, todo_tests=None, debug=None): + def test_main(arith=None, verbose=None, todo_tests=None, debug=None): """ Execute the tests. Runs all arithmetic tests if arith is True or if the "decimal" resource diff --cc Misc/NEWS index af084b86e0,2dbb318e8e..24f5e52e86 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -531,24 -406,6 +531,27 @@@ Documentatio Tests ----- ++- Issue #18492: All resources are now allowed when tests are not run by ++ regrtest.py. ++ +- Issue #21634: Fix pystone micro-benchmark: use floor division instead of true + division to benchmark integers instead of floating point numbers. Set pystone + version to 1.2. Patch written by Lennart Regebro. + +- Issue #21605: Added tests for Tkinter images. + +- Issue #21493: Added test for ntpath.expanduser(). Original patch by + Claudiu Popa. + +- Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok. + +- Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), + PanedWindow.paneconfigure(), and Menu.entryconfigure(). + +- Issue #17756: Fix test_code test when run from the installed location. + +- Issue #17752: Fix distutils tests when run from the installed location. + - Issue #18604: Consolidated checks for GUI availability. All platforms now at least check whether Tk can be instantiated when the GUI resource is requested.