Giordon Stark
Giordon Stark
Here's an example XML output ``` bool bool HelperFunctions::pt_sort::operator() (const xAOD::IParticle &lhs, const xAOD::IParticle &rhs) operator() const xAOD::IParticle & lhs const xAOD::IParticle & rhs ``` Doxygen's generated HTML gives ```...
Please make sure that this is a bug. As per our [GitHub Policy](https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md), we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template **System information**...
Hi, thanks a lot for the very nice write-up and documentation here (and dashboard here: https://grafana.com/grafana/dashboards/2870 ). There are a few things that still mystify me perhaps, and I'm not...
I have a workflow in which I use scikit-build to drive a CMake-based project, but not build any python-bindings (as in this case, I am shipping a DLL with a...
It seems that fundamentally, scikit-build is treating the `.*` differently than how setuptools seems to treat it. Take for instance, this `MANIFEST.in` from [pyhf](https://github.com/scikit-hep/pyhf): ``` prune * graft src include...
Following the example here ```python import uproot import numpy with uproot.recreate("example.root") as f: f["t"] = uproot.newtree({"branch": "int32"}) f["t"].extend({"branch": numpy.array([1, 2, 3, 4, 5])}) ``` trying to do something like ```python...
```python >>> import uproot >>> uproot.__version__ '4.1.5' ``` ROOT file in question: https://github.com/scikit-hep/pyhf/blob/master/validation/xmlimport_input/data/example.root ```python >>> import uproot >>> f = uproot.update('data/example.root') >>> f.keys() ['data;1', 'signal;1', 'background1;1', 'background2;1', 'background1_statUncert;1'] >>> del...
There is a `damerau_levenshtein` function being called when we hit a missing key that takes a long time when the number of keys in a file is very large (https://github.com/scikit-hep/uproot4/blob/85f219a36e76dffc18da4756227a7beb760657a0/src/uproot/_util.py#L810-L858)....
Betamax supports uri substitution (https://github.com/betamaxpy/betamax/blob/2c12cee59ac365f39497a3718eed04ab9c6ce988/src/betamax/cassette/interaction.py#L99-L107) however you might typically need to quote the string you're looking for first. E.G. something like this ```python from urllib.parse import urlparse, parse_qs, quote def...
``` _____________________________ test_get_image_model _____________________________ auth_client = tmpdir = local('/tmp/pytest-of-root/pytest-0/test_get_image_model0') def test_get_image_model(auth_client, tmpdir): with betamax.Betamax( auth_client, cassette_library_dir=itkdb.settings.ITKDB_CASSETTE_LIBRARY_DIR ) as recorder: recorder.use_cassette('test_images.test_get_image', record='none') image = auth_client.get( 'uu-app-binarystore/getBinaryData', json={ 'code': 'bc2eccc58366655352582970d3f81bf46f15a48cf0cb98d74e21463f1dc4dcb9' }, )...