MCPcopy Index your code
hub / github.com/ipython/ipython / default_argv

Function default_argv

IPython/testing/tools.py:118–128  ·  view source on GitHub ↗

Return a valid default argv for creating testing instances of ipython

()

Source from the content-addressed store, hash-verified

116
117
118def default_argv() -> List[str]:
119 """Return a valid default argv for creating testing instances of ipython"""
120
121 return [
122 "--quick", # so no config file is loaded
123 # Other defaults to minimize side effects on stdout
124 "--colors=nocolor",
125 "--no-term-title",
126 "--no-banner",
127 "--autocall=0",
128 ]
129
130
131def default_config() -> Config:

Callers 1

ipexecFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…