Kaydet (Commit) fbeb1a94 authored tarafından Éric Araujo's avatar Éric Araujo

Merge 3.1

...@@ -279,7 +279,7 @@ For example, if the :file:`setup.py` script is changed like this:: ...@@ -279,7 +279,7 @@ For example, if the :file:`setup.py` script is changed like this::
Where the long description is broken, ``check`` will be able to detect it Where the long description is broken, ``check`` will be able to detect it
by using the :mod:`docutils` parser:: by using the :mod:`docutils` parser::
$ pythontrunk setup.py check --restructuredtext $ python setup.py check --restructuredtext
running check running check
warning: check: Title underline too short. (line 2) warning: check: Title underline too short. (line 2)
warning: check: Could not finish the parsing. warning: check: Could not finish the parsing.
......
...@@ -34,7 +34,7 @@ Encoding basic Python object hierarchies:: ...@@ -34,7 +34,7 @@ Encoding basic Python object hierarchies::
Compact encoding:: Compact encoding::
>>> import json >>> import json
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',',':')) >>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':'))
'[1,2,3,{"4":5,"6":7}]' '[1,2,3,{"4":5,"6":7}]'
Pretty printing:: Pretty printing::
......
...@@ -31,7 +31,7 @@ Encoding basic Python object hierarchies:: ...@@ -31,7 +31,7 @@ Encoding basic Python object hierarchies::
Compact encoding:: Compact encoding::
>>> import json >>> import json
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',',':')) >>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':'))
'[1,2,3,{"4":5,"6":7}]' '[1,2,3,{"4":5,"6":7}]'
Pretty printing:: Pretty printing::
......
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