Commit 2a38aa72 by Tom Christie

Version 2.3.4

parent fcaee6e5
...@@ -40,7 +40,9 @@ You can determine your currently installed version using `pip freeze`: ...@@ -40,7 +40,9 @@ You can determine your currently installed version using `pip freeze`:
## 2.3.x series ## 2.3.x series
### Master ### 2.3.4
**Date**: 24th May 2013
* Serializer fields now support `label` and `help_text`. * Serializer fields now support `label` and `help_text`.
* Added `UnicodeJSONRenderer`. * Added `UnicodeJSONRenderer`.
......
__version__ = '2.3.3' __version__ = '2.3.4'
VERSION = __version__ # synonym VERSION = __version__ # synonym
......
...@@ -507,10 +507,7 @@ class BrowsableAPIRenderer(BaseRenderer): ...@@ -507,10 +507,7 @@ class BrowsableAPIRenderer(BaseRenderer):
def render(self, data, accepted_media_type=None, renderer_context=None): def render(self, data, accepted_media_type=None, renderer_context=None):
""" """
Renders *obj* using the :attr:`template` set on the class. Render the HTML for the browsable API representation.
The context used in the template contains all the information
needed to self-document the response to this request.
""" """
accepted_media_type = accepted_media_type or '' accepted_media_type = accepted_media_type or ''
renderer_context = renderer_context or {} renderer_context = renderer_context or {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment