From dc65b0702c1626bff757f6cff8dee29697e061d7 Mon Sep 17 00:00:00 2001 From: Raoul Gough Date: Thu, 18 Sep 2003 17:57:18 +0000 Subject: [PATCH] Removing obsolete/out of date files [SVN r1567] --- include/boost/python/suite/indexing/CONTENTS | 26 --------------- .../boost/python/suite/indexing/vis.hpp.patch | 33 ------------------- 2 files changed, 59 deletions(-) delete mode 100755 include/boost/python/suite/indexing/CONTENTS delete mode 100644 include/boost/python/suite/indexing/vis.hpp.patch diff --git a/include/boost/python/suite/indexing/CONTENTS b/include/boost/python/suite/indexing/CONTENTS deleted file mode 100755 index bb9756db..00000000 --- a/include/boost/python/suite/indexing/CONTENTS +++ /dev/null @@ -1,26 +0,0 @@ - -container_suite.hpp Top-level do-all suite for all supported container types -container_traits.hpp Container traits -iterator_suite.hpp (misnamed) Iterator traits -suite_utils.hpp Utilities to abstract away container interface diffs -iterator_pair.hpp Container emulator using iterator pairs -testsuite.cpp Python extension class for testing the container suite -slice_handler.hpp Python slice interpreter - - -container_proxy.hpp Container wrapper with semi-transparent proxies -shared_proxy_impl.hpp Component shared by proxies that refer to same element -testcontprox.cpp Simple tests for container_proxy -testindexing.py Test various instantiations of the indexing_suite -indexing.cpp Python extensions required for testindexing.py -vis.hpp.patch Simple vector_indexing_suite.hpp patch for indexing.cpp -sample.out Sample output of testindexing.py -vector_indexing_suite_ext.cpp Modified extension module from python/test -vector_indexing_suite.py Python test script from python/test (unmodified) - -older stuff -=========== - -indexing_suite.cpp Traits tests -containers.txt Analysis of Python sequence vs. C++ containers -testlist.py Test behaviour of real Python lists diff --git a/include/boost/python/suite/indexing/vis.hpp.patch b/include/boost/python/suite/indexing/vis.hpp.patch deleted file mode 100644 index 8a8b429a..00000000 --- a/include/boost/python/suite/indexing/vis.hpp.patch +++ /dev/null @@ -1,33 +0,0 @@ -Index: vector_indexing_suite.hpp -=================================================================== -RCS file: /cvsroot/boost/boost/boost/python/suite/indexing/vector_indexing_suite.hpp,v -retrieving revision 1.4 -diff -w -d -u -r1.4 vector_indexing_suite.hpp ---- vector_indexing_suite.hpp 14 Aug 2003 12:14:25 -0000 1.4 -+++ vector_indexing_suite.hpp 30 Aug 2003 11:47:22 -0000 -@@ -52,6 +52,7 @@ - public: - - typedef typename Container::value_type data_type; -+ typedef typename Container::reference reference_type; - typedef typename Container::value_type key_type; - typedef typename Container::size_type index_type; - typedef typename Container::size_type size_type; -@@ -67,7 +68,7 @@ - ; - } - -- static data_type& -+ static reference_type - get_item(Container& container, index_type i) - { - return container[i]; -@@ -185,7 +186,7 @@ - static void - base_append(Container& container, PyObject* v) - { -- extract elem(v); -+ extract elem(v); - // try if elem is an exact Data - if (elem.check()) - {