Home
last modified time | relevance | path

Searched refs:displayhook (Results 1 – 25 of 25) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_sys.py41 olddisplayhook = sys.displayhook
42 del sys.displayhook
45 sys.displayhook = olddisplayhook
48 olddisplayhook = sys.displayhook
51 sys.displayhook = baddisplayhook
54 sys.displayhook = olddisplayhook
Dtest_doctest.py1070 def displayhook(): r""" member in test_DocTestRunner
/external/python/dateutil/docs/
Drrule.rst33 sys.displayhook = pprint.pprint
43 >>> sys.displayhook = pprint.pprint
575 sys.displayhook = pprint.pprint
622 sys.displayhook = pprint.pprint
Dexamples.rst224 sys.displayhook = pprint.pprint
234 >>> sys.displayhook = pprint.pprint
766 sys.displayhook = pprint.pprint
813 sys.displayhook = pprint.pprint
/external/python/cpython2/Lib/
Dpdb.py213 def displayhook(self, obj): member in Pdb
229 save_displayhook = sys.displayhook
233 sys.displayhook = self.displayhook
238 sys.displayhook = save_displayhook
Ddoctest.py1450 save_displayhook = sys.displayhook
1451 sys.displayhook = sys.__displayhook__
1459 sys.displayhook = save_displayhook
/external/python/cpython3/Lib/
Dpdb.py360 def displayhook(self, obj): member in Pdb
376 save_displayhook = sys.displayhook
380 sys.displayhook = self.displayhook
385 sys.displayhook = save_displayhook
Ddoctest.py1479 save_displayhook = sys.displayhook
1480 sys.displayhook = sys.__displayhook__
1489 sys.displayhook = save_displayhook
/external/python/cpython3/Lib/idlelib/
Drun.py510 sys.displayhook = rpc.displayhook
Drpc.py614 def displayhook(value): function
Dpyshell.py1058 sys.displayhook = rpc.displayhook
/external/python/cpython3/Lib/test/
Dtest_doctest.py1138 def displayhook(): r""" member in test_DocTestRunner
Dtest_sys.py54 displayhook = sys.displayhook
56 del sys.displayhook
60 sys.displayhook = displayhook
/external/python/cpython2/Doc/library/
Dsys.rst87 .. 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/
Dsys.rst255 .. 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/
D2.1.rst483 :func:`sys.displayhook` can be set to a callable object which will be called
494 >>> sys.displayhook = pprint.pprint
/external/python/cpython3/Doc/whatsnew/
D2.1.rst483 :func:`sys.displayhook` can be set to a callable object which will be called
494 >>> sys.displayhook = pprint.pprint
/external/python/cpython3/Doc/tutorial/
Dmodules.rst316 'callstats', 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_info',
/external/python/cpython2/Doc/tutorial/
Dmodules.rst312 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_clear', 'exc_info',
/external/python/cpython2/Misc/NEWS.d/
D2.7.1rc1.rst994 Prevent doctests from failing when sys.displayhook has been reassigned.
D2.7a1.rst3332 In Pdb, prevent the reassignment of __builtin__._ by sys.displayhook on
/external/python/cpython3/Tools/c-analyzer/
DTODO519 Python/ceval.c:_PyEval_EvalFrameDefault():PyId_displayhook _Py_IDENTIFIER(displayhook)
Dknown.tsv1100 Python/ceval.c _PyEval_EvalFrameDefault PyId_displayhook variable _Py_IDENTIFIER(displayhook)
/external/python/cpython3/Python/
Dceval.c2012 _Py_IDENTIFIER(displayhook); in _PyEval_EvalFrameDefault()
/external/python/cpython3/Misc/
DHISTORY11230 - Issue #10601: sys.displayhook uses 'backslashreplace' error handler on
13155 - Issue #8048: Prevent doctests from failing when sys.displayhook has been