/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 | 33 sys.displayhook = pprint.pprint 43 >>> sys.displayhook = pprint.pprint 575 sys.displayhook = pprint.pprint 622 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 | 360 def displayhook(self, obj): member in Pdb 376 save_displayhook = sys.displayhook 380 sys.displayhook = self.displayhook 385 sys.displayhook = save_displayhook
|
D | doctest.py | 1479 save_displayhook = sys.displayhook 1480 sys.displayhook = sys.__displayhook__ 1489 sys.displayhook = save_displayhook
|
/external/python/cpython3/Lib/idlelib/ |
D | run.py | 510 sys.displayhook = rpc.displayhook
|
D | rpc.py | 614 def displayhook(value): function
|
D | pyshell.py | 1058 sys.displayhook = rpc.displayhook
|
/external/python/cpython3/Lib/test/ |
D | test_doctest.py | 1138 def displayhook(): r""" member in test_DocTestRunner
|
D | test_sys.py | 54 displayhook = sys.displayhook 56 del sys.displayhook 60 sys.displayhook = 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 | 255 .. function:: displayhook(value) 263 ``sys.displayhook`` is called on the result of evaluating an :term:`expression` 265 customized by assigning another one-argument function to ``sys.displayhook``. 269 def displayhook(value): 353 ``displayhook``, ``excepthook``, and ``unraisablehook`` at the start of the 354 program. They are saved so that ``breakpointhook``, ``displayhook`` and
|
/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/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 | 316 'callstats', 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_info',
|
/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/Tools/c-analyzer/ |
D | TODO | 519 Python/ceval.c:_PyEval_EvalFrameDefault():PyId_displayhook _Py_IDENTIFIER(displayhook)
|
D | known.tsv | 1100 Python/ceval.c _PyEval_EvalFrameDefault PyId_displayhook variable _Py_IDENTIFIER(displayhook)
|
/external/python/cpython3/Python/ |
D | ceval.c | 2012 _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
|