MCPcopy Index your code
hub / github.com/python/cpython / end_framing

Method end_framing

Lib/pickle.py:209–212  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

207 self.current_frame = io.BytesIO()
208
209 def end_framing(self):
210 if self.current_frame and self.current_frame.tell() > 0:
211 self.commit_frame(force=True)
212 self.current_frame = None
213
214 def commit_frame(self, force=False):
215 if self.current_frame:

Callers 2

optimizeFunction · 0.80
dumpMethod · 0.80

Calls 2

commit_frameMethod · 0.95
tellMethod · 0.45

Tested by

no test coverage detected