[Python-checkins] r79338 - python/branches/release26-maint

florent.xicluna python-checkins at python.org
Tue Mar 23 13:47:46 CET 2010


Author: florent.xicluna
Date: Tue Mar 23 13:47:46 2010
New Revision: 79338

Log:
Blocked revisions 78508-78509,78582,78585,78594,78606,78652-78653,78661-78662,78671,78673,78675,78701,78704,78719-78721,78726,78732,78734-78736,78757-78759,78761,78767,78769,78777,78787-78790,78794,78815,78828,78830,78832-78833,78838-78839,78917,78919,78934,78937,78944,78966,78982,78986,79030-79032,79049,79059,79100,79127,79156,79159,79165,79187-79189,79191,79194 via svnmerge

........
  r78508 | florent.xicluna | 2010-02-27 20:20:50 +0100 (sam, 27 fév 2010) | 2 lines
  
  Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a custom helper assertStderrEqual.
........
  r78509 | florent.xicluna | 2010-02-27 22:15:27 +0100 (sam, 27 fév 2010) | 2 lines
  
  Fix an oversight in r78508: p.wait() should be compared to 0
........
  r78582 | florent.xicluna | 2010-03-02 17:00:00 +0100 (mar, 02 mar 2010) | 2 lines
  
  Refactor test_dict using assertRaises.
........
  r78585 | florent.xicluna | 2010-03-02 22:34:45 +0100 (mar, 02 mar 2010) | 2 lines
  
  Tentatively enable test_pep277 on all platforms.
........
  r78594 | florent.xicluna | 2010-03-02 23:34:11 +0100 (mar, 02 mar 2010) | 2 lines
  
  Test test_pep277 is only relevant for Unicode-friendly filesystems.
........
  r78606 | florent.xicluna | 2010-03-03 00:56:38 +0100 (mer, 03 mar 2010) | 2 lines
  
  Fix wording.
........
  r78652 | florent.xicluna | 2010-03-04 16:57:20 +0100 (jeu, 04 mar 2010) | 2 lines
  
  Fix transient refleak in test_popen2.
........
  r78653 | florent.xicluna | 2010-03-04 16:58:54 +0100 (jeu, 04 mar 2010) | 2 lines
  
  #7805: wait until all workers are started before collecting their PIDs
........
  r78661 | florent.xicluna | 2010-03-04 20:40:48 +0100 (jeu, 04 mar 2010) | 2 lines
  
  Cleanup.
........
  r78662 | florent.xicluna | 2010-03-04 22:31:58 +0100 (jeu, 04 mar 2010) | 2 lines
  
  #2777: Enable test_send_signal, test_kill and test_terminate on all platforms.
........
  r78671 | florent.xicluna | 2010-03-05 01:47:40 +0100 (ven, 05 mar 2010) | 3 lines
  
  Workaround #3137: Retry SIGINT if it is not received the first time.
  test_send_signal should not hang anymore on various Linux distributions.
........
  r78673 | florent.xicluna | 2010-03-05 02:05:55 +0100 (ven, 05 mar 2010) | 2 lines
  
  Let's use assertIsNone / assertIsNotNone. It's hype.
........
  r78675 | florent.xicluna | 2010-03-05 02:12:14 +0100 (ven, 05 mar 2010) | 2 lines
  
  These line should not be there.
........
  r78701 | florent.xicluna | 2010-03-05 20:31:21 +0100 (ven, 05 mar 2010) | 2 lines
  
  #2777: Handle fds more carefully to try to fix some x86-Linux failures (namely, neal bot and twisted bot).
........
  r78704 | florent.xicluna | 2010-03-06 01:16:57 +0100 (sam, 06 mar 2010) | 2 lines
  
  #2777: Apply same recipe for test_terminate and test_kill, i.e. close or redirect fds.
........
  r78719 | florent.xicluna | 2010-03-06 09:07:44 +0100 (sam, 06 mar 2010) | 3 lines
  
  Keep the test files in the ./build/ subdirectory, if Python is not installed.
  Remove two hacks which are no longer needed after #7712, because all __file__ attributes are absolute.
........
  r78720 | florent.xicluna | 2010-03-06 10:11:55 +0100 (sam, 06 mar 2010) | 2 lines
  
  Print platform information to stdout, to help troubleshooting platform-specific failures.
........
  r78721 | florent.xicluna | 2010-03-06 10:54:14 +0100 (sam, 06 mar 2010) | 2 lines
  
  #2777: Apply same recipe on win32, i.e. do not inherit file handles.
........
  r78726 | florent.xicluna | 2010-03-06 15:38:09 +0100 (sam, 06 mar 2010) | 2 lines
  
  Backport "test.regrtest -R 2:3" syntax from py3k branch, and other minor adjustments.
........
  r78732 | florent.xicluna | 2010-03-06 18:24:36 +0100 (sam, 06 mar 2010) | 2 lines
  
  Do not print the header lines when running a single test.
