mailr6328 - /1.3/prompt/interpreter.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on June 08, 2008 - 01:01:
Author: bugman
Date: Sun Jun  8 01:01:00 2008
New Revision: 6328

URL: http://svn.gna.org/viewcvs/relax?rev=6328&view=rev
Log:
Added a module docstring and rearranged imports in prompt.interpreter.


Modified:
    1.3/prompt/interpreter.py

Modified: 1.3/prompt/interpreter.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/prompt/interpreter.py?rev=6328&r1=6327&r2=6328&view=diff
==============================================================================
--- 1.3/prompt/interpreter.py (original)
+++ 1.3/prompt/interpreter.py Sun Jun  8 01:01:00 2008
@@ -20,6 +20,9 @@
 #                                                                            
 #
 
###############################################################################
 
+# Module docstring.
+"""The prompt based relax user interface (UI)."""
+
 # Python module imports.
 from code import InteractiveConsole, softspace
 from os import F_OK, access
@@ -28,15 +31,13 @@
     readline_avail = True
 except ImportError:
     readline_avail = False
-
-#import signal
 import sys
+
+# Python modules accessible on the command prompt.
+from math import pi
 
 # RelaxError system.
 from relax_errors import AllRelaxErrors, RelaxBinError, RelaxError, 
RelaxNoneError, RelaxStrError
-
-# Python modules accessible on the command prompt.
-from math import pi
 
 # Auxiliary modules.
 from help import _Helper, _Helper_python




Related Messages


Powered by MHonArc, Updated Sun Jun 08 01:20:12 2008