Codebase list python-msgpack / e0eae4e4-bf1b-4794-982d-abdccd07b309/main msgpack / _cmsgpack.pyx
e0eae4e4-bf1b-4794-982d-abdccd07b309/main

Tree @e0eae4e4-bf1b-4794-982d-abdccd07b309/main (Download .tar.gz)

_cmsgpack.pyx @e0eae4e4-bf1b-4794-982d-abdccd07b309/mainraw · history · blame

# coding: utf-8
#cython: embedsignature=True, c_string_encoding=ascii, language_level=3
from cpython.datetime cimport import_datetime, datetime_new
import_datetime()

import datetime
cdef object utc = datetime.timezone.utc
cdef object epoch = datetime_new(1970, 1, 1, 0, 0, 0, 0, tz=utc)

include "_packer.pyx"
include "_unpacker.pyx"