[issue26050] Add new StreamReader.readuntil() method

2019-09-12 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: StreamReader and StreamWriter were merged to Stream with issue36889 and there were also docs added for it along with asyncio docs rewritten. I am closing this as fixed. Feel free to reopen if needed. Thanks. -- nosy: +xtreak resolution:

[issue26050] Add new StreamReader.readuntil() method

2016-09-16 Thread Марк Коренберг
Марк Коренберг added the comment: It needs to compare python functoin(s) docstrings with separate documentation. All information from docstrings should also be written in separate docs. Will compare later. -- ___ Python tracker

[issue26050] Add new StreamReader.readuntil() method

2016-09-15 Thread Yury Selivanov
Yury Selivanov added the comment: Looks like we already have docs for readuntil. Mark, could you please check if we have some docs missing (or just close the issue)? -- ___ Python tracker

[issue26050] Add new StreamReader.readuntil() method

2016-08-19 Thread Martin Panter
Martin Panter added the comment: Also it looks like the b'\n' default confuses Sphinx. Maybe it needs extra escaping? -- ___ Python tracker ___

[issue26050] Add new StreamReader.readuntil() method

2016-08-19 Thread Martin Panter
Martin Panter added the comment: In revision 83450939b106, Yury added some documentation for readuntil(). I am not familiar with this StreamReader class, but maybe Mark or someone else can check if the remaining changes in his patch are still useful. I can suggest some spelling and wording

[issue26050] Add new StreamReader.readuntil() method

2016-01-12 Thread Марк Коренберг
Changes by Марк Коренберг : -- keywords: +patch Added file: http://bugs.python.org/file41595/asyncio-stream-doc-preliminary.patch ___ Python tracker

[issue26050] Add new StreamReader.readuntil() method

2016-01-12 Thread Марк Коренберг
Марк Коренберг added the comment: Attached patch, but did not compile documentation until text is validated. These descriptions are just copies of docstrings of corresponding functions. -- ___ Python tracker

[issue26050] Add new StreamReader.readuntil() method

2016-01-11 Thread Yury Selivanov
Changes by Yury Selivanov : -- Removed message: http://bugs.python.org/msg257983 ___ Python tracker ___

[issue26050] Add new StreamReader.readuntil() method

2016-01-11 Thread Roundup Robot
Roundup Robot added the comment: New changeset db11d0db1598 by Yury Selivanov in branch '3.4': Issue #26050: Add asyncio.StreamReader.readuntil() method. https://hg.python.org/cpython/rev/db11d0db1598 New changeset a6288fe5420f by Yury Selivanov in branch '3.5': Merge 3.4 (Issue #26050)

[issue26050] Add new StreamReader.readuntil() method

2016-01-11 Thread Yury Selivanov
Yury Selivanov added the comment: Leaving this issue open until we have the docs committed. -- ___ Python tracker ___

[issue26050] Add new StreamReader.readuntil() method

2016-01-11 Thread Yury Selivanov
Yury Selivanov added the comment: Sorry, posted my previous message here by mistake (it was for issue #26081). -- ___ Python tracker ___

[issue26050] Add new StreamReader.readuntil() method

2016-01-11 Thread Yury Selivanov
Yury Selivanov added the comment: Some info on this: https://github.com/python/asyncio/issues/282#issuecomment-155957235 Long story short, Future implemented in C can speedup some asyncio code up to 25%. I'm attaching a patch with a WIP implementation. There are some failing assertions

[issue26050] Add new StreamReader.readuntil() method

2016-01-08 Thread Марк Коренберг
New submission from Марк Коренберг: See code discussion here: https://github.com/python/asyncio/pull/297 -- components: asyncio messages: 257776 nosy: gvanrossum, haypo, mmarkk, yselivanov priority: normal severity: normal status: open title: Add new StreamReader.readuntil() method