/external/python/cpython2/Lib/test/ |
D | test_sys.py | 41 olddisplayhook = sys.displayhook 42 del sys.displayhook 45 sys.displayhook = olddisplayhook 48 olddisplayhook = sys.displayhook 51 sys.displayhook = baddisplayhook 54 sys.displayhook = olddisplayhook
|
D | test_doctest.py | 1070 def displayhook(): r""" member in test_DocTestRunner
|
/external/python/dateutil/docs/ |
D | rrule.rst | 22 sys.displayhook = pprint.pprint 32 >>> sys.displayhook = pprint.pprint 564 sys.displayhook = pprint.pprint 611 sys.displayhook = pprint.pprint
|
D | examples.rst | 224 sys.displayhook = pprint.pprint 234 >>> sys.displayhook = pprint.pprint 766 sys.displayhook = pprint.pprint 813 sys.displayhook = pprint.pprint
|
/external/python/cpython2/Lib/ |
D | pdb.py | 213 def displayhook(self, obj): member in Pdb 229 save_displayhook = sys.displayhook 233 sys.displayhook = self.displayhook 238 sys.displayhook = save_displayhook
|
D | doctest.py | 1450 save_displayhook = sys.displayhook 1451 sys.displayhook = sys.__displayhook__ 1459 sys.displayhook = save_displayhook
|
/external/python/cpython3/Lib/ |
D | pdb.py | 355 def displayhook(self, obj): member in Pdb 371 save_displayhook = sys.displayhook 375 sys.displayhook = self.displayhook 380 sys.displayhook = save_displayhook
|
D | doctest.py | 1471 save_displayhook = sys.displayhook 1472 sys.displayhook = sys.__displayhook__ 1481 sys.displayhook = save_displayhook
|
/external/python/cpython3/Lib/test/ |
D | test_doctest.py | 1125 def displayhook(): r""" member in test_DocTestRunner
|
D | test_sys.py | 25 self.orig_displayhook = sys.displayhook 30 sys.displayhook = self.orig_displayhook 55 del sys.displayhook 62 sys.displayhook = baddisplayhook
|
/external/python/cpython3/Lib/idlelib/ |
D | run.py | 431 sys.displayhook = rpc.displayhook
|
D | rpc.py | 615 def displayhook(value): function
|
D | pyshell.py | 1060 sys.displayhook = rpc.displayhook
|
/external/python/cpython2/Doc/library/ |
D | sys.rst | 87 .. function:: displayhook(value) 92 ``sys.displayhook`` is called on the result of evaluating an :term:`expression` 94 customized by assigning another one-argument function to ``sys.displayhook``. 123 These objects contain the original values of ``displayhook`` and ``excepthook`` 124 at the start of the program. They are saved so that ``displayhook`` and
|
/external/python/cpython3/Doc/library/ |
D | sys.rst | 169 .. function:: displayhook(value) 177 ``sys.displayhook`` is called on the result of evaluating an :term:`expression` 179 customized by assigning another one-argument function to ``sys.displayhook``. 183 def displayhook(value): 231 ``displayhook``, and ``excepthook`` at the start of the program. They are 232 saved so that ``breakpointhook``, ``displayhook`` and ``excepthook`` can be
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.1.rst | 483 :func:`sys.displayhook` can be set to a callable object which will be called 494 >>> sys.displayhook = pprint.pprint
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.1.rst | 483 :func:`sys.displayhook` can be set to a callable object which will be called 494 >>> sys.displayhook = pprint.pprint
|
/external/python/cpython3/Doc/tutorial/ |
D | modules.rst | 314 'call_tracing', 'callstats', 'copyright', 'displayhook',
|
/external/python/cpython2/Doc/tutorial/ |
D | modules.rst | 312 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_clear', 'exc_info',
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.1rc1.rst | 994 Prevent doctests from failing when sys.displayhook has been reassigned.
|
D | 2.7a1.rst | 3332 In Pdb, prevent the reassignment of __builtin__._ by sys.displayhook on
|
/external/python/cpython3/Python/ |
D | ceval.c | 1600 _Py_IDENTIFIER(displayhook); in _PyEval_EvalFrameDefault()
|
/external/python/cpython3/Misc/ |
D | HISTORY | 11230 - Issue #10601: sys.displayhook uses 'backslashreplace' error handler on 13155 - Issue #8048: Prevent doctests from failing when sys.displayhook has been
|