Sergey Shepelev
Sergey Shepelev
https://httpwg.org/specs/rfc7230.html#rfc.section.3.3.1 Fixes #746 Fixes #862
https://www.mnot.net/blog/2014/12/27/python_2_and_tls_sni `wrap_socket(sock, ..., server_hostname='foo.bar')`
eventlet introduces difference in semantics between socket (blocking) and underlying file descriptor (non-blocking). multiprocessing grabs raw file descriptors off socket objects, expecting fd-s to repeat socket blocking semantics, which they...
Thanks to Derk Tegeler for this report. ``` python import eventlet, time, sys from eventlet.green import socket,ssl s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(('127.0.0.1',7000)) print "connected" proto=ssl.PROTOCOL_TLSv1 c = ssl.wrap_socket( s, do_handshake_on_connect=False,...
Currently FromResponseBytes will return singleton RobotsData of allow-all for 404 status code and disallow-all for 401/403 status codes. For any other input, unique RobotsData will be created even though they...
Required for StepFunctions support https://github.com/apex/apex/issues/698
Please teach how to do `Table(autoload=True)` or `metadata.reflect()` with asyncpgsa properly. Tried passing `reflect(bind=asyncpgsa_connection)` and it's AttributeError game: needs connect then dialect, I feel like it's going in wrong direction....
Natan Rajchenberg approached me via email with this patch. Using [urllib `getproxies`](https://docs.python.org/3/library/urllib.request.html#urllib.request.getproxies) handles OS specific sources other than environment variables. LGTM, but have to check for compatibility.
Let's fill this table with everything known to be different between py2/3. ### Solve by take py3 version - [proxy] py2: socks imported from vendored socksipy; py3: socks is first...
Please, add instructions how to use your boxes for Vagrant newbies. It seems the following is required: ``` mkdir randomname cd randomname vagrant init xironix-freebsd-9.1-amd64-ufs https://s3.amazonaws.com/vagrant_boxen/freebsd_amd64_ufs.box vagrant up ```