Search filters put 'Programming Language :: Python :: N :: Only' checkboxes in an odd place
See original GitHub issueThe search-filter checkboxes are sorting the Programming Language :: Python :: N :: Only
checkboxes below all of the respective N.n
checkboxes, instead of placing them immediately below the N
checkboxes:
This is highly nonintuitive, at least to me.
This may be low priority given that, e.g., #2442 and/or #3462 would presumably change the UI considerably.
Issue Analytics
- State:
- Created 5 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Python :: N :: Only' checkboxes in an odd place · Issue #3851 ...
The search-filter checkboxes are sorting the Programming Language ... Search filters put 'Programming Language :: Python :: N :: Only' ...
Read more >Search Bar to filter checkboxes in Qlistview - Stack Overflow
I have a program where it shows all c files from a selected folder as checkboxes in a Qlistview. I'm trying to make...
Read more >How To Select The Check Box In Selenium With Examples
This Tutorial Explains Various Methods To Select Check Box In Selenium ... Go to any website that has a checkbox to select and...
Read more >Python GUI: How to create Check box - YouTube
In this tutorial we are going to create a check box or Check Button and get its Value using Python TkinterLike Facebook Page: ......
Read more >Python's filter(): Extract Values From Iterables
Python's filter () is a built-in function that allows you to process an iterable and extract those items that satisfy a given condition....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This seems to have resolved itself. https://pypi.org/search/?q= currently shows the following:
The root cause seems to be the default ordering of Postgres’
text
fields.Example:
Output:
Looks like the collation “ucs_basic” (mentioned here as a SQL standard, but not default in PG, for UTF-8: https://www.postgresql.org/docs/10/static/collation.html) returns the strings in the order we’d prefer:
Output:
What’s the better idea? Simply change the query in the one place (does sqlalchemy support that somehow) or migrate the database field to always order by this collation?