File: test-module

package info (click to toggle)
python-rfc3161ng 2.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 188 kB
  • sloc: python: 573; makefile: 3
file content (11 lines) | stat: -rwxr-xr-x 135 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/python3
#
# Check if module can be loaded

import rfc3161ng

def main():
    exit(0)

if '__main__' == __name__:
    main()