We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have another package that installs urllib2, and therefore the import below succeeds, and then proceeds to break in Python 3.12
import urllib2 as urllib URLError = urllib.URLError
If we can upgrade this to check for urllib3 before trying urllib2, then having urllib2 won't break.
| File "/usr/local/lib/python3.12/site-packages/justext/_compat.py", line 22, in <module> | import urllib2 as urllib | File "/usr/local/lib/python3.12/site-packages/urllib2.py", line 220 | raise AttributeError, attr
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have another package that installs urllib2, and therefore the import below succeeds, and then proceeds to break in Python 3.12
If we can upgrade this to check for urllib3 before trying urllib2, then having urllib2 won't break.
The text was updated successfully, but these errors were encountered: