Vincent Michel

Results 57 issues of Vincent Michel

At the moment, it doesn't seem possible to schedule a task to a trio loop from another thread and get the result later (i.e the `trio.from_thread.run` function blocks until the...

## Enhancement Request At the moment, it's not possible to directly update winfsp from a new installer. One must: - find and uninstall the installed version of winfsp - reboot...

enhancement

## Enhancement Request Four tests of the `--external` winfsp test suite fail when the file system is mounted as directory ``` create_test............................ KO ASSERT(INVALID_HANDLE_VALUE == Handle) failed at create-test.c:182:create_dotest getfileinfo_test..........................

Since [aioconsole](https://github.com/vxgmichel/aioconsole) is already part of the requirements, you might want to take advantage of its [CLI capabilites](http://aioconsole.readthedocs.io/en/latest/#command-line-interfaces). Here's a [working re-implementation of aiomonitor](https://gist.github.com/vxgmichel/63493a6cd0831ca4cc84430ef1c61a0e). I can provide some help if...

- [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) Poetry version. - [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this repo and believe that this is not a duplicate. - [x] If...

Bug
Triage

This issue is about the attribute `2.5.4.45`, also called `uniqueIdentifier` or `x500UniqueIdentifier`: - https://www.alvestrand.no/objectid/2.5.4.45.html - https://ldapwiki.com/wiki/X500UniqueIdentifier The OID specification for this attribute requires a value of type `BIT STRING` (universal...

The following code produces a `RuntimeError` if the first `readline` operation times out: ``` python try: return await asyncio.wait_for(reader.readline(), 1.) except asyncio.TimeoutError: print('Timeout!') # await asyncio.sleep(0) return await reader.readline() ```...

In `h11`, the `target` argument to `h11.Request` is typed as `Union[bytes, str]` (see the [latest docs](https://h11.readthedocs.io/en/latest/api.html?highlight=request#h11.Request)). Note that it was [already the case](https://h11.readthedocs.io/en/v0.9.0/api.html?highlight=request#h11.Request) in version `0.9.0`. IMO, it would make...

At the moment, the `wsproto.typing.Header` type is not compatible with `h11._headers.Header` which is defined as the following, starting with version `0.13.0`: ```python class Headers(Sequence[Tuple[bytes, bytes]]): [...] ``` The following patch...

At the moment, the API version is only used during handshake for the client and server to settle on a compatible version. Since the HTTP anonymous commands skip this handshake...