James Marchant

Results 12 comments of James Marchant

Thought it might be due to FTS; no way to escape said characters or does FTS just not consider them at all? Dash functionality does seem a little off as...

How very odd; works fine for me and says only FTS4 is available... ![anim](https://cloud.githubusercontent.com/assets/13064654/17973334/efa11104-6ad9-11e6-820a-44b9161a617d.gif)

Whilst automating support for `SEQUENCE` is perhaps impossible, it should be noted that the MUST requirement is no longer present in RFC5545 (https://icalendar.org/iCalendar-RFC-5545/3-8-7-4-sequence-number.html) instead deferring to: > It is monotonically...

Also encountering the same when using `Optional` as part of the type hint: ```python from dataclasses import dataclass from typing import List, Optional, Union import desert @dataclass class ExplicitlyOptionalClass: x:...

Is there a similar workaround (for either the `onedir` or the `onefile` solution) for packaging on Windows where the ability to create symlinks isn't available to the average user?

This may also be related? https://mypy-play.net/?mypy=latest&python=3.10&gist=ae5f16e9b9ca9346f8a28ab60bd9825f ```python from typing import ParamSpec, Callable, Optional, TypeVar P = ParamSpec("P") R = TypeVar("R") x: Callable[P, R] # error y: Optional[Callable[P, R]] # error...

Also this: https://mypy-play.net/?mypy=latest&python=3.10&gist=c4d6f13911151a073aed0d6650e4af3e ```python from typing import ParamSpec, Callable, Optional, TypeVar P = ParamSpec("P") R = TypeVar("R") def target_func(x: int) -> int: return 0 def test(x: Callable[P, R]): pass def...

Also being hit by this; in our case it's setting `proxies` on the Session instance, but then the call to `proxies = merge_settings(...)` basically doesn't respect `should_bypass_proxy()` because it happens...

Any further news on this?

Can confirm we're also seeing this between two PRs (with `pefile` being updated to this version in between)