Changeset 3387 for pykota/trunk

Show
Ignore:
Timestamp:
06/24/08 00:27:07 (16 years ago)
Author:
jerome
Message:

Fixed incorrect docstrings.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/commandline.py

    r3369 r3387  
    5858         
    5959def checkandset_positivefloat(option, opt, value, optionparser) :     
    60     """Checks if an option argument is a positive integer and validates the option if it is the case.""" 
     60    """Checks if an option argument is a positive float and validates the option if it is the case.""" 
    6161    if not (value >= 0.0) : 
    6262        loginvalidparam(opt, value, option.default, \ 
     
    7676 
    7777def load_arguments_file(option, opt, value, optionparser) :     
    78     """Checks if an option argument is comprised between 0.0 included and 100.0 not included, and validates the option if it is the case.""" 
     78    """Loads arguments from a file, one per line.""" 
    7979    setattr(optionparser.values, option.dest, value) 
    8080    try :