Return a valid default argv for creating testing instances of ipython
()
| 127 | |
| 128 | |
| 129 | def default_argv(): |
| 130 | """Return a valid default argv for creating testing instances of ipython""" |
| 131 | |
| 132 | return ['--quick', # so no config file is loaded |
| 133 | # Other defaults to minimize side effects on stdout |
| 134 | '--colors=NoColor', '--no-term-title','--no-banner', |
| 135 | '--autocall=0'] |
| 136 | |
| 137 | |
| 138 | def default_config(): |