Robert Coup
Robert Coup
Small improvement on @fauust' suggestion ```console git ls-tree -r --name-only -z HEAD some/path/ | xargs -0 grep -qsPa "\x00GITCRYPT" ``` * `HEAD` is the git ref-ish to look at (can...
So, should re:dash be just using ISO format in the UI? (or pivot tables, at least). It's definitely a client-side formatting issue, since the JSON results data has timestamps in...
> Clients who are currently checking for ENOTFOUND may have to update their code to also check for this new error code. Libgit2 doesn't support working with partial clone repositories...
I think there might be some more cases that could/should result in GIT_EMISSING: 1. `git_commit_tree()` returns the root tree for a commit. Get a tree-less clone via `--filter=tree:0` 2. `git_reference_peel()`...
I'm hitting the same issue: `tox.ini`: ``` [tox] envlist = py38 skipsdist = True [testenv] commands = py.test {posargs} deps = mock pytest pytest-pep8 -r{toxinidir}/requirements.txt [pytest] norecursedirs = .* data...
With some limited exceptions (mostly in stdlib), `repr()` strings are virtually never `eval`-able. The main purpose is to provide developers with clear information as to what object they have for...
> Seems like a pretty official recommendation. Sure, but it's impossible to implement in many classes, yet every class really _needs_ a `repr()` method (humans aren't so great at deciphering...
> Is there a moderately well respected Python style guide that discusses repr/str? I only found random stackoverflow posts. Not that I can find or know of. Django is a...
Coming at this from a slightly different angle... In [Sentry JS there's source maps](https://docs.sentry.io/platforms/javascript/sourcemaps/), and the Sentry server can go from the compiled traceback to the original source... is there...