Austin Morton
Austin Morton
`aeron_set_thread_affinity_on_start` does a simple strcmp on the agent role, which is not set to any of the expected values in shared or sharednetwork modes, and so thread affinity values don't...
### Is your feature request related to a problem? I have a situation where I would like to get a query parameter, do something with it, and then pass the...
### Bug description ```python import pandas as pd def function1(): """ some function declared anywhere else in the codebase. in another file and never called in my case. """ df...
Consider the following project layout: ``` ├── bar │ ├── __init__.py │ └── thing.py └── foo ├── bar.py ├── __init__.py └── script.py ``` All files are empty except `foo/script.py`, which...
teensyduino 1.31 is out, and the tools have not been updated since 1.24 the tools may need to be updated to support newer devices
Fixes #789
Given code like: ```python a = ( # foo, ) ``` `get_patched_ast` will incorrectly scan past the empty tuple and cause `MismatchedTokenError`. The following test case will blow up in...
### Changes Fixes #983 It's not entirely clear to me why the change from `asyncio.wait_for` to `util.wait_for` caused a behavior change here, but this code was always broken in the...
Consider the following two environments: ```yaml --- name: test1 channels: - conda-forge - nodefaults dependencies: - pandera ``` ```yaml --- name: test2 channels: - conda-forge - nodefaults dependencies: - pandera...
**Describe the bug** Setting `MOSEKLM_LICENSE_FILE` in the current processes environment prior to using cvxpy no longer works. **To Reproduce** ```python3 import os from cvxpy.tests.solver_test_helpers import StandardTestLPs os.environ['MOSEKLM_LICENSE_FILE'] = '/path/to/mosek.lic' StandardTestLPs.test_lp_0(solver='MOSEK')...