Files
Grinch-AP/worlds/smw
Doug Hoskisson 280b67f996 some worlds: some typing in LocalRom (#3090)
* some worlds: some typing in `LocalRom`

### `read_bytes`

It's not safe to return `bytearray` when we think it's `bytes`
```python
a = rom.read_bytes(8, 3)
hash(a)  # This won't crash, right?
```

### `write_bytes`

`Iterable[SupportsIndex]` is what's required for `bytearray.__setitem__(slice, values)`
We need to add `__len__` for the `len(values)` in this function.

* remove `object` inheritance
2024-05-17 21:41:57 +02:00
..
2024-03-12 22:00:13 +01:00
2024-03-12 22:00:13 +01:00
2024-03-12 22:00:13 +01:00
2024-03-15 07:56:12 -05:00
2024-03-12 22:00:13 +01:00
2024-03-12 22:00:13 +01:00
2024-03-12 22:00:13 +01:00
2024-03-12 22:00:13 +01:00
2024-03-12 22:00:13 +01:00