Package qm :: Module platform_unix
[hide private]
[frames] | no frames]

Module platform_unix

source code

Classes [hide private]
  SignalException
An exception raised in response to a signal.
Functions [hide private]
 
open_in_browser(url)
Open a browser window and point it at 'url'.
source code
 
get_signal_name(signal_number)
Return the name for signal 'signal_number'.
source code
 
install_signal_handler(signal_number)
Install a handler to translate a signal into an exception.
source code
 
_signal_handler(signal_number, execution_frame)
Generic signal handler that raises an exception.
source code
 
get_host_name()
Return the name of this computer.
source code
 
_initialize()
Perform module initialization.
source code
Variables [hide private]
  default_shell = ['/bin/bash', '-norc', '-noprofile']
  __package__ = 'qm'
Function Details [hide private]

open_in_browser(url)

source code 

Open a browser window and point it at 'url'.

The browser is run in a separate, independent process.

get_signal_name(signal_number)

source code 

Return the name for signal 'signal_number'.

returns -- The signal's name, or 'None'.

install_signal_handler(signal_number)

source code 

Install a handler to translate a signal into an exception.

The signal handler raises a 'SignalException' exception in response to a signal.