slashmili / python-jalali

Jalali calendar binding for Python based on Python's datetime module
http://pypi.python.org/pypi/jdatetime/
Other
339 stars 47 forks source link

isleap function #78

Closed FakeShell closed 3 years ago

FakeShell commented 3 years ago

hey so i was using this library and testing different functions but i cant get isleap to work

can you give me a syntax example? i have tried: jdatetime.datetime.isleap(1395) jdatetime.date.isleap(1395) jdatetime.datetime().isleap(1395) jdatetime.date().isleap(1395) jdatetime.datetime(1395).isleap() jdatetime.date(1395).isleap() thanks

hramezani commented 3 years ago

Hey,

You can check it like:

kabiseh_year = jdatetime.date(1391, 12, 30)
kabiseh_year.isleap()
FakeShell commented 3 years ago

thanks