HomeSort by relevance Sort by last modified time
    Searched refs:_make (Results 1 - 12 of 12) sorted by null

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_collections.py 48 self.assertRaises(TypeError, Point._make, [11]) # catch too few args
49 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args
83 self.assertEqual(p, Point._make([11, 22])) # test _make classmethod
127 self.assertEqual(Zero._make([]), ())
134 self.assertEqual(Dot._make([1]), (1,))
149 self.assertEqual(Big._make(range(n)), tuple(range(n)))
201 # test _make
202 t = T._make(values)
209 t = T._make(values
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_collections.py 48 self.assertRaises(TypeError, Point._make, [11]) # catch too few args
49 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args
83 self.assertEqual(p, Point._make([11, 22])) # test _make classmethod
127 self.assertEqual(Zero._make([]), ())
134 self.assertEqual(Dot._make([1]), (1,))
149 self.assertEqual(Big._make(range(n)), tuple(range(n)))
201 # test _make
202 t = T._make(values)
209 t = T._make(values
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_collections.py 48 self.assertRaises(TypeError, Point._make, [11]) # catch too few args
49 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args
83 self.assertEqual(p, Point._make([11, 22])) # test _make classmethod
127 self.assertEqual(Zero._make([]), ())
134 self.assertEqual(Dot._make([1]), (1,))
149 self.assertEqual(Big._make(range(n)), tuple(range(n)))
201 # test _make
202 t = T._make(values)
209 t = T._make(values
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_collections.py 48 self.assertRaises(TypeError, Point._make, [11]) # catch too few args
49 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args
83 self.assertEqual(p, Point._make([11, 22])) # test _make classmethod
127 self.assertEqual(Zero._make([]), ())
134 self.assertEqual(Dot._make([1]), (1,))
149 self.assertEqual(Big._make(range(n)), tuple(range(n)))
201 # test _make
202 t = T._make(values)
209 t = T._make(values
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
collections.py 247 def _make(cls, iterable, new=tuple.__new__, len=len):
264 result = _self._make(map(kwds.pop, {field_names!r}, _self))
680 'Point class with optimized _make() and _replace() without error-checking'
682 _make = classmethod(tuple.__new__) variable in class:Counter.Point
684 return self._make(_map(kwds.get, ('x', 'y'), self))
difflib.py 529 return map(Match._make, self.matching_blocks)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
collections.py 247 def _make(cls, iterable, new=tuple.__new__, len=len):
264 result = _self._make(map(kwds.pop, {field_names!r}, _self))
680 'Point class with optimized _make() and _replace() without error-checking'
682 _make = classmethod(tuple.__new__) variable in class:Counter.Point
684 return self._make(_map(kwds.get, ('x', 'y'), self))
difflib.py 529 return map(Match._make, self.matching_blocks)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 247 def _make(cls, iterable, new=tuple.__new__, len=len):
264 result = _self._make(map(kwds.pop, {field_names!r}, _self))
680 'Point class with optimized _make() and _replace() without error-checking'
682 _make = classmethod(tuple.__new__) variable in class:Counter.Point
684 return self._make(_map(kwds.get, ('x', 'y'), self))
difflib.py 529 return map(Match._make, self.matching_blocks)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 247 def _make(cls, iterable, new=tuple.__new__, len=len):
264 result = _self._make(map(kwds.pop, {field_names!r}, _self))
680 'Point class with optimized _make() and _replace() without error-checking'
682 _make = classmethod(tuple.__new__) variable in class:Counter.Point
684 return self._make(_map(kwds.get, ('x', 'y'), self))
difflib.py 529 return map(Match._make, self.matching_blocks)
    [all...]

Completed in 131 milliseconds