diff --git a/include/boost/python/suite/indexing/vector_indexing_suite.py b/include/boost/python/suite/indexing/vector_indexing_suite.py index 1905d7df..9394319a 100755 --- a/include/boost/python/suite/indexing/vector_indexing_suite.py +++ b/include/boost/python/suite/indexing/vector_indexing_suite.py @@ -131,6 +131,13 @@ reset >>> print_xvec(v) [ a z d e ] +##################################################################### +# Slice: replace [:] with correct result of previous test +##################################################################### +>>> v[:] = [ 'a', 'z', 'd', 'e' ] +>>> print_xvec(v) +[ a z d e ] + ##################################################################### # Slice: replace [0:2] with a list #####################################################################