```py
import urllib.request
urllib.request.urlopen(urllib.request.Request("https://pypi.org/pypi/MozPhab/json"), timeout=30)
```
This alone hangs when it loads instantly on Firefox and Node.js. And `timeout=1` makes it work with actual valid response. Again that makes zero sense. Maybe it's https://github.com/python/cpython/issues/95838 (except I don't have any VPN on this machine)?
Bug 1919884 Comment 10 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
```py
import urllib.request
urllib.request.urlopen(urllib.request.Request("https://pypi.org/pypi/MozPhab/json"), timeout=30)
```
This alone hangs when it loads instantly on Firefox and Node.js. And `timeout=1` makes it work with actual valid response. Again that makes zero sense. Maybe it's https://github.com/python/cpython/issues/95838 (except I don't have any VPN on this machine)?
Filed https://github.com/python/cpython/issues/125049.