##// END OF EJS Templates
rollback to working
rollback to working

File last commit:

r1939:c31442ed merge
r1939:c31442ed merge
Show More
platutils_posix.py
34 lines | 986 B | text/x-python | PythonLexer
/ IPython / platutils_posix.py
ville
initialization (no svn history)
r988 # -*- coding: utf-8 -*-
""" Platform specific utility functions, posix version
Importing this module directly is not portable - rather, import platutils
to use these functions in platform agnostic fashion.
"""
#*****************************************************************************
# Copyright (C) 2001-2006 Fernando Perez <fperez@colorado.edu>
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#*****************************************************************************
import sys
import os
Fernando Perez
Make set_term_title() default to no-op, as it can cause problems....
r1852 ignore_termtitle = True
ville
initialization (no svn history)
r988
def _dummy_op(*a, **b):
""" A no-op function """
def _set_term_title_xterm(title):
""" Change virtual terminal title in xterm-workalikes """
Ville M. Vainio
freeze_term_title for platutils_posix
r1012
Fernando Perez
Make set_term_title() default to no-op, as it can cause problems....
r1852 sys.stdout.write('\033]0;%s\007' % title)
ville
initialization (no svn history)
r988
if os.environ.get('TERM','') == 'xterm':
set_term_title = _set_term_title_xterm
else:
set_term_title = _dummy_op
Tom Fetherston
rollback to working
r1939 def term_clear():
os.system('clear')