python-lunardate icon indicating copy to clipboard operation
python-lunardate copied to clipboard

str and repr should use isLeapMonth=True

Open lidaobing opened this issue 5 years ago • 0 comments

>>> a = lunardate.LunarDate(1, 2, 3, isLeapMonth=True)
>>> str(a)
'LunarDate(1, 2, 3, 1)'
>>> repr(a)
'LunarDate(1, 2, 3, 1)'

lidaobing avatar Mar 29 '19 01:03 lidaobing