File: __init__.py

package info (click to toggle)
python-crcmod 1.7-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 568 kB
  • sloc: python: 1,782; ansic: 671; makefile: 112
file content (8 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (44)
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__