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

Test full slicing.

[SVN r21497]
This commit is contained in:
Dave Abrahams
2004-01-05 12:34:25 +00:00
parent 440599545f
commit 11ee20fa36

View File

@@ -134,6 +134,9 @@ bool check_string_slice()
if (s.slice(-3,_) != "rld")
return false;
if (s.slice(_,_) != s)
return false;
if (", " != s.slice(5,7))
return false;