In the 2.x (and 3.0) version of the python documentation, the arguments for datetime.time are listed as follows:<br>datetime.time(hour[, minute[, second[, microsecond[, tzinfo]]]])<div><br>While the builtin python help() function says this:<br>
time([hour[, minute[, second[, microsecond[, tzinfo]]]]])<br></div><div><br></div><div>The online documentation seems to suggest that "hour" is a required argument, which isn't the case. </div>