Lines Matching refs:one
2430 d = dict({'one':1, 'two':2})
2431 self.assertEqual(d, dict(one=1, two=2))
2433 self.assertEqual(d, dict({"one": 1}, two=2))
2434 self.assertEqual(d, dict([("two", 2)], one=1))
2435 self.assertEqual(d, dict([("one", 100), ("two", 200)], **d))
2447 # one seemed better as a ValueError than a TypeError.
2996 ## a maximum of one greater than the number of lines in the file.
3087 d = {cistr('one'): 1, cistr('two'): 2, cistr('tHree'): 3}
3088 self.assertEqual(d[cistr('one')], 1)
4139 # with an exception set (which was possible at one point).
4278 self.assertEqual(C() // E(), "C.__floordiv__") # This one would fail
5562 # __reduce_ex__() takes one integer argument
5586 # Initial hash table can contain only one or two elements.