R. David Murray added the comment:
FYI: the development documentation tracks the tip of the default branch, so it
sometimes documents features that have not yet been released even in an alpha.
When we hit the first beta, *then* if the code doesn't match the docs there is
a bug :)
--
Ezio Melotti added the comment:
This a very recent change, see #19132.
Python 3.4.0a3+ (default:f0416b2b5654, Oct 5 2013, 02:10:25)
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pprint
>>> pprint.pprint(3, compact=True)
3
--
nos
New submission from Alexis Layton:
Documentation for 3.4 states that the compact keyword-only argument has been
added to 3.4. However:
Python 3.4.0a3 (default, Oct 2 2013, 14:05:02)
[GCC 4.6.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pprint
>