Jude
Jude
Suggestion: of course we use beartype for everything python related, but for (most-all) git 3rd party source code applications, I recommend https://github.com/ingydotnet/git-subrepo TL;DR: if the developer has it installed, it...
Ah, yes, and when you get to it, I make liberal use of dataclasses, so I'll be able to quickly and violently observe all my codebases crashing should there be...
Looking at the relevant commit, I noticed the following comment: # Note that PEP 591 bizarrely permits the "typing.Final" type hint factory # to remain unsubscripted: # * With no...
Alternative suggestions: * specify in the docs that the end-user should use --filter=blob:none or --filter=tree:0 , or do a sparse checkout, or do a checkout depth 1, or just a...
Yeah, I can't normally produce it either, except in this odd circumstance. I was hoping there was some sort of hidden logs or config you could point me to. I...
Exact same output; which is why I'm stumped for debugging. ``` bash $ BUILDX_GIT_INFO=false docker --debug buildx build -t wip -f Dockerfile . ERROR: parsing time "{\x0a \"registry-1.dock" as "2006-01-02T15:04:05Z07:00":...
Yeah, so fun fact, boto3 is kinda messed up, with respect to types. There's been various attempts to correctly type it. Within the past year, I've personally used (`aioboto3`/)`aiobotocore`/`types-aiobotocore` packages...
Not to bring this up again... (and my example above is kinda meh; the docs for the \*-types repos is alright), but would a new, easy type-hint api for boto3...
See https://fmt.dev/11.1/api/#std-api , spdlog uses fmt under the hood, and fmt by default doesn't include support for everything to reduce compile times. `#include ` before spdlog fixed this for me.
With respect to the first one, BOTH, the reason for my confusion is that the read() function attempts both (in order) enum_flags_cast and then enum_cast. As per the relevant docs/comment...