MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __init__

Method __init__

lib/matplotlib/backends/backend_svg.py:114–121  ·  view source on GitHub ↗
(self, file)

Source from the content-addressed store, hash-verified

112 """
113
114 def __init__(self, file):
115 self.__write = file.write
116 if hasattr(file, "flush"):
117 self.flush = file.flush
118 self.__open = 0 # true if start tag is open
119 self.__tags = []
120 self.__data = []
121 self.__indentation = " " * 64
122
123 def __flush(self, indent=True):
124 # flush internal buffers

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected