Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fbeb1a9

Browse files
committed
Merge 3.1
2 parents cae1be8 + 5348b63 commit fbeb1a9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/distutils/examples.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ For example, if the :file:`setup.py` script is changed like this::
279279
Where the long description is broken, ``check`` will be able to detect it
280280
by using the :mod:`docutils` parser::
281281

282-
$ pythontrunk setup.py check --restructuredtext
282+
$ python setup.py check --restructuredtext
283283
running check
284284
warning: check: Title underline too short. (line 2)
285285
warning: check: Could not finish the parsing.

Doc/library/json.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Encoding basic Python object hierarchies::
3434
Compact encoding::
3535

3636
>>> import json
37-
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',',':'))
37+
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':'))
3838
'[1,2,3,{"4":5,"6":7}]'
3939

4040
Pretty printing::

Lib/json/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
Compact encoding::
3232
3333
>>> import json
34-
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',',':'))
34+
>>> json.dumps([1,2,3,{'4': 5, '6': 7}], separators=(',', ':'))
3535
'[1,2,3,{"4":5,"6":7}]'
3636
3737
Pretty printing::

0 commit comments

Comments
 (0)