Version 2.3.4

This commit is contained in:
Tom Christie 2013-05-24 23:55:59 +01:00
parent fcaee6e580
commit 2a38aa7291
3 changed files with 5 additions and 6 deletions

View File

@ -40,7 +40,9 @@ You can determine your currently installed version using `pip freeze`:
## 2.3.x series
### Master
### 2.3.4
**Date**: 24th May 2013
* Serializer fields now support `label` and `help_text`.
* Added `UnicodeJSONRenderer`.

View File

@ -1,4 +1,4 @@
__version__ = '2.3.3'
__version__ = '2.3.4'
VERSION = __version__ # synonym

View File

@ -507,10 +507,7 @@ class BrowsableAPIRenderer(BaseRenderer):
def render(self, data, accepted_media_type=None, renderer_context=None):
"""
Renders *obj* using the :attr:`template` set on the class.
The context used in the template contains all the information
needed to self-document the response to this request.
Render the HTML for the browsable API representation.
"""
accepted_media_type = accepted_media_type or ''
renderer_context = renderer_context or {}