Etienne Dechamps

Results 51 issues of Etienne Dechamps

``` $ python3 -c 'import feedparser; import pprint; pprint.pp(feedparser.parse("/dev/null"));' {'bozo': False, 'entries': [], 'feed': {}, 'headers': {}} ``` This makes it look like `/dev/null` is a valid feed with no...

``` $ python3 -c 'import feedparser; import pprint; pprint.pp(feedparser.parse("http://httpstat.us/500"));' {'bozo': 1, 'entries': [], 'feed': {}, 'headers': {'content-length': '25', 'connection': 'close', 'content-type': 'text/plain', 'date': 'Tue, 23 Jul 2024 09:26:01 GMT', 'server':...

As described in #3504, when attempting to create snapshots across multiple pools in one command, `zfs snapshot` returns (on 2.2.4): ``` # zfs snapshot pool1@foo pool2@bar cannot create snapshots :...

Type: Defect

#6873 was caused by what looks like human error when preparing an official Transmission release. As I suggested in https://github.com/transmission/transmission/issues/6873#issuecomment-2313508165: To avoid this kind of problem in the future, would...

scope:infra

When writing a file sequentially, behind the scenes ZFS will not quite write the file blocks in their original order; blocks will randomly swap places but only locally (not far...

Currently polaris only supports a `--port` option to change the numerical port to listen on. It would be nice if the binding could be customized further: - Making it possible...

enhancement

### This issue respects the following points: - [X] This is a **bug**, not a question or a configuration issue; Please visit our forum or chat rooms first to troubleshoot...

bug

I find the following… odd (torf 4.2.7): ```python import os import torf with open("test.txt", "w") as file: file.write("test") torrent = torf.Torrent(path="test.txt") torrent.generate() os.unlink("test.txt") print(torrent.infohash) ``` ``` Traceback (most recent call...

Currently, the `Torrent.pieces` field is the same as the `pieces` field in the Transmission RPC response, that is: > A bitfield holding pieceCount flags which are set to 'true' if...

The transmission RPC interface offers the [`session-close` method](https://github.com/transmission/transmission/blob/main/docs/rpc-spec.md#45-session-shutdown) to shut down Transmission remotely. It would be nice if the library could make this command available.