$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Markus Schöpflin (markus.schoepflin_at_[hidden])
Date: 2005-10-19 03:11:11
> |python|
>   builtin_converters:  cw-8_3  cw-9_4  gcc-2.95.3-stlport-4.6.2-linux  gcc-3.2.3-linux  gcc-3.3.6-linux  gcc-3.4.4-linux  gcc-3_3-darwin  gcc-3_4_3-sunos  gcc-4.0.1-linux  gcc-4_0-darwin  intel-win32-8_1  intel-win32-9_0  mingw-3_4_2  vc-6_5  vc-6_5-stlport  vc-7_0  vc-7_1
This is directly related to a checkin some days ago. I tried to fix it by 
doing the obvious:
diff -u -r1.17.6.1 test_builtin_converters.py
--- test_builtin_converters.py  14 Oct 2005 15:54:40 -0000      1.17.6.1
+++ test_builtin_converters.py  19 Oct 2005 08:04:13 -0000
@@ -81,7 +81,7 @@
  >>> try:
  ...     unicode
-... catch:
+... except:
  ...     print "u'yo, wassup?'"
  ... else:
  ...     eval("rewrap_value_wstring(u'yo, wassup?')")
@@ -91,7 +91,7 @@
  >>> try:
  ...     unicode
-... catch:
+... except:
  ...     print "u'yo, wassup?'"
  ... else:
  ...     eval("rewrap_value_string(u'yo, wassup?')")
But this didn't work. The error message now is:
Trying:
     try:
         unicode
     except:
         print "u'yo, wassup?'"
     else:
         eval("rewrap_value_wstring(u'yo, wassup?')")
Expecting:
     u'yo, wassup?'
**********************************************************************
File "test_builtin_converters.py", line 82, in __main__
Failed example:
     try:
         unicode
     except:
         print "u'yo, wassup?'"
     else:
         eval("rewrap_value_wstring(u'yo, wassup?')")
Expected:
     u'yo, wassup?'
Got:
     <type 'unicode'>
     u'yo, wassup?'
Trying:
     try:
         unicode
     except:
         print "u'yo, wassup?'"
     else:
         eval("rewrap_value_string(u'yo, wassup?')")
Expecting:
     u'yo, wassup?'
**********************************************************************
File "test_builtin_converters.py", line 92, in __main__
Failed example:
     try:
         unicode
     except:
         print "u'yo, wassup?'"
     else:
         eval("rewrap_value_string(u'yo, wassup?')")
Expected:
     u'yo, wassup?'
Got:
     <type 'unicode'>
     u'yo, wassup?'
What is 'unicode' here supposed to be?
Markus