Dimitri Papadopoulos Orfanos

Results 835 comments of Dimitri Papadopoulos Orfanos

Would non-contiguous recordings (using the same setup) end up in the same or distinct files? As an example, there could be cases where video recording has been stopped while taking...

Some suggestions: - The build instructions are split between [sanzu/README.md](https://github.com/cea-sec/sanzu/blob/main/sanzu/README.md) (for building outside of a Docker image under [Compilation](https://github.com/cea-sec/sanzu/blob/main/sanzu/README.md#compilation)) and [build/BUILDING.md](https://github.com/cea-sec/sanzu/blob/main/build/BUILDING.md) (for building using one of the provided Docker images)....

Is it OK to get rid of the `commands=[]` argument and change the documentation accordingly? That won't change the current functionality.

Actually, `_show_help()` appears to be called with different `command` arguments on purpose: https://github.com/pypa/distutils/blob/b7ee725f3a5ba336cfca89f55d8a3b7d3bf7d27b/distutils/dist.py#L488-L491 https://github.com/pypa/distutils/blob/b7ee725f3a5ba336cfca89f55d8a3b7d3bf7d27b/distutils/dist.py#L583-L585 The initial intention was to filter the commands or command class at call time. Instead, I...

The name **has** to be matched/restricted at some point: > The following files are included in a source distribution by default: > * ... > * all files matching the...

I think I have found the relevant source code in [**setuptools**](https://github.com/pypa/setuptools): [**setuptools/_distutils/command/sdist.py**](https://github.com/pypa/setuptools/blob/59ee498/setuptools/_distutils/command/sdist.py#L295-L296) Lines 295 to 296 in [59ee498](https://github.com/pypa/setuptools/commit/59ee498) ```python def _add_defaults_optional(self): optional = ['test/test*.py', 'setup.cfg'] ``` copied over from [**distutils**](https://github.com/pypa/distutils):...

I have created https://github.com/pypa/distutils/issues/187 to investigate directly in [distutils](https://github.com/pypa/distutils).

This is the result of applying black in #255, and `ruff format` will again fold the multiple lines into a single line — unless the code is enclosed in `#...

I'll try to do that with `# fmt`.

It is not compatible with `ruff format` (yet): https://github.com/astral-sh/ruff/issues/8272