MCPcopy Index your code
hub / github.com/RustPython/RustPython / end_framing

Method end_framing

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

Source from the content-addressed store, hash-verified

203 self.current_frame = io.BytesIO()
204
205 def end_framing(self):
206 if self.current_frame and self.current_frame.tell() > 0:
207 self.commit_frame(force=True)
208 self.current_frame = None
209
210 def commit_frame(self, force=False):
211 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