Files
test/source/blender
Bastien Montagne 17332da834 Fix (unreported) path_resolve returns string instead of bytes for bytes idprops.
The following code in py console would return a python string object,
instead of the expected bytes one.

```python
value = b"Hello World"
key = "a"
C.object[key] = value
C.object[key]
>>> b"Hello World"
C.object.path_resolve('["%s"]' % key)
>>> "Hello World"
```

Now it will return a byte object as it should.

Found while investigating #122843 .
2024-06-10 14:27:04 +02:00
..
2024-06-06 11:26:28 +10:00
2024-06-04 14:17:58 +02:00
2024-06-10 13:26:05 +02:00
2024-06-05 20:43:44 +02:00