Jesse Beder
Jesse Beder
yaml-cpp works a little differently from py-yaml. yaml-cpp's representation layer (turning `YAML::Node` into a C++ type) mirrors C++'s static typing, so you must tell it what type to turn it...
Hmm, I see what you mean. pyyaml doesn't distinguish between parsing and representation, whereas yaml-cpp does. I assume that in pyyaml, the callback can return any python object? What would...
What version of yaml-cpp? On Thu, Sep 22, 2022 at 9:29 PM Rodney Cheung ***@***.***> wrote: > I build shared library with cmake by: > > cmake -B build_v140_x64 -G...
Also this is super surprising and you might do better by asking on Stack Overflow. On Thu, Sep 22, 2022 at 9:36 PM Jesse Beder ***@***.***> wrote: > What version...
Right, but the problem might be in your windows setup and not in yaml-cpp. Also, try at HEAD instead of 0.7.0 and see if that helps. On Thu, Sep 22,...
This is surprising. I thought this was fixed in Issue #202 (d0250400496b6ac61f672bdad116c36c24383dd8). There's a test added that does: ``` Node n(Load("\"test\"")); out
I’m open to PRs to update documentation. On Tue, Sep 27, 2022 at 6:20 PM Alexandre TISSOT ***@***.***> wrote: > I think the answer for this question is this comment...
This is very interesting, thanks for the PR. A couple high level-comments that we should work out before going into detail. 1. It's worth being explicit about the problem. Could...
See, e.g., [here](https://github.com/m-lab/go/tree/master/cloudtest/dsfake), which appears to be someone's attempt at writing a fake. As you can see, it's a partial implementation: good enough (presumably) for them, but not complete, so...
Yes, that's right, it's perhaps an issue of slowness, but the reason I phrased it like this is that the emulator starts up in a matter of a few seconds,...