lazymio
lazymio
This should bring back Python2 compatibility. Q: Does this affect the current Python3 code using Unicorn2? In theory, no. Q: Does this affect the previous Python2 code using Unicorn1? In...
The launcher uses `fork` by default to start new children, however `tokio` is known to [not working well with `fork`](https://github.com/tokio-rs/tokio/issues/4301). I'm getting hangs for using `Runtime` created before `fork()` while...
Not surprising finally I decide to extend `StdState` because `RefCell` doesn't satisfy `SerdeAny` so I can't save that to metadata (If there is some other way to do it, please...
#### System information Geth version: `geth_linux version 1.3.9-5e74ea65-20240220` OS & Version: Linux Command line: ``` --syncmode full --datadir /work/data --cache 8000 --rpc.allow-unprotected-txs --history.transactions 0 --ws --ws.addr 0.0.0.0 --ws.api net,web3,eth --ws.port...
C file: ```C typedef enum Test { A1L2, A = A1L2, } Test; ``` Script: ```python from pyclibrary import CParser print(CParser(["/tmp/test.h"]).defs) ``` Get ```python {'types': {'Test': Type('enum Test A1L2 A...
I'm reproducing the result of ityfuzz. I got the sheet from here: https://github.com/fuzzland/ityfuzz/issues/153. However, for the first one AES, ityfuzz fails to give a result in 30 minutes (and seems...
Hello! I'm the maintainer from the Unicorn Engine and find this repo accidentally. I can see a few interesting designs & implementations here, and I'm happy you also plan to...
``` error[E0432]: unresolved import `zstd_sys::ZSTD_cParameter::ZSTD_c_experimentalParam6` --> /home/mio/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-safe-6.0.6/src/lib.rs:609:13 | 609 | ZSTD_c_experimentalParam6 as ZSTD_c_targetCBlockSize, | -------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^ | | | no `ZSTD_c_experimentalParam6` in `ZSTD_cParameter` | help: a similar name exists in the...
Reading through https://github.com/bluealloy/revm/issues/554 and https://github.com/bluealloy/revm/issues/1534 , I notice that the root cause is that current `revm` doesn't have async traits. Given the fact that we already split the original single...