Package prompt :: Module sys_info
[hide private]
[frames] | no frames]

Source Code for Module prompt.sys_info

 1  ############################################################################### 
 2  #                                                                             # 
 3  # Copyright (C) 2011 Edward d'Auvergne                                        # 
 4  #                                                                             # 
 5  # This file is part of the program relax.                                     # 
 6  #                                                                             # 
 7  # relax is free software; you can redistribute it and/or modify               # 
 8  # it under the terms of the GNU General Public License as published by        # 
 9  # the Free Software Foundation; either version 2 of the License, or           # 
10  # (at your option) any later version.                                         # 
11  #                                                                             # 
12  # relax is distributed in the hope that it will be useful,                    # 
13  # but WITHOUT ANY WARRANTY; without even the implied warranty of              # 
14  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               # 
15  # GNU General Public License for more details.                                # 
16  #                                                                             # 
17  # You should have received a copy of the GNU General Public License           # 
18  # along with relax; if not, write to the Free Software                        # 
19  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA   # 
20  #                                                                             # 
21  ############################################################################### 
22   
23  # Module docstring. 
24  """Module containing the 'sys_info' user function class.""" 
25  __docformat__ = 'plaintext' 
26   
27  # relax module imports. 
28  from base_class import Basic_class, _build_doc 
29  from generic_fns.sys_info import sys_info 
30   
31   
32 -class Sys_info(Basic_class):
33 """Class containing the sys_info function.""" 34
35 - def sys_info(self):
36 # Function intro text. 37 if self._exec_info.intro: 38 text = self._exec_info.ps3 + "sys_info()" 39 print(text) 40 41 # Execute the functional code. 42 sys_info()
43 44 sys_info._doc_title = "Display all system information relating to this version of relax." 45 sys_info._doc_title_short = "Display system information." 46 sys_info._doc_desc = """ 47 This will display all of the relax, Python, python package and hardware information currently being used by relax. This is useful for seeing if all packages are up to date and if the correct software versions are being used. It is also very useful information for reporting relax bugs. 48 """ 49 _build_doc(sys_info)
50