[issue38314] Implement unix read_pipe.is_reading() method

2019-12-30 Thread Callum Ward
Change by Callum Ward : -- pull_requests: +17192 pull_request: https://github.com/python/cpython/pull/17755 ___ Python tracker ___

[issue38314] Implement unix read_pipe.is_reading() method

2019-11-04 Thread Callum Ward
Change by Callum Ward : -- keywords: +patch pull_requests: +16555 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17042 ___ Python tracker ___

[issue38314] Implement unix read_pipe.is_reading() method

2019-11-04 Thread Callum Ward
Callum Ward added the comment: I've agreed with Ben that I'll look at making the necessary changes today. -- nosy: +callumquick ___ Python tracker ___

[issue38314] Implement unix read_pipe.is_reading() method

2019-10-27 Thread Andrew Svetlov
Andrew Svetlov added the comment: Please do. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38314] Implement unix read_pipe.is_reading() method

2019-10-27 Thread Benjamin Edwards
Benjamin Edwards added the comment: Shubham are you still interested in this, or are you ok with me taking it on? -- nosy: +benedwards14 ___ Python tracker ___

[issue38314] Implement unix read_pipe.is_reading() method

2019-09-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: Nothing special. There is UnixReadPipeTransportTests test cases inside Lib/test/test_asyncio/test_unix_events.py This class has a bunch of tests for pause_reading() / resume_reading(). Test(s) for is_reading() can be built in the same way. --

[issue38314] Implement unix read_pipe.is_reading() method

2019-09-29 Thread Shubham Upreti
Shubham Upreti added the comment: I would like to take this up. I am a beginner and any more instructions you want to give me. -- nosy: +shubh07 ___ Python tracker ___

[issue38314] Implement unix read_pipe.is_reading() method

2019-09-29 Thread Andrew Svetlov
Andrew Svetlov added the comment: The issue is easy, basically we need the following code plus a test def is_reading(self): return not self._paused and not self._closing -- keywords: +newcomer friendly type: -> enhancement ___ Python

[issue38314] Implement unix read_pipe.is_reading() method

2019-09-29 Thread Andrew Svetlov
New submission from Andrew Svetlov : Sockets support it, there is no reason for missing the method in unix pipe. -- components: asyncio messages: 353494 nosy: asvetlov, yselivanov priority: normal severity: normal status: open title: Implement unix read_pipe.is_reading() method