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
581 contributions in the last year
Contribution activity
January 2020
- benjaminp/sagemaker-python-sdk Python
- benjaminp/urllib3 Python
- benjaminp/netlink Go
- benjaminp/toml Python
Created a pull request in aws/sagemaker-python-sdk that received 11 comments
change: remove usage of pkg_resources
pkg_resources is a notorious drag on import time because it does complex initialization and IO on import. Fortunately, there are modern replacement…
+14
−11
•
11
comments
- [3.8] closes bpo-39415: Remove unused codes from longobject.c complexobject.c floatobject.c. (GH-18105)
- [3.8] closes bpo-39415: Remove unused codes from longobject.c complexobject.c floatobject.c. (GH-18105)
- [3.8] closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind. (GH-17908)
- [2.7] bpo-27973 - urlretrive fails on second ftp transfer.
- [3.8] Bring Python into the next decade. (GH-17801)
Created an issue in urllib3/urllib3 that received 6 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 …
6
comments