PythonHub
2.44K subscribers
2.35K photos
49.4K links
News & links about Python programming.
https://pythonhub.dev/
Download Telegram
How to migrate from Django’s PostgreSQL CI Fields to use a case-insensitive collation

If you upgrade to Django 4.2, you may see system check warnings fields.W906. In this post we’ll cover why this has changed, and how to perform the necessary migration. You can actually migrate from Django 3.2, and may want to, because the alternative uses more accurate and flexible Unicode rules.

https://adamj.eu/tech/2023/02/23/migrate-django-postgresql-ci-fields-case-insensitive-collation/
Show HN: Codon: A Compiler for High-Performance Pythonic Applications and DSLs [pdf]

https://regmedia.co.uk/2023/03/11/mit_codon_paper.pdf
When to use Python's "list" function

When should you use the built-in list(...) function in Python? And when shouldn't you? The list constructor is both underused and overused in Python.

https://www.pythonmorsels.com/using-list/