@@ -923,7 +923,7 @@ def __new__(
923
923
microsecond : int = 0 ,
924
924
tzinfo : Optional [tzinfo ] = None ,
925
925
* ,
926
- fold : int = 0
926
+ fold : int = 0 ,
927
927
) -> "time" :
928
928
_check_time_fields (hour , minute , second , microsecond , fold )
929
929
_check_tzinfo_arg (tzinfo )
@@ -994,6 +994,8 @@ def fromisoformat(cls, time_string: str) -> "time":
994
994
Valid format is ``HH[:MM[:SS[.fff[fff]]]][+HH:MM[:SS[.ffffff]]]``
995
995
996
996
"""
997
+ if time_string [- 1 ] == "Z" :
998
+ time_string = f"{ time_string [:- 1 ]} +00:00"
997
999
# Store the original string in an error message
998
1000
original_string = time_string
999
1001
match = _re .match (r"(.*)[\-\+]" , time_string )
@@ -1254,7 +1256,7 @@ def __new__(
1254
1256
microsecond : int = 0 ,
1255
1257
tzinfo : Optional [tzinfo ] = None ,
1256
1258
* ,
1257
- fold : int = 0
1259
+ fold : int = 0 ,
1258
1260
) -> "datetime" :
1259
1261
_check_date_fields (year , month , day )
1260
1262
_check_time_fields (hour , minute , second , microsecond , fold )
@@ -1599,7 +1601,7 @@ def replace(
1599
1601
microsecond : Optional [str ] = None ,
1600
1602
tzinfo : bool = True ,
1601
1603
* ,
1602
- fold : Optional [int ] = None
1604
+ fold : Optional [int ] = None ,
1603
1605
) -> "datetime" :
1604
1606
"""Return a datetime with the same attributes,
1605
1607
except for those attributes given new values by
0 commit comments