Lines Matching refs:SET
254 #define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
256 SET(0, p->tm_year + 1900);
257 SET(1, p->tm_mon + 1); /* Want January == 1 */
258 SET(2, p->tm_mday);
259 SET(3, p->tm_hour);
260 SET(4, p->tm_min);
261 SET(5, p->tm_sec);
262 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
263 SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */
264 SET(8, p->tm_isdst);
265 #undef SET
392 * asctime(). Return 1 if all values are valid, otherwise set an exception
736 * cannot remain set to -1 if mktime succeeded. */
781 fall back to UTC. If the TZ environment variable is not set, the local\n\
782 timezone is set to the systems best guess of wallclock time.\n\
956 /* Accept 2-digit dates unless PYTHONY2K is set and non-empty */
968 /* Set, or reset, module variables like time.timezone */
1032 set an exception; else return 0. */