2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-27 19:12:16 +00:00

merged from trunk: Test full slicing.

[SVN r21508]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2004-01-06 13:09:29 +00:00
parent 157343241c
commit 3c1a4b13b7

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;