Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_datetimemodule.c805 const char *tzinfo_pos = p; in parse_isoformat_time() local
807 if (*tzinfo_pos == '+' || *tzinfo_pos == '-') { in parse_isoformat_time()
810 } while (++tzinfo_pos < p_end); in parse_isoformat_time()
812 int rv = parse_hh_mm_ss_ff(dtstr, tzinfo_pos, hour, minute, second, in parse_isoformat_time()
818 else if (tzinfo_pos == p_end) { in parse_isoformat_time()
834 size_t tzlen = p_end - tzinfo_pos; in parse_isoformat_time()
839 int tzsign = (*tzinfo_pos == '-') ? -1 : 1; in parse_isoformat_time()
840 tzinfo_pos++; in parse_isoformat_time()
842 rv = parse_hh_mm_ss_ff(tzinfo_pos, p_end, &tzhour, &tzminute, &tzsecond, in parse_isoformat_time()