changeset 162:b71995909857 2.01

Bumped the version number to 2.01.1 and slightly cleaned up upreckon-vcs
author Oleg Oshmyan <chortos@inbox.lv>
date Fri, 10 Jun 2011 21:31:56 +0100
parents 43e1f2d5d5a4
children fea8c7853a44
files upreckon/upreckon-vcs
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/upreckon/upreckon-vcs	Fri Jun 10 21:25:38 2011 +0100
+++ b/upreckon/upreckon-vcs	Fri Jun 10 21:31:56 2011 +0100
@@ -7,14 +7,13 @@
 from upreckon import compat
 from upreckon.compat import *
 
-version = '2.01.0 ($$REV$$)'
-parser = optparse.OptionParser(version='Upreckon '+version, epilog='Python 2.5 or newer is required.')
+version = '2.01.1 ($$REV$$)'
+parser = optparse.OptionParser(version='Upreckon '+version, epilog='Python 2.6 or newer is required.')
 parser.add_option('-1', dest='legacy', action='store_true', default=False, help='handle configuration files in a way more compatible with test.py 1.x')
 parser.add_option('-p', '--problem', dest='problems', metavar='PROBLEM', action='append', help='test only the PROBLEM (this option can be specified more than once with different problem names, all of which will be tested)')
 parser.add_option('--list-problems', action='store_true', default=False, help='just list all problem names')
 parser.add_option('-m', '--copy-io', dest='copyonly', action='store_true', default=False, help='create a copy of the input/output files of the last test case for manual testing and exit')
 parser.add_option('-x', '--auto-exit', dest='pause', action='store_false', default=True, help='do not wait for a key to be pressed after finishing testing')
-#parser.add_option('-s', '--save-io', dest='erase', action='store_false', default=True, help='do not delete the copies of input/output files after the last test case; create copies of input files and store output in files even if the solution uses standard I/O; delete the stored input/output files if the solution uses standard I/O and the -c/--cleanup option is specified')
 parser.add_option('-s', '--save-io', dest='erase', action='store_false', default=True, help='do not delete the copies of input/output files after the last test case; create copies of input files and store output in files even if the solution uses standard I/O')
 parser.add_option('-k', '--skim', action='store_true', default=False, help='skip test groups as soon as one test case is failed')
 parser.add_option('--no-time-limits', dest='no_maxtime', action='store_true', default=False, help='disable all time limits')