Python builtin - add indexing support to std::set

This commit is contained in:
William S Fulton 2018-09-21 19:19:01 +01:00
commit 05d6717de9
2 changed files with 5 additions and 3 deletions

View file

@ -54,6 +54,8 @@ if i.next() != 2:
if i.next() != 3:
raise RuntimeError
if si[0] != 1:
raise RuntimeError
i = s.begin()
i.next()