lorien
lorien
Code: ```python import asyncio import pyppeteer async def main(): try: await asyncio.wait_for( pyppeteer.connect(browserWSEndpoint='ws://localhost:3333'), timeout=3 ) except asyncio.TimeoutError: print('Timeout!') if __name__ == '__main__': asyncio.get_event_loop().run_until_complete(main()) ``` Endpoint is broken, port is closed,...
The trailing slash argument is missing in mongorestore command example in debian mans.
On the page https://github.com/LonamiWebs/Telethon/releases the link to changelog is broken, see screenshot. 
Content of `grab.response.head in the moment of error happened: ``` b'HTTP/1.1 200 OK\r\nDate: Tue, 13 Jun 2017 22:16:36 GMT\r\nServer: Apache\r\nSet-Cookie: \xb3\xd2\xda\xcd\xd7=%96%A6g%9Ay%B0%A5g%A7tm%7C%95%9A; expires=Tue, 25-Jul-2017 14:16:36 GMT; path=/\r\nX-Powered-By: Apache2\r\nVary: Accept-Encoding\r\nContent-Encoding: gzip\r\nContent-Length: 4974\r\nContent-Type:...
It works on my dev Debian machine. It fails in github ubunti CI environemnt. ```python @only_grab_transport("pycurl") def test_different_domains(self): import pycurl # pylint: disable=import-outside-toplevel grab = build_grab() names = [ "foo:%d:127.0.0.1"...
## The context I want to use grpc server inside spring boot server. I want grpc server listens on unix domain socket. ## The question I have upgraded to recent...
Minimal python 3 code to reproduce the problem ``` import pycurl from io import BytesIO while True: def debug(type_, data): pass body = BytesIO() curl = pycurl.Curl() curl.setopt(pycurl.URL, 'http://yandex.ru/robots.txt') curl.setopt(pycurl.WRITEDATA,...