Brian Skinn
Brian Skinn
It's just the way `fuzzywuzzy` works, @eirrgang -- I believe it strips non-alphanumeric characters, which is why the underscores don't affect the match. In terms of the broader question of...
Sphinx specifically [encodes the compressed `objects.inv`s](https://github.com/sphinx-doc/sphinx/blob/63457c700c803ea2a07c72901aca91e9a1a3fa0b/sphinx/util/inventory.py#L155) using [Python's default encoding of UTF-8](https://docs.python.org/3/library/stdtypes.html#str.encode). Thus, import of compressed inventories should ***always*** work with UTF-8, and the code does ***not*** need to be...
Flagging `maybe` since this could well be YAGNI, and removing from v2.3 milestone since it's unclear how much effort it would take to integrate this into `.suggest()`. One option for...
Less of an issue with `SuperDatObj` subclasses having been made mutable (59db681).
Yep, the `objects.inv` stores the directive form, rather than the role form. Not awesome, but at least it's consistent/uniform. > Please let me know if this is a contribution you...
Hmmm, nod... and, the `tox` test matrix is already set up to test across a range of Sphinx versions, so a test could be added that cross-checks this mapping against...
I had a few thoughts this morning on some preferences for this implementation: 1. I'd like to release this on a minor version bump, which means no breaking changes to...
Awesome! It's always great to hear that a project has been useful to someone other than just myself. :-) ---- High-level, I think the objective behind this (making it much...
Sorry for the slow reply on this! I've been mulling this idea over, and aside from implementing a robust and simple way for people to set up suitable web scraping...
Yeah, I've never written a plugin system before, so I definitely will be consulting existing best practices. My current plan for the cascade of how a pluggable would be selected...