Results 228 comments of MegaIng

Is the library doing `if fsm` somewhere? Otherwise, use `greenery` instead. For interegular FSM is really just an internal detail, and I want to move over to just using `greenery.fsm.FSM`...

Looks good, nice catch! Can you add a link to this PR as a comment in the function? And can similar stuff happen for `str.lower`? (if not, please note that...

Hm, this isn't really enough to match stdlib's re behavior: `re.fullmatch(low_s, up_s, re.IGNORECASE)`, where `low_s='ß'; up_s='ẞ'`, i.e. the uppercase version of `ß` which does exists does match, meaning I can't...

Actually, don't worry about it, I will implement this in some other way, thank you for making me aware of this issue, and thank you for providing a fix! I...

The [docs](https://www.gnu.org/software/bison/manual/html_node/Counterexamples.html) for bison link to this paper: [Isradisaikul 2015] Chinawat Isradisaikul, Andrew Myers, Finding Counterexamples from Parsing Conflicts, in Proceedings of the 36th ACM SIGPLAN Conference on Programming Language...

I see you did not read the pinned post... You should not share your save folder publicly without editing out the token.

I want to point out that neither of last two options actually solve the underlying issue, they just hide it. You cannot continue running with half-imported modules since they might...

I think we should at some point reconsider the entire import system. There are a few issues I can think of: - weird inconsistencies between importing rules and importing tokens....