Create your own GitHub profile
Join the platform over 40 million developers call home for hosting code, managing projects, and building their best software.
Sign up for free See pricing for teams and enterprises
Popular repositories
572 contributions in the last year
Contribution activity
January 2020
- benjaminp/urllib3 Python
- benjaminp/netlink Go
- benjaminp/toml Python
Created a pull request in python/cpython that received 8 comments
Created an issue in urllib3/urllib3 that received 4 comments
iterating a closed response improperly produces data
Consider the following script:
import urllib3 http = urllib3.PoolManager()
resp = http.request("GET", "https://www.python.org")
resp.close()
for d …
4
comments