diff --git a/doc/changes.rst b/doc/changes.rst index 90ef5b8..2d7b14c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -1,6 +1,13 @@ Changes ======= +0.4 (next) +---------- + +* Now supports Python 3.2 + +* String types handling is clearer. + 0.3 (2012-04-20) ---------------- diff --git a/doc/conf.py b/doc/conf.py index 4fa1933..df0b832 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -230,7 +230,10 @@ wsme_protocols = [ 'restjson', 'restxml', 'soap', 'extdirect' ] -intersphinx_mapping = {'python': ('http://docs.python.org/', None)} +intersphinx_mapping = { + 'python': ('http://docs.python.org/', None), + 'six': ('http://packages.python.org/six/', None), +} def setup(app): diff --git a/doc/types.rst b/doc/types.rst index 190d9e4..f2c7475 100644 --- a/doc/types.rst +++ b/doc/types.rst @@ -11,13 +11,16 @@ the different protocols will map to theirs own basic types. The native types are : - - .. wsme:type:: str + - .. wsme:type:: bytes - A non unicode string (:py:class:`str`) + A pure-ascii string (:py:class:`wsme.types.bytes` which is + :py:class:`str` in Python 2 and :py:class:`bytes` in Python 3). + - - .. wsme:type:: unicode + - .. wsme:type:: text - A unicode string (:py:class:`unicode`) + A unicode string (:py:class:`wsme.types.text` which is + :py:class:`unicode` in Python 2 and :py:class:`str` in Python 3). - .. wsme:type:: int diff --git a/wsme/release.py b/wsme/release.py index a225882..3d667d7 100644 --- a/wsme/release.py +++ b/wsme/release.py @@ -1,5 +1,5 @@ name = "WSME" -version = "0.3" +version = "0.4" description = """Web Services Made Easy makes it easy to \ implement multi-protocol webservices."""