are we python or what? :D

This commit is contained in:
Nikos Kouremenos 2006-03-26 19:34:31 +00:00
parent 66029d652e
commit 21bba13bc6
1 changed files with 7 additions and 4 deletions

View File

@ -23,12 +23,15 @@ import copy
import i18n
_ = i18n._
OPT_TYPE = 0
OPT_VAL = 1
OPT_DESC = 2
(
OPT_TYPE,
OPT_VAL,
OPT_DESC,
# If OPT_RESTART is True - we need restart to use our changed option
# OPT_DESC also should be there
OPT_RESTART = 3
OPT_RESTART,
) = range(4)
opt_int = [ 'integer', 0 ]
opt_str = [ 'string', 0 ]