Commit | Date | |
---|---|---|
2009-08-21 15:45:36 | Tree | |
[r9354]
by
bugman
Simplified the sequence user function class by using the check and base_class modules. |
2009-08-21 15:25:00 | Tree |
[r9353]
by
bugman
Created a base class for the user function classes. This defines the __init__() method for creating the relax help string. |
2009-08-21 15:23:56 | Tree |
2009-08-21 14:55:01 | Tree | |
[r9351]
by
bugman
Added a module containing functions for checking user function args. So far this includes: |
2009-08-21 14:54:29 | Tree |
[r9350]
by
bugman
The Python 2.x idioms have been removed. This was done with the python 2.x to 3.x script with the commands: The change is in preparation for Python 3.0, and relax still works with Python versions 2.4, 2.5, The changes include: Booleans are instances of int, so the user function argument unit tests will be a massive mess! |
2009-08-21 10:07:01 | Tree |
2009-08-21 08:54:20 | Tree | |
[r9348]
by
bugman
The execfile statement has been replaced with a call to the exec(compile()) function. This was done with the python 2.x to 3.x script with the commands: The change is in preparation for Python 3.0, and relax still works with Python versions 2.4, 2.5, execfile(script_file, local) to: exec(compile(open(script_file).read(), script_file, 'exec'), local) Hmmm, not much of a language simplification! |
2009-08-21 08:50:08 | Tree |
[r9347]
by
bugman
The exec statement has been replaced with a call to the exec() function. This was done with the python 2.x to 3.x script with the commands: The change is in preparation for Python 3.0, and relax still works with Python versions 2.4, 2.5, |
2009-08-20 15:48:36 | Tree |
[r9346]
by
bugman
The dictionary keys() return value is now converted into a list. This was done with the python 2.x to 3.x script with the commands: The change is in preparation for Python 3.0, and relax still works with Python versions 2.4, 2.5, |
2009-08-19 16:47:50 | Tree |