$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54866 - sandbox-branches/bhy/py3k/libs/python/test
From: divinekid_at_[hidden]
Date: 2009-07-10 13:34:37
Author: bhy
Date: 2009-07-10 13:34:36 EDT (Fri, 10 Jul 2009)
New Revision: 54866
URL: http://svn.boost.org/trac/boost/changeset/54866
Log:
fix pickle2 test case
Text files modified: 
   sandbox-branches/bhy/py3k/libs/python/test/pickle2.py |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: sandbox-branches/bhy/py3k/libs/python/test/pickle2.py
==============================================================================
--- sandbox-branches/bhy/py3k/libs/python/test/pickle2.py	(original)
+++ sandbox-branches/bhy/py3k/libs/python/test/pickle2.py	2009-07-10 13:34:36 EDT (Fri, 10 Jul 2009)
@@ -29,7 +29,7 @@
     >>> wd.__dict__
     {'x': 1}
     >>> try: pstr = pickle.dumps(wd)
-    ... except RuntimeError, err: print err[0]
+    ... except RuntimeError, err: print err
     ...
     Incomplete pickle support (__getstate_manages_dict__ not set)
 '''