fsh
fsh
If you look at https://cloudygo.com/leela-zero-eval/eval-graphs it seems to indicate that net 220 was actually a false-positive promotion as it is significantly weaker than both nets before it and after it,...
In an extension type written with `py_class!()`, is there a way to set or fix the `tp_flags` of the resulting PyTypeObject? For this specific use-case I want to add `Py_TPFLAGS_BASETYPE`...
Ideally just show the hex of the code point at the cursor _if applicable_ (if there is a single code point under cursor). Like it could show `88:10 (U0024) 72%`...
I was struggling a while to get something like this to work: ```rust // Union-type for arguments to arithmetic operations. #[derive(FromPyObject)] pub enum IntOrElemArg), Literal(RugInteger), } impl` into the enum...
Using `~x + ...` seems to disallow whitespace skip with left recursion. Is this intended behavior? If so, what's the idiomatic way of doing it in left recursive grammars? An...