........
  r78734 | florent.xicluna | 2010-03-06 19:07:18 +0100 (sam, 06 mar 2010) | 2 lines
  
  Create test_genericpath.CommonTest and reuse it to test other path modules.
........
  r78735 | florent.xicluna | 2010-03-06 19:52:52 +0100 (sam, 06 mar 2010) | 2 lines
  
  Minor tweaking of previous r78734, and add a NEWS entry.
........
  r78736 | florent.xicluna | 2010-03-06 20:43:41 +0100 (sam, 06 mar 2010) | 2 lines
  
  Skip test_send_signal, test_kill, test_terminate on win32 platforms, for 2.7a4 release.
........
  r78757 | florent.xicluna | 2010-03-07 13:14:25 +0100 (dim, 07 mar 2010) | 2 lines
  
  Fix some py3k warnings in the standard library.
........
  r78758 | florent.xicluna | 2010-03-07 13:18:33 +0100 (dim, 07 mar 2010) | 4 lines
  
  Issue #7849: Now the utility ``check_warnings`` verifies if the warnings are
  effectively raised.  A new utility ``check_py3k_warnings`` deals with py3k warnings.
........
  r78759 | florent.xicluna | 2010-03-07 13:21:36 +0100 (dim, 07 mar 2010) | 2 lines
  
  #2777: Enable test_send_signal, test_terminate and test_kill on win32 platforms.
........
  r78761 | florent.xicluna | 2010-03-07 16:27:39 +0100 (dim, 07 mar 2010) | 4 lines
  
  Do not fail if returncode is 0 on send_signal/kill/terminate, for win32 platforms.
  Do not hide the KeyboardInterrupt on POSIX platforms.
........
  r78767 | florent.xicluna | 2010-03-07 18:12:23 +0100 (dim, 07 mar 2010) | 2 lines
  
  #2777: Try hard to make Win7 buildbot happy...
........
  r78769 | florent.xicluna | 2010-03-07 20:14:12 +0100 (dim, 07 mar 2010) | 2 lines
  
  Refresh the documentation for the test.test_support module.
........
  r78777 | florent.xicluna | 2010-03-08 00:49:03 +0100 (lun, 08 mar 2010) | 4 lines
  
  Backport the Popen.poll() protection from subprocess to multiprocessing. See #1731717.
  It should fix transient failures on test_multiprocessing.
........
  r78787 | florent.xicluna | 2010-03-08 08:21:16 +0100 (lun, 08 mar 2010) | 2 lines
  
  Don't fail on a debug() statement, if the worker PID is (still) None.
........
  r78788 | florent.xicluna | 2010-03-08 11:58:12 +0100 (lun, 08 mar 2010) | 2 lines
  
  Fix syntax: "rc != None" -> "rc is not None"
........
  r78789 | florent.xicluna | 2010-03-08 11:59:33 +0100 (lun, 08 mar 2010) | 2 lines
  
  Replace the stderr logging with assertNotEqual(returncode, 0).
........
  r78790 | florent.xicluna | 2010-03-08 12:01:39 +0100 (lun, 08 mar 2010) | 2 lines
  
  On finalize, don't try to join not started process.
........
  r78794 | florent.xicluna | 2010-03-08 13:39:35 +0100 (lun, 08 mar 2010) | 2 lines
  
  Move some tests from test_macpath to test_genericpath.CommonTest
........
  r78815 | florent.xicluna | 2010-03-09 20:57:01 +0100 (mar, 09 mar 2010) | 2 lines
  
  #7772: Fix test_py3kwarn. Now the test suite could pass with "-3" flag.
........
  r78828 | florent.xicluna | 2010-03-11 00:58:42 +0100 (jeu, 11 mar 2010) | 2 lines
  
  Issue #7880: Fix sysconfig when the python executable is a symbolic link.
........
  r78830 | florent.xicluna | 2010-03-11 01:56:59 +0100 (jeu, 11 mar 2010) | 3 lines
  
  Fix the test_subprocess failure when sys.executable is meaningless: '' or a directory.
  It does not fix #7774.
........
  r78832 | florent.xicluna | 2010-03-11 02:39:55 +0100 (jeu, 11 mar 2010) | 2 lines
  
  It is not optimal to test sys.stderr on a debug build.
........
  r78833 | florent.xicluna | 2010-03-11 02:50:48 +0100 (jeu, 11 mar 2010) | 2 lines
  
  Revert r78830: realpath() should really be applied to sys.executable.
........
  r78838 | florent.xicluna | 2010-03-11 15:36:19 +0100 (jeu, 11 mar 2010) | 2 lines
  
  Issue #6472: The xml.etree package is updated to ElementTree 1.3.  The cElementTree module is updated too.
........
  r78839 | florent.xicluna | 2010-03-11 16:55:11 +0100 (jeu, 11 mar 2010) | 2 lines
  
  Fix repr of tree Element on windows.
