File: dummy-emacs

package info (click to toggle)
flycheck 32~git.20200527.9c435db3-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,808 kB
  • sloc: lisp: 16,137; python: 739; makefile: 245; cpp: 24; ruby: 23; perl: 21; ada: 17; f90: 16; haskell: 15; javascript: 15; erlang: 14; xml: 14; ansic: 12; sh: 10; php: 9; tcl: 8; fortran: 3; vhdl: 2; sql: 1; awk: 1
file content (13 lines) | stat: -rwxr-xr-x 270 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python3
# -*- coding: utf-8; -*-

from __future__ import print_function

import sys
import re

filename = sys.argv[-1]

print('{0}:17:4:Error: t is not true!'.format(filename))
print('{0}:19:11:Warning: This is a stupid message'.format(filename))
sys.exit(1)