Emmanuel Leblond

Results 153 issues of Emmanuel Leblond

see comment https://github.com/Scille/parsec-cloud/issues/4552#issuecomment-2107094344 tl;dr: currently we fetch all common certificates by doing one-query-per-certificate-type, then filter them by date in Python... ## Original issue `certificate_get` and `events_listen` are only currently implement...

I-Python
I-Postgresql
A-Server
refactor

We have plenty of errors that automatically handle ConnectionError, see for instance: https://github.com/Scille/parsec-cloud/blob/c40ad7d297aa05b6b0e2d1171b1c0ce70c9e01ff/libparsec/crates/client/src/workspace/fetch.rs#L35-L42 However this means we get an internal error whenever the authentication with the server fails. Instead we'd...

I-Rust

Currently [`CertificatesStorage` is only available on native](https://github.com/Scille/parsec-cloud/blob/master/libparsec/crates/platform_storage/src/native/certificates.rs) We need it to be available on web for testing the GUI `CertificateStorage` only store cache information (i.e. removing the database won't result...

I-Rust

Given the .ini ``` [main] key = "hello" world ``` Iniparser will stop reading after the first double quoted string so we will end up with `key=hello` instead of `key=hello...

documentation

tl;dr: Last release `20221220` fails to compile a simple cython project: `setup.py`: ```python from setuptools import setup from Cython.Build import cythonize ext_modules = cythonize("my.pyx") setup( ext_modules=ext_modules, ) ``` (`my.pyx` can...

bug

Consedering ``` #define SIZE sizeof(int) typedef struct { char _internal_stuff[SIZE]; } s_foo; ``` Output ``` $ autopxd python-autopxd2/test.h Traceback (most recent call last): File "/home/emmanuel/projects/godot-python-2-electric-boogaloo/venv/bin/autopxd", line 11, in load_entry_point('autopxd2', 'console_scripts',...

Hi, I've just find out `@command` and `@option` decorators are incompatile. For the story, until now I was creating my commands like that: ``` python @broker_manager.command @broker_manager.option('queue', help='Queue to monitor')...

Just a simple fix to remove the`# NOQA` from the **init**.py

Originally reported by @vxgmichel connection pool's `acquire` context manager returns a connection proxy object that can still be used after we have left the context manager (instead of raising an...

Following https://github.com/python-trio/pytest-trio/issues/11#issuecomment-350600995 A `closed_tcp_port` seems like a good improvement for me. Especially because it docstring can contain explanation about why there is no `unused_tcp_port` fixture and how to work without...

enhancement