MCPcopy
hub / github.com/django/django / start_object

Method start_object

django/core/serializers/base.py:166–172  ·  view source on GitHub ↗

Called when serializing of an object starts.

(self, obj)

Source from the content-addressed store, hash-verified

164 pass
165
166 def start_object(self, obj):
167 """
168 Called when serializing of an object starts.
169 """
170 raise NotImplementedError(
171 "subclasses of Serializer must provide a start_object() method"
172 )
173
174 def end_object(self, obj):
175 """

Callers 1

serializeMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected