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 ncoghlan
Recipients ncoghlan
Date 2012-02-14.23:59:33
SpamBayes Score 2.9698454e-05
Marked as misclassified No
Message-id <1329263974.33.0.235260942954.issue14017@psf.upfronthosting.co.za>
In-reply-to
Content
Updating issue title, since I realised this doesn't work in 3.2 either (the "newline" argument also isn't available for introspection - "newlines" is not the same thing)

Possible API signature:

    _missing = object()
    def rewrap(self, encoding=_missing, errors=_missing, newline=_missing, line_buffering=_missing, write_through=_missing):
        pass

That is, accept the same arguments as __init__ (excluding the buffer argument), with any arguments not explicitly supplied replaced with the values from the current instance.
History
Date User Action Args
2012-02-14 23:59:34ncoghlansetrecipients: + ncoghlan
2012-02-14 23:59:34ncoghlansetmessageid: <1329263974.33.0.235260942954.issue14017@psf.upfronthosting.co.za>
2012-02-14 23:59:33ncoghlanlinkissue14017 messages
2012-02-14 23:59:33ncoghlancreate