Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:displayhook
(Results
1 - 10
of
10
) sorted by relevance
/third_party/python/Lib/idlelib/
H
A
D
run.py
530
sys.
displayhook
= rpc.
displayhook
H
A
D
rpc.py
614
def
displayhook
(value):
function
H
A
D
pyshell.py
1156
sys.
displayhook
= rpc.
displayhook
/third_party/python/Lib/test/
H
A
D
test_doctest.py
1195
def
displayhook
(): r"""
1196
Test that changing sys.
displayhook
doesn't matter for doctest.
1199
>>> orig_displayhook = sys.
displayhook
1202
>>> sys.
displayhook
= my_displayhook
1210
>>> post_displayhook = sys.
displayhook
1212
We need to restore sys.
displayhook
now, so that we'll be able to test
1215
>>> sys.
displayhook
= orig_displayhook
H
A
D
test_sys.py
47
# sys.
displayhook
() requires arguments
58
displayhook
= sys.
displayhook
60
del sys.
displayhook
64
sys.
displayhook
=
displayhook
70
with support.swap_attr(sys, '
displayhook
', baddisplayhook):
1666
# If the default
displayhook
doesn't take a strong reference
/third_party/python/Lib/
H
A
D
pdb.py
429
def
displayhook
(self, obj):
member in Pdb
430
"""Custom
displayhook
for the exec in default(), which prevents
433
# reproduce the behavior of the standard
displayhook
, not printing None
445
save_displayhook = sys.
displayhook
449
sys.
displayhook
= self.
displayhook
454
sys.
displayhook
= save_displayhook
H
A
D
doctest.py
1493
# Make sure sys.
displayhook
just prints the value to stdout
1494
save_displayhook = sys.
displayhook
1495
sys.
displayhook
= sys.__displayhook__
1504
sys.
displayhook
= save_displayhook
/third_party/python/Include/internal/
H
A
D
pycore_global_strings.h
252
STRUCT_FOR_ID(
displayhook
)
H
A
D
pycore_runtime_init.h
875
INIT_ID(
displayhook
), \
/third_party/python/Python/
H
A
D
ceval.c
2392
PyObject *hook = _PySys_GetAttr(tstate, &_Py_ID(
displayhook
));
2396
"lost sys.
displayhook
");
Completed in 26 milliseconds