2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-25 18:32:24 +00:00

Removing obsolete/out of date files

[SVN r1567]
This commit is contained in:
Raoul Gough
2003-09-18 17:57:18 +00:00
parent b8dd3b324a
commit dc65b0702c
2 changed files with 0 additions and 59 deletions

View File

@@ -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

View File

@@ -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<data_type&> elem(v);
+ extract<reference_type> elem(v);
// try if elem is an exact Data
if (elem.check())
{