Isaac Nygaard

Results 28 comments of Isaac Nygaard

It doesn't support nested (tree-style) groups. However, I was able to do "layers not in groups" or ungrouped layers by doing the following: - set the group name to be...

I believe a ran into this same issue: ``` # .gitignore build/ ``` will match both `build/` directory and `sdist_build.py`. For reference, an alternative project that works for python

Just started using pushshift myself, but maybe because it is caching the submission results? So I don't think it's specific to NSFW subs. There is a `retrieved_on` field in the...

From the slack page: The stock splits endpoint does not seem to match what is shown on NASDAQ's site. E.g. IRCP lists 4:1 ratio on Polygon, while NASDAQ lists 4.29:1

For those that missed the discourse link mentioned in OP's report, a workaround is to always access the jitclass from a jitted function/method. As long as it never needs to...

I've written a function which can auto-generate such a Proxy class. Note that it only creates proxies of instance methods: ```python import inspect from inspect import Parameter, Signature from numba...

Here is a version that will work for aioboto3 (and can be modified slightly for plain aiobotocore): ```python import aioboto3, asyncio from aiobotocore.credentials import ( AioAssumeRoleCredentialFetcher, AioDeferredRefreshableCredentials, AioCredentialResolver ) from...

All JavaScript is Typescript, but not the other way around. Seems better to just keep the JS version so there's less maintenance porting between two essentially identical implementations.

Here is some code to apply @gmarkall's patch live: ```python from numba.core import datamodel from numba.core.base import BaseContext def get_data_type_patched(self, ty): """ Patched get_data_type, as suggested here: https://github.com/numba/numba/issues/8404#issuecomment-1231473379 May not...