[issue12160] codecs doc: what is StreamCodec?

2015-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 296a09614f31 by Berker Peksag in branch '2.7': Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Codec.decode() docs. https://hg.python.org/cpython/rev/296a09614f31 -- ___ Python t

[issue12160] codecs doc: what is StreamCodec?

2015-07-30 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Nick! -- nosy: +berker.peksag resolution: -> fixed stage: commit review -> resolved status: open -> closed type: -> behavior versions: +Python 3.5, Python 3.6 -Python 3.1, Python 3.2 ___ Python

[issue12160] codecs doc: what is StreamCodec?

2015-07-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset f9694502f07c by Berker Peksag in branch '3.4': Issue #12160: Fix incorrect StreamCodec references in Codec.encode() and Codec.decode() docs. https://hg.python.org/cpython/rev/f9694502f07c New changeset 98631f35426f by Berker Peksag in branch '3.5':

[issue12160] codecs doc: what is StreamCodec?

2015-04-09 Thread R. David Murray
Changes by R. David Murray : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue12160] codecs doc: what is StreamCodec?

2015-01-13 Thread Martin Panter
Martin Panter added the comment: This patch looks simple and uncontroversial. I think it could be merged. -- nosy: +vadmium versions: +Python 3.4 ___ Python tracker ___ _

[issue12160] codecs doc: what is StreamCodec?

2013-03-18 Thread Nick Weinhold
Nick Weinhold added the comment: I've noticed that this issue hasn't been looked at in a while, and from looking through the current docucmentation, it looks like this issue still exists. I've uploaded a patch with the changes that Marc-Andre mentioned. -- nosy: +ncweinhold Added file

[issue12160] codecs doc: what is StreamCodec?

2011-06-26 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Victor, would you update the patch? -- nosy: +sandro.tosi ___ Python tracker ___ ___ Python-bugs-li

[issue12160] codecs doc: what is StreamCodec?

2011-05-24 Thread Éric Araujo
Changes by Éric Araujo : -- assignee: -> docs@python components: +Documentation nosy: +docs@python stage: -> patch review versions: +Python 2.7, Python 3.1, Python 3.2 ___ Python tracker _

[issue12160] codecs doc: what is StreamCodec?

2011-05-23 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: STINNER Victor wrote: > > New submission from STINNER Victor : > > Codec.encode() and Codec.decode() refer to StreamCode, but I cannot find this > class in the doc nor in the code. > > I suppose that it should be replaced by IncrementalEncoder and > Inc

[issue12160] codecs doc: what is StreamCodec?

2011-05-23 Thread STINNER Victor
New submission from STINNER Victor : Codec.encode() and Codec.decode() refer to StreamCode, but I cannot find this class in the doc nor in the code. I suppose that it should be replaced by IncrementalEncoder and IncrementalDecoder. If I'm correct, see attached patch. -- files: codecs_