Skip to content

Commit de6f859

Browse files
Fix docsting comment
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent 210b649 commit de6f859

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Lib/_strptime.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -518,10 +518,10 @@ def _calc_julian_from_U_or_W(year, week_of_year, day_of_week, week_starts_Mon):
518518

519519

520520
def _strptime(data_string, format="%a %b %d %H:%M:%S %Y"):
521-
"""Return a 3-tuple consisting of a time struct, an int containing
522-
the number of microseconds and an int containing
523-
a mictoseconds part of the GMT offset based on the input string
524-
and the format string."""
521+
"""Return a 3-tuple consisting of a tuple with time components,
522+
an int containing the number of microseconds, and an int
523+
containing the microseconds part of the GMT offset, based on the
524+
input string and the format string."""
525525

526526
for index, arg in enumerate([data_string, format]):
527527
if not isinstance(arg, str):

0 commit comments

Comments
 (0)