File: null.py

package info (click to toggle)
felix 1.1.1-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,992 kB
  • ctags: 1,178
  • sloc: python: 7,260; makefile: 408; sh: 58
file content (9 lines) | stat: -rw-r--r-- 233 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#line 153 "interscript/src/sink_drivers.ipk"
from interscript.drivers.sinks.base import sink_base
class null_sink(sink_base):
  def __init__(self):
    sink_base.__init__(self,name='null sink')

  def raw_write(self,line):
    pass