MCPcopy Create free account
hub / github.com/ipython/ipython / _set_term_title_xterm

Function _set_term_title_xterm

IPython/utils/terminal.py:65–69  ·  view source on GitHub ↗

Change virtual terminal title in xterm-workalikes

(title)

Source from the content-addressed store, hash-verified

63
64
65def _set_term_title_xterm(title):
66 """ Change virtual terminal title in xterm-workalikes """
67 # save the current title to the xterm "stack"
68 sys.stdout.write('\033[22;0t')
69 sys.stdout.write('\033]0;%s\007' % title)
70
71
72def _restore_term_title_xterm():

Callers

nothing calls this directly

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected