mirror of
https://github.com/python/cpython.git
synced 2025-09-19 15:10:58 +00:00
Issue #24773: fix datetime.time constructor docstring
The default value of fold is zero, not True. Fix the docstring of the Python implementation.
This commit is contained in:
parent
423c16b4c3
commit
51b90d28e2
1 changed files with 1 additions and 1 deletions
|
@ -1053,7 +1053,7 @@ class time:
|
||||||
hour, minute (required)
|
hour, minute (required)
|
||||||
second, microsecond (default to zero)
|
second, microsecond (default to zero)
|
||||||
tzinfo (default to None)
|
tzinfo (default to None)
|
||||||
fold (keyword only, default to True)
|
fold (keyword only, default to zero)
|
||||||
"""
|
"""
|
||||||
if isinstance(hour, bytes) and len(hour) == 6 and hour[0]&0x7F < 24:
|
if isinstance(hour, bytes) and len(hour) == 6 and hour[0]&0x7F < 24:
|
||||||
# Pickle support
|
# Pickle support
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue