Michael Wayne Goodman

Results 199 comments of Michael Wayne Goodman

Yes, they are in depth-first order on decoding, as you can see for these variations of the same graph: ```pycon >>> import penman >>> penman.decode('(a / A :ARG0 (b /...

I'm happy to review a PR that adds a function or method to iterate over the triples in other orders. We'd need to decide the API as well as the...

I must've misread the list of active Python versions. 3.11 is only a release candidate currently, and the expected full release is 2022-10-24. By the time I get around to...

@rudaoshi, to add to what @fcbond said, in Wn you can use the `ili` member of a synset to see equivalent synsets across versions or even across lexicons for another...

> When I think of inter-resource delegation, I think of some resource calling an HTTP (get/post/put/delete) method of a different resource without going through the entire web stack. I agree....

From my limited experience using `regex`, I don't think there's a lot to gain unless you really need greater (but still not full) PCRE compatibility. I don't believe there's any...

The first issue is whether Python's `str.split()` uses the same definition of a space as `\s` in Python regular expressions. To test this, I got took the [list of unicode...

Yes, all I have shown was that the basic string operations are suitable to replace Python's `re.sub()` if the leading and trailing spaces are accounted for, and I make no...

I agree, and I think better error messages are the thing most needed by this project. If you use the packrat parser, you will get close to what you are...

> keep the original grammar as well and if there is a parse error re-parse with the unoptimized grammar in order to provide more helpful error messages. Pe already stores...