........
  r78917 | florent.xicluna | 2010-03-13 12:18:49 +0100 (sam, 13 mar 2010) | 2 lines
  
  Move the xml test data to their own directory.
........
  r78919 | florent.xicluna | 2010-03-13 13:41:48 +0100 (sam, 13 mar 2010) | 2 lines
  
  Do not chdir when running test_xml_etree, and enhance the findfile helper.
........
  r78934 | florent.xicluna | 2010-03-13 18:56:19 +0100 (sam, 13 mar 2010) | 2 lines
  
  Update some parts of the xml.etree documentation.
........
  r78937 | florent.xicluna | 2010-03-13 21:30:15 +0100 (sam, 13 mar 2010) | 3 lines
  
  Add the keyword argument "method=None" to the .write() method and the tostring/tostringlist functions.
  Update the function, class and method signatures, according to the new convention.
........
  r78944 | florent.xicluna | 2010-03-14 02:22:09 +0100 (dim, 14 mar 2010) | 2 lines
  
  Minor documentation updates for xml.etree.
........
  r78966 | florent.xicluna | 2010-03-14 16:20:59 +0100 (dim, 14 mar 2010) | 2 lines
  
  Do not hardcode Expat version.  It's possible to build Python with --with-system-expat option.
........
  r78982 | florent.xicluna | 2010-03-15 15:00:58 +0100 (lun, 15 mar 2010) | 2 lines
  
  Remove py3k deprecation warnings from these Unicode tools.
........
  r78986 | florent.xicluna | 2010-03-15 19:08:58 +0100 (lun, 15 mar 2010) | 3 lines
  
  Issue #7783 and #7787: open_urlresource invalidates the outdated files from the local cache.
  Use this feature to fix test_normalization.
........
  r79030 | florent.xicluna | 2010-03-17 20:05:04 +0100 (mer, 17 mar 2010) | 2 lines
  
  Cleanup in test_import and test_coding.
........
  r79031 | florent.xicluna | 2010-03-17 20:15:56 +0100 (mer, 17 mar 2010) | 2 lines
  
  Cleanup some test cases using check_warnings and check_py3k_warnings.
........
  r79032 | florent.xicluna | 2010-03-17 21:05:11 +0100 (mer, 17 mar 2010) | 2 lines
  
  Fix and check cgi module deprecation warnings.  Revert an unwanted rename in test_import.
........
  r79049 | florent.xicluna | 2010-03-18 20:51:47 +0100 (jeu, 18 mar 2010) | 2 lines
  
  #8155: Preserve backward compatibility for test_support.check_warnings().  Add regression tests.
........
  r79059 | florent.xicluna | 2010-03-18 22:50:06 +0100 (jeu, 18 mar 2010) | 2 lines
  
  Issue #8024: Update the Unicode database to 5.2
........
  r79100 | florent.xicluna | 2010-03-19 19:34:55 +0100 (ven, 19 mar 2010) | 2 lines
  
  Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* and setUp/tearDown.
........
  r79127 | florent.xicluna | 2010-03-20 01:17:46 +0100 (sam, 20 mar 2010) | 2 lines
  
  #8178 Cleanup the threads after test_thread.TestForkInThread.
........
  r79156 | florent.xicluna | 2010-03-20 23:21:02 +0100 (sam, 20 mar 2010) | 2 lines
  
  Cleanup test_struct using check_warnings.
........
  r79159 | florent.xicluna | 2010-03-20 23:26:42 +0100 (sam, 20 mar 2010) | 2 lines
  
  Cleanup test_tarfile, and use check_warnings.
........
  r79165 | florent.xicluna | 2010-03-21 02:14:24 +0100 (dim, 21 mar 2010) | 2 lines
  
  #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper.
........
  r79187 | florent.xicluna | 2010-03-21 11:50:44 +0100 (dim, 21 mar 2010) | 2 lines
  
  Silence more py3k warnings in unittest.case.
........
  r79188 | florent.xicluna | 2010-03-21 11:51:40 +0100 (dim, 21 mar 2010) | 2 lines
  
  Fix py3k warnings in test_decimal, using unittest.assertItemsEqual.
........
  r79189 | florent.xicluna | 2010-03-21 12:03:21 +0100 (dim, 21 mar 2010) | 2 lines
  
  Silence some py3k SyntaxWarning using check_py3k_warnings() with "exec" statements.
........
  r79191 | florent.xicluna | 2010-03-21 12:50:17 +0100 (dim, 21 mar 2010) | 3 lines
  
  No more deprecation warnings for distutils.sysconfig, following r78666.
  But when the "dl" module is available, it gives a py3k deprecation warning.
........
  r79194 | florent.xicluna | 2010-03-21 12:58:11 +0100 (dim, 21 mar 2010) | 2 lines
  
  Use assertRaises and add a specific warning filter.
........


Modified:
   python/branches/release26-maint/   (props changed)


More information about the Python-checkins mailing list