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

Python 2.3 compatibility.

[SVN r19530]
This commit is contained in:
Dave Abrahams
2003-08-11 11:07:28 +00:00
parent 957ac66e14
commit edf6516085

View File

@@ -285,20 +285,13 @@ e
#####################################################################
>>> v[:] = ['a','b','c','d','e'] # reset again
>>> 'a' in v
1
>>> 'b' in v
1
>>> 'c' in v
1
>>> 'd' in v
1
>>> 'e' in v
1
>>> 'X' in v
0
>>> 12345 in v
0
>>> assert 'a' in v
>>> assert 'b' in v
>>> assert 'c' in v
>>> assert 'd' in v
>>> assert 'e' in v
>>> assert not 'X' in v
>>> assert not 12345 in v
#####################################################################
# Show that iteration allows mutable access to the elements