sdh4
sdh4
Changing the printf format string from %d to %x seems to work around the problem
Mmm. Well a regular expression parser is not a triviality! If you need me to enable some logging to help troubleshoot/verify that the regular expressions are indeed different, I can...
Thanks for looking at this! I didn't do any exhaustive searching or broader testcase for related problems but the link in the previous comment does highlight the one other case...
Should I do just this focused issue (emptyStyle undefined) or attempt a broader fix? I must admit I'm not in much of a position to test the broader fix, but...
I was able to get a "full" configuration working on pixel 2 (walleye) based on the [GrapheneOS fork](https://github.com/GrapheneOS/android-prepare-vendor). In my fork at [https://github.com/sdh4/android-prepare-vendor](https://github.com/sdh4/android-prepare-vendor) I made some minor changes (python fixes),...
java.lang.Class.getDeclaredMethod is an intriguing possibility.... I had been thinking about just constructing a signature based on the Python parameters and then comparing that signature with the signatures of each of...
Here's a possible approach: Have Python integers match either Java int or long. Have Python floats match either Java float or double. Have Python strings only match java.lang.String. In the...
Looking a little more closely, there seems to be a typo in the code for LineProxyList's _generate_expected_list() that should deal with this scenario. Specifically the code block: ``` if previous...
The difference between if..else and try..except/for..else seems to have to do with the internal structures: In the IfelseblockNode the endlnode with indentation is attached to the end of the IfNode...
Here's an improvement that can handle a broader array of sources (such as fst's) because it uses _convert_input_to_node_object_list(). Not sure how best to do multiple inserts in different places with...