New issue
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
sqlite3: remove features deprecated in 3.10 #92547
Comments
The following sqlite3 features were deprecated in 3.10, scheduled for removal in 3.12: - sqlite3.OptimizedUnicode (pythongh-23163) - sqlite3.enable_shared_cache (pythongh-24008) Signed-off-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Could you check whether any major open-source repos use these (using @vstinner's scripts)? If so, it's going to be better to fix the third-party dependencies first. |
Certainly! |
Results of
nltk seems to be impacted by the removal of |
pylint-2.12.2/pylint/checkers/stdlib.py is a list of the deprecated functions: |
`OptimizedUnicode` has been an alias for `str` since Python 3.2 and is scheduled for removal in Python 3.12. The default factory is already `str`, so the line wasn't doing anything. See python/cpython#92547.
Resolved by #92548 |
The following sqlite3 features were deprecated in Python 3.10, and are scheduled for removal in Python 3.12:
3.12 development was just opened, so these features can now be removed.
The text was updated successfully, but these errors were encountered: