MCPcopy Create free account
hub / github.com/encode/django-rest-framework / _lower_if_str

Method _lower_if_str

rest_framework/fields.py:695–698  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

693
694 @staticmethod
695 def _lower_if_str(value):
696 if isinstance(value, str):
697 return value.lower()
698 return value
699
700 def to_internal_value(self, data):
701 with contextlib.suppress(TypeError):

Callers 2

to_internal_valueMethod · 0.95
to_representationMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected