Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r62233 - in sandbox/python_extensions: . libs/python/test
From: talljimbo_at_[hidden]
Date: 2010-05-26 04:34:03


Author: jbosch
Date: 2010-05-26 04:34:02 EDT (Wed, 26 May 2010)
New Revision: 62233
URL: http://svn.boost.org/trac/boost/changeset/62233

Log:
python_extensions - fixed typo in const_aware test
Text files modified:
   sandbox/python_extensions/TODO | 2 ++
   sandbox/python_extensions/libs/python/test/const_aware.py | 2 +-
   2 files changed, 3 insertions(+), 1 deletions(-)

Modified: sandbox/python_extensions/TODO
==============================================================================
--- sandbox/python_extensions/TODO (original)
+++ sandbox/python_extensions/TODO 2010-05-26 04:34:02 EDT (Wed, 26 May 2010)
@@ -1,4 +1,6 @@
 const_aware:
+ - check pickle support
+ - investigate standardized special names for proxy classes (remove registry?)
  - smarter shared_ptr converter registration (take held_type into account)
  - test subclasses and back-reference wrappers
  - devise better workarounds to deal with lack of visitor support

Modified: sandbox/python_extensions/libs/python/test/const_aware.py
==============================================================================
--- sandbox/python_extensions/libs/python/test/const_aware.py (original)
+++ sandbox/python_extensions/libs/python/test/const_aware.py 2010-05-26 04:34:02 EDT (Wed, 26 May 2010)
@@ -83,7 +83,7 @@
         original_copy = const_aware.Example(original)
         proxy_copy = const_aware.Example(proxy)
         self.assertNotEqual(original.address, original_copy.address)
- self.assertNotEqual(proxyx.address, proxy_copy.address)
+ self.assertNotEqual(proxy.address, proxy_copy.address)
         self.checkNonConst(original_copy)
         self.checkNonConst(proxy_copy)
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk