MCPcopy
hub / github.com/scottbez1/splitflap / write

Method write

thirdparty/panelize.py:1199–1206  ·  view source on GitHub ↗
( self, writer )

Source from the content-addressed store, hash-verified

1197 self.args.append(value)
1198
1199 def write( self, writer ):
1200 if len(self.args) or self.offset.is_set():
1201 writer.begin( self )
1202 for arg in self.args:
1203 writer.write_text( arg )
1204 if self.offset.is_set():
1205 self.write_obj( writer, "offset", False )
1206 writer.end()
1207
1208 def copy( self, trans ):
1209 obj = Drill( self.obj_name )

Callers

nothing calls this directly

Calls 5

beginMethod · 0.80
write_textMethod · 0.80
write_objMethod · 0.80
endMethod · 0.80
is_setMethod · 0.45

Tested by

no test coverage detected