6.16.4. Data Tangler

The data tangler simply write output to the attached sink file and weaver, it does not parse the input in any way or emit any line numbers. There is no associated comment tangler either.
Start python section to interscript/tanglers/data.py[1 /1 ]
     1: #line 204 "tanglers.ipk"
     2: #--------------------------------------------------
     3: # data tangler: write to a file
     4: # can not emit source line cross references
     5: from interscript.tanglers.base import tangler_base
     6: 
     7: class data_tangler(tangler_base):
     8:   pass
     9: 
End python section to interscript/tanglers/data.py[1]