3 from pybind11_tests
import sequences_and_iterators
as m
4 from pybind11_tests
import ConstructorStats
7 def isclose(a, b, rel_tol=1e-05, abs_tol=0.0):
8 """Like math.isclose() from Python 3.5""" 12 def allclose(a_list, b_list, rel_tol=1e-05, abs_tol=0.0):
13 return all(
isclose(a, b, rel_tol=rel_tol, abs_tol=abs_tol)
for a, b
in zip(a_list, b_list))
17 assert list(m.IntPairs([(1, 2), (3, 4), (0, 5)]).nonzero()) == [(1, 2), (3, 4)]
18 assert list(m.IntPairs([(1, 2), (2, 0), (0, 3), (4, 5)]).nonzero()) == [(1, 2)]
19 assert list(m.IntPairs([(0, 3), (1, 2), (3, 4)]).nonzero()) == []
21 assert list(m.IntPairs([(1, 2), (3, 4), (0, 5)]).nonzero_keys()) == [1, 3]
22 assert list(m.IntPairs([(1, 2), (2, 0), (0, 3), (4, 5)]).nonzero_keys()) == [1]
23 assert list(m.IntPairs([(0, 3), (1, 2), (3, 4)]).nonzero_keys()) == []
26 it = m.IntPairs([(0, 0)]).nonzero()
28 with pytest.raises(StopIteration):
31 it = m.IntPairs([(0, 0)]).nonzero_keys()
33 with pytest.raises(StopIteration):
38 sliceable = m.Sliceable(100)
39 assert sliceable[::] == (0, 100, 1)
40 assert sliceable[10::] == (10, 100, 1)
41 assert sliceable[:10:] == (0, 10, 1)
42 assert sliceable[::10] == (0, 100, 10)
43 assert sliceable[-10::] == (90, 100, 1)
44 assert sliceable[:-10:] == (0, 90, 1)
45 assert sliceable[::-10] == (99, -1, -10)
46 assert sliceable[50:60:1] == (50, 60, 1)
47 assert sliceable[50:60:-1] == (50, 60, -1)
54 assert cstats.values() == [
'of size',
'5']
56 assert "Sequence" in repr(s)
58 assert s[0] == 0
and s[3] == 0
60 s[0], s[3] = 12.34, 56.78
65 assert cstats.values() == [
'of size',
'5']
68 assert cstats.values() == [
'of size',
'5']
70 it =
iter(m.Sequence(0))
72 with pytest.raises(StopIteration):
74 assert cstats.values() == [
'of size',
'0']
76 expected = [0, 56.78, 0, 0, 12.34]
81 rev[0::2] = m.Sequence([2.0, 2.0, 2.0])
82 assert cstats.values() == [
'of size',
'3',
'from std::vector']
84 assert allclose(rev, [2, 56.78, 2, 0, 2])
86 assert cstats.alive() == 4
88 assert cstats.alive() == 3
90 assert cstats.alive() == 2
92 assert cstats.alive() == 1
94 assert cstats.alive() == 0
96 assert cstats.values() == []
97 assert cstats.default_constructions == 0
98 assert cstats.copy_constructions == 0
99 assert cstats.move_constructions >= 1
100 assert cstats.copy_assignments == 0
101 assert cstats.move_assignments == 0
105 """#2076: Exception raised by len(arg) should be propagated """ 106 class BadLen(RuntimeError):
109 class SequenceLike():
110 def __getitem__(self, i):
116 with pytest.raises(BadLen):
117 m.sequence_length(SequenceLike())
119 assert m.sequence_length([1, 2, 3]) == 3
120 assert m.sequence_length(
"hello") == 5
124 sm = m.StringMap({
'hi':
'bye',
'black':
'white'})
125 assert sm[
'hi'] ==
'bye' 127 assert sm[
'black'] ==
'white' 129 with pytest.raises(KeyError):
131 sm[
'orange'] =
'banana' 132 assert sm[
'orange'] ==
'banana' 134 expected = {
'hi':
'bye',
'black':
'white',
'orange':
'banana'}
136 assert sm[k] == expected[k]
137 for k, v
in sm.items():
138 assert v == expected[k]
140 it =
iter(m.StringMap({}))
142 with pytest.raises(StopIteration):
148 assert m.object_to_list(t) == [1, 2, 3]
149 assert m.object_to_list(
iter(t)) == [1, 2, 3]
150 assert m.iterator_to_list(
iter(t)) == [1, 2, 3]
152 with pytest.raises(TypeError)
as excinfo:
154 assert "object is not iterable" in str(excinfo.value)
156 with pytest.raises(TypeError)
as excinfo:
157 m.iterator_to_list(1)
158 assert "incompatible function arguments" in str(excinfo.value)
161 raise RuntimeError(
"py::iterator::advance() should propagate errors")
163 with pytest.raises(RuntimeError)
as excinfo:
164 m.iterator_to_list(
iter(bad_next_call,
None))
165 assert str(excinfo.value) ==
"py::iterator::advance() should propagate errors" 167 lst = [1,
None, 0,
None]
168 assert m.count_none(lst) == 2
169 assert m.find_none(lst)
is True 170 assert m.count_nonzeros({
"a": 0,
"b": 1,
"c": 2}) == 2
173 assert all(m.tuple_iterator(
tuple(r)))
174 assert all(m.list_iterator(
list(r)))
175 assert all(m.sequence_iterator(r))
179 """#181: iterator passthrough did not compile""" 180 from pybind11_tests.sequences_and_iterators
import iterator_passthrough
182 assert list(iterator_passthrough(
iter([3, 5, 7, 9, 11, 13, 15]))) == [3, 5, 7, 9, 11, 13, 15]
186 """#388: Can't make iterators via make_iterator() with different r/v policies """ 187 import pybind11_tests.sequences_and_iterators
as m
189 assert list(m.make_iterator_1()) == [1, 2, 3]
190 assert list(m.make_iterator_2()) == [1, 2, 3]
191 assert not isinstance(m.make_iterator_1(),
type(m.make_iterator_2()))
def isclose(a, b, rel_tol=1e-05, abs_tol=0.0)
iterator iter(handle obj)
def test_python_iterator_in_cpp()
bool isinstance(handle obj)
def test_generalized_iterators()
static ConstructorStats & get(std::type_index type)
def test_iterator_passthrough()
def test_sequence_length()
def allclose(a_list, b_list, rel_tol=1e-05, abs_tol=0.0)