##// END OF EJS Templates
Ensure that we don't damage the __builtins__ object after %run....
Ensure that we don't damage the __builtins__ object after %run. This fixes lp:364853. Also added a standalone set of testing.tools utilities that can be used in place of nose.tools to get proper test generators in object oriented tests.

File last commit:

r1852:37edbe78
r1955:51bbbb6f
Show More
platutils_posix.py
32 lines | 945 B | text/x-python | PythonLexer
# -*- 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
ignore_termtitle = True
def _dummy_op(*a, **b):
""" A no-op function """
def _set_term_title_xterm(title):
""" Change virtual terminal title in xterm-workalikes """
sys.stdout.write('\033]0;%s\007' % title)
if os.environ.get('TERM','') == 'xterm':
set_term_title = _set_term_title_xterm
else:
set_term_title = _dummy_op