auxsvr

Results 12 comments of auxsvr

regex-2022.7.9 seems to be compatible with dateparser in the sense that the tests in https://github.com/scrapinghub/dateparser/issues/1045#issue-1170455588 work.

I'm currently using the asyncio reactor with ipython as scrapy shell without `nest-asyncio`, but it's tricky. The main issue is that the shell runs in a thread other than the...

Another case is to prevent installation of `brotlipy` when `brotli` is installed, as both are imported as `brotli` and their APIs are incompatible.

This may be caused by https://github.com/jfhbrook/pyee/issues/120. I've seen many cases of lost events with playwright and fixed all of them by patching pyee to keep a reference to the futures...

This seems to be related to https://github.com/jfhbrook/pyee/issues/120. Keeping a reference to the tasks prevents this in my tests.

I'm not using doom-modeline and I have the same issue as https://github.com/Alexander-Miller/treemacs/issues/1048#issuecomment-1683841844. Two more error messages that might be related: > Hash table data is not a list of even...

> > [Treemacs] The treemacs-extensions module is obsolete, treemacs-treelib should be used instead. > > That change was made months ago and as far as I know all dependencies made...

In my case (nvidia) it is not exactly flickering, but an abrupt change of colours for some seconds.

The linter failure in mypy is spurious. Should I silence this instance or is there a better way?

I can retrieve the certificate on aiohttp 3.8.3 with: ``` async with aiohttp.ClientSession() as session: r = await session.get('https://bbc.com') cert = r.connection.transport.get_extra_info('peercert') ``` so this looks resolved to me.