Home
last modified time | relevance | path

Searched refs:ayear (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Ddatetimemodule.c184 const unsigned int ayear = (unsigned int)year; in is_leap() local
185 return ayear % 4 == 0 && (ayear % 100 != 0 || ayear % 400 == 0); in is_leap()
/external/python/cpython3/Modules/
D_datetimemodule.c212 const unsigned int ayear = (unsigned int)year; in is_leap() local
213 return ayear % 4 == 0 && (ayear % 100 != 0 || ayear % 400 == 0); in is_leap()