This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Arfrever, eric.araujo, ezio.melotti, flox, giampaolo.rodola, pitrou, python-dev, rhettinger, terry.reedy, tshepang, vstinner
Date 2012-07-07.19:29:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1341689360.07.0.812248273752.issue13248@psf.upfronthosting.co.za>
In-reply-to
Content
We do not document removals after they are done as they are not an issue for back-compatibility (unlike changes and additions).

Deprecation Warnings are optionally available for checking forward-compatibility. Deprecations are sometimes noted in the regular text flow with things like "encodestring is a deprecated alias", but they are not set off with separate versionchanged: notices, as nothing has changed yet. Some deprecated features are not even documented.

The 'version' arg of class ArgumentParser is already not documented in 3.2, which is why the patch does not change argparse.rst.

"A third argument, max_buffer_size, is supported, but unused and deprecated." and "A fourth argument, max_buffer_size, is supported, but unused and deprecated." is enough for that parameter (and the patch removes those lines -- the param was already left out of the signature).
History
Date User Action Args
2012-07-07 19:29:20terry.reedysetrecipients: + terry.reedy, rhettinger, pitrou, vstinner, giampaolo.rodola, ezio.melotti, eric.araujo, Arfrever, flox, tshepang, python-dev
2012-07-07 19:29:20terry.reedysetmessageid: <1341689360.07.0.812248273752.issue13248@psf.upfronthosting.co.za>
2012-07-07 19:29:15terry.reedylinkissue13248 messages
2012-07-07 19:29:15terry.reedycreate