Hi, noob question but why is the replace function not mentioned in the list of available methods in the docstring of the date class?
class date:
“”“Concrete date type.
Constructors:
new()
fromtimestamp()
today()
fromordinal()
Operators:
repr, str
eq, le, lt, ge, gt, hash
add, radd, sub (add/radd only with timedelta arg)
Methods:
timetuple()
toordinal()
weekday()
isoweekday(), isocalendar(), isoformat()
ctime()
strftime()
Properties (readonly):
year, month, day
“””