File: __init__.py

package info (click to toggle)
python-crcmod 1.7%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 304 kB
  • sloc: python: 1,782; ansic: 671; makefile: 100
file content (8 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (35)
1
2
3
4
5
6
7
8
try:
    from crcmod.crcmod import *
    import crcmod.predefined
except ImportError:
    # Make this backward compatible
    from crcmod import *
    import predefined
__doc__ = crcmod.__doc__