Searched refs:isrecursive (Results 1 - 2 of 2) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_pprint.py | 147 # Verify .isrecursive() and .isreadable() w/o recursion 153 self.assertFalse(pprint.isrecursive(safe), 154 "expected not isrecursive for %r" % (safe,)) 158 self.assertFalse(pp.isrecursive(safe), 159 "expected not isrecursive for %r" % (safe,)) 171 # Verify .isrecursive() and .isreadable() w/ recursion 181 self.assertTrue(pprint.isrecursive(icky), "expected isrecursive") 183 self.assertTrue(pp.isrecursive(icky), "expected isrecursive") [all...] |
/third_party/python/Lib/ |
H A D | pprint.py | 44 __all__ = ["pprint","pformat","isreadable","isrecursive","saferepr", 76 def isrecursive(object): function 161 def isrecursive(self, object): member in PrettyPrinter 552 # Return triple (repr_string, isreadable, isrecursive).
|
Completed in 2 milliseconds