Mercurial > hgrepos > Python > apps > py-cutils
view cutils/crcmod/predefined.py @ 181:c4f737ec368c
Add a unittest for the vendored crcmod2 (in cutils.crcmod)
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 13 Jan 2025 04:15:08 +0100 |
| parents | d038f0a9ba49 |
| children | 5c5c0c5a7402 |
line wrap: on
line source
# -*- coding: utf-8; -*- from __future__ import absolute_import import sys if sys.version_info[0] < 3: from .python2.predefined import * from .python2.predefined import __doc__ else: from .python3.predefined import * from .python3.predefined import __doc__ del sys
