Thanks for that.  I was very slowly going through these modules and
adding these comments to make it even more obvious.  Now I don't have
to do anything.  The comments are not very important, but it does tell
someone new where these modules come from.  The simpler the relax
source code is (that includes the comments), the better.

Regards,

Edward



On Jan 14, 2008 2:26 AM,  <[EMAIL PROTECTED]> wrote:
> Author: semor
> Date: Mon Jan 14 02:26:39 2008
> New Revision: 4698
>
> URL: http://svn.gna.org/viewcvs/relax?rev=4698&view=rev
> Log:
> Added comments to the imports.
>
>
> Modified:
>     1.3/prompt/angles.py
>     1.3/prompt/command.py
>     1.3/prompt/dasha.py
>     1.3/prompt/eliminate.py
>     1.3/prompt/fix.py
>     1.3/prompt/grace.py
>     1.3/prompt/help.py
>     1.3/prompt/interpreter.py
>     1.3/prompt/jw_mapping.py
>     1.3/prompt/model_selection.py
>     1.3/prompt/monte_carlo.py
>     1.3/prompt/noe.py
>     1.3/prompt/palmer.py
>     1.3/prompt/relax_fit.py
>     1.3/prompt/results.py
>     1.3/prompt/tab_completion.py
>     1.3/prompt/unselect.py
>     1.3/prompt/view.py
>     1.3/prompt/vmd.py
>
> Modified: 1.3/prompt/angles.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/angles.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/angles.py (original)
> +++ 1.3/prompt/angles.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  from relax_errors import RelaxStrError
>
>
>
> Modified: 1.3/prompt/command.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/command.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/command.py (original)
> +++ 1.3/prompt/command.py Mon Jan 14 02:26:39 2008
> @@ -20,9 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> -
> +# Python module imports.
>  import os
>
> +# relax module imports.
>  from relax_errors import RelaxStrError
>
>
>
> Modified: 1.3/prompt/dasha.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/dasha.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/dasha.py (original)
> +++ 1.3/prompt/dasha.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxBinError, RelaxNoneStrError, RelaxStrError
>
>
> Modified: 1.3/prompt/eliminate.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/eliminate.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/eliminate.py (original)
> +++ 1.3/prompt/eliminate.py Mon Jan 14 02:26:39 2008
> @@ -20,10 +20,11 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  from relax_errors import RelaxFunctionError, RelaxListStrError, 
> RelaxNoneStrListError, RelaxNoneTupleError
> -
>  from specific_fns.model_free import Model_free
>
>
>
> Modified: 1.3/prompt/fix.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/fix.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/fix.py (original)
> +++ 1.3/prompt/fix.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  from relax_errors import RelaxBinError, RelaxIntStrError, RelaxStrError
>
>
>
> Modified: 1.3/prompt/grace.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/grace.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/grace.py (original)
> +++ 1.3/prompt/grace.py Mon Jan 14 02:26:39 2008
> @@ -20,10 +20,11 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  from relax_errors import RelaxBinError, RelaxNoneIntStrError, 
> RelaxNoneStrError, RelaxStrError
> -
>  from doc_string import regexp_doc
>  import help
>  from generic_fns import minimise
>
> Modified: 1.3/prompt/help.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/help.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/help.py (original)
> +++ 1.3/prompt/help.py Mon Jan 14 02:26:39 2008
> @@ -20,6 +20,7 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import pydoc
>  import sys
>
>
> Modified: 1.3/prompt/interpreter.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/interpreter.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/interpreter.py (original)
> +++ 1.3/prompt/interpreter.py Mon Jan 14 02:26:39 2008
> @@ -20,6 +20,7 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  from code import InteractiveConsole, softspace
>  from os import F_OK, access
>  import readline
>
> Modified: 1.3/prompt/jw_mapping.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/jw_mapping.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/jw_mapping.py (original)
> +++ 1.3/prompt/jw_mapping.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxStrError
>
>
> Modified: 1.3/prompt/model_selection.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/model_selection.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/model_selection.py (original)
> +++ 1.3/prompt/model_selection.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  from relax_errors import RelaxError, RelaxNoneListError, RelaxStrError
>
>
>
> Modified: 1.3/prompt/monte_carlo.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/monte_carlo.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/monte_carlo.py (original)
> +++ 1.3/prompt/monte_carlo.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxIntError, RelaxNumError, RelaxStrError
>
>
> Modified: 1.3/prompt/noe.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/noe.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/noe.py (original)
> +++ 1.3/prompt/noe.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxNoneIntError, RelaxNoneIntStrError, 
> RelaxNoneStrError, RelaxNumError, RelaxStrError
>
>
> Modified: 1.3/prompt/palmer.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/palmer.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/palmer.py (original)
> +++ 1.3/prompt/palmer.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxBinError, RelaxFloatError, RelaxIntError, 
> RelaxNoneStrError, RelaxStrError
>
>
> Modified: 1.3/prompt/relax_fit.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/relax_fit.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/relax_fit.py (original)
> +++ 1.3/prompt/relax_fit.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxFloatError, RelaxNoneIntError, 
> RelaxNoneStrError, RelaxStrError
>
>
> Modified: 1.3/prompt/results.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/results.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/results.py (original)
> +++ 1.3/prompt/results.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxBinError, RelaxIntError, RelaxNoneStrError, 
> RelaxStrError
>
>
> Modified: 1.3/prompt/tab_completion.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/tab_completion.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/tab_completion.py (original)
> +++ 1.3/prompt/tab_completion.py Mon Jan 14 02:26:39 2008
> @@ -20,6 +20,7 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  from re import match, split
>  from rlcompleter import get_class_members
>
>
> Modified: 1.3/prompt/unselect.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/unselect.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/unselect.py (original)
> +++ 1.3/prompt/unselect.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxBinError, RelaxError, RelaxIntError, 
> RelaxListStrError, RelaxNoneIntStrError, RelaxNoneStrError, 
> RelaxNoneStrListError, RelaxStrError
>
>
> Modified: 1.3/prompt/view.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/view.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/view.py (original)
> +++ 1.3/prompt/view.py Mon Jan 14 02:26:39 2008
> @@ -20,6 +20,7 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
>
>
> Modified: 1.3/prompt/vmd.py
> URL: 
> http://svn.gna.org/viewcvs/relax/1.3/prompt/vmd.py?rev=4698&r1=4697&r2=4698&view=diff
> ==============================================================================
> --- 1.3/prompt/vmd.py (original)
> +++ 1.3/prompt/vmd.py Mon Jan 14 02:26:39 2008
> @@ -20,8 +20,10 @@
>  #                                                                            
>  #
>  
> ###############################################################################
>
> +# Python module imports.
>  import sys
>
> +# relax module imports.
>  import help
>  from relax_errors import RelaxStrError
>
>
>
> _______________________________________________
> relax (http://nmr-relax.com)
>
> This is the relax-commits mailing list
> [EMAIL PROTECTED]
>
> To unsubscribe from this list, get a password
> reminder, or change your subscription options,
> visit the list information page at
> https://mail.gna.org/listinfo/relax-commits
>

_______________________________________________
relax (http://nmr-relax.com)

This is the relax-devel mailing list
[email protected]

To unsubscribe from this list, get a password
reminder, or change your subscription options,
visit the list information page at
https://mail.gna.org/listinfo/relax-devel

Reply via email to