1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-07-26 08:00:07 +03:00

Add docstring to json wrapper module

This commit is contained in:
Ryan P Kilby 2017-07-11 11:53:20 -04:00 committed by Carlton Gibson
parent 215248c042
commit ea894cd90a

View File

@ -1,3 +1,10 @@
"""
Wrapper for the builtin json module that ensures compliance with the JSON spec.
REST framework should always import this wrapper module in order to maintain
spec-compliant encoding/decoding. Support for non-standard features should be
handled by users at the renderer and parser layer.
"""
from __future__ import absolute_import from __future__ import absolute_import