MCPcopy Create free account
hub / github.com/ActiveState/code / write

Method write

recipes/Python/205451_Povray_for_python/recipe-205451.py:25–30  ·  view source on GitHub ↗
(self,*items)

Source from the content-addressed store, hash-verified

23 # blank line if this is a top level end
24 self.writeln( )
25 def write(self,*items):
26 for item in items:
27 if type(item) == str:
28 self.include(item)
29 else:
30 item.write(self)
31 def writeln(self,s=""):
32 #print " "*self.__indent+s
33 self.file.write(" "*self.__indent+s+os.linesep)

Callers 15

__init__Method · 0.95
tutorial31Function · 0.95
watchFunction · 0.45
writeDataFunction · 0.45
generate_listFunction · 0.45
recipe-286234.pyFile · 0.45
recipe-299411.pyFile · 0.45
sendMethod · 0.45
_doSendMethod · 0.45
preparefileMethod · 0.45
__init__Method · 0.45
progressMethod · 0.45

Calls 1

includeMethod · 0.95

Tested by

no test coverage detected