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

georg.brandl python-checkins at python.org
Tue Oct 27 15:04:39 CET 2009


Author: georg.brandl
Date: Tue Oct 27 15:04:39 2009
New Revision: 75776

Log:
Blocked revisions 70598,70605,70616,70668-70669,70671,70771-70772,70837,70878,70918,70939,70986,71031-71032,71036,71070,71075 via svnmerge

........
  r70598 | benjamin.peterson | 2009-03-25 22:24:04 +0100 (Mi, 25 Mär 2009) | 1 line
  
  add shorthands for expected failures and unexpected success
........
  r70605 | benjamin.peterson | 2009-03-26 17:32:23 +0100 (Do, 26 Mär 2009) | 1 line
  
  remove uneeded function
........
  r70616 | benjamin.peterson | 2009-03-26 21:05:50 +0100 (Do, 26 Mär 2009) | 1 line
  
  rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571
........
  r70668 | benjamin.peterson | 2009-03-29 05:16:57 +0200 (So, 29 Mär 2009) | 1 line
  
  a more realistic example
........
  r70669 | benjamin.peterson | 2009-03-29 05:31:40 +0200 (So, 29 Mär 2009) | 1 line
  
  stop the versionchanged directive from hiding the docs
........
  r70671 | benjamin.peterson | 2009-03-29 05:39:58 +0200 (So, 29 Mär 2009) | 1 line
  
  fix consistency
........
  r70771 | andrew.kuchling | 2009-03-31 00:31:11 +0200 (Di, 31 Mär 2009) | 1 line
  
  Many edits
........
  r70772 | barry.warsaw | 2009-03-31 00:42:17 +0200 (Di, 31 Mär 2009) | 5 lines
  
  A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht),
  though with some changes by me.  This patch should not be back ported or
  forward ported.  It's a bit too risky for 2.6 and 3.x does things fairly
  differently.
........
  r70837 | gregory.p.smith | 2009-03-31 18:54:10 +0200 (Di, 31 Mär 2009) | 9 lines
  
  The unittest.TestCase.assertEqual() now displays the differences in lists,
  tuples, dicts and sets on failure.
  
  Many new handy type and comparison specific assert* methods have been added
  that fail with error messages actually useful for debugging.  Contributed in
  by Google and completed with help from mfoord and GvR at PyCon 2009 sprints.
  
  Discussion lives in http://bugs.python.org/issue2578.
........
  r70878 | gregory.p.smith | 2009-03-31 21:59:14 +0200 (Di, 31 Mär 2009) | 3 lines
  
  Issue an actual PendingDeprecationWarning for the TestCase.fail* methods.
  Document the deprecation.
........
  r70918 | raymond.hettinger | 2009-04-01 00:43:03 +0200 (Mi, 01 Apr 2009) | 1 line
  
  Improve examples for collections.deque()
........
  r70939 | jesse.noller | 2009-04-01 05:45:50 +0200 (Mi, 01 Apr 2009) | 1 line
  
  Fix multiprocessing.event to match the new threading.Event API
........
  r70986 | raymond.hettinger | 2009-04-01 22:50:58 +0200 (Mi, 01 Apr 2009) | 1 line
  
  Add link to an alternative generator with a long-period.
........
  r71031 | brett.cannon | 2009-04-02 05:17:39 +0200 (Do, 02 Apr 2009) | 6 lines
  
  PyImport_AppendInittab() took a char * as a first argument even though that
  string was stored beyond the life of the call. Changed the signature to be
  const char * to help make this point.
  
  Closes issue #1419652.
........
  r71032 | michael.foord | 2009-04-02 05:20:38 +0200 (Do, 02 Apr 2009) | 13 lines
  
  Better exception messages for unittest assert methods.
  
  - unittest.assertNotEqual() now uses the inequality operator (!=) instead 
    of the equality operator.
    
  - Default assertTrue and assertFalse messages are now useful. 
  
  - TestCase has a longMessage attribute. This defaults to False, but if set to True 
    useful error messages are shown in addition to explicit messages passed to assert methods.
  
  Issue #5663
........
  r71036 | jesse.noller | 2009-04-02 06:22:09 +0200 (Do, 02 Apr 2009) | 1 line
  
  Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES
........
  r71070 | antoine.pitrou | 2009-04-02 23:18:34 +0200 (Do, 02 Apr 2009) | 3 lines
  
  Issue #2396: backport the memoryview object.
........
  r71075 | raymond.hettinger | 2009-04-03 00:34:17 +0200 (Fr, 03 Apr 2009) | 1 line
  
  Update docs for namedtuple's renaming change.
........


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


More information about the Python-checkins mailing list