MCPcopy Index your code
hub / github.com/python-openxml/python-docx / _parse_value

Method _parse_value

src/docx/image/tiff.py:211–216  ·  view source on GitHub ↗

Return the value of this field parsed from `stream_rdr` at `offset`. Intended to be overridden by subclasses.

(cls, stream_rdr, offset, value_count, value_offset)

Source from the content-addressed store, hash-verified

209
210 @classmethod
211 def _parse_value(cls, stream_rdr, offset, value_count, value_offset):
212 """Return the value of this field parsed from `stream_rdr` at `offset`.
213
214 Intended to be overridden by subclasses.
215 """
216 return "UNIMPLEMENTED FIELD TYPE" # pragma: no cover
217
218 @property
219 def tag(self):

Calls

no outgoing calls