Thea Flowers fe3e8ee02c Add bytearray.decode() for CPython compatibility
CPython has a `decode()` method on `bytearray`. This adds that method using the code from `bytes.decode`.

Test program:

```python

byte_boi = bytes([0x6D, 0x65, 0x65, 0x70])
print(byte_boi)  # b'meep'
byte_boi_str = byte_boi.decode("utf-8")
print(byte_boi_str)  # meep

byte_array_boi = bytearray(byte_boi)
print(byte_array_boi)  # bytearray(b'meep')
byte_array_boi_str = byte_array_boi.decode("utf-8")
print(byte_array_boi_str)  # meep

print(byte_array_boi_str == byte_boi_str)  # True

```
2020-05-14 21:52:58 -07:00
..
2018-07-12 14:13:51 -04:00
2018-07-12 14:13:51 -04:00
2018-07-12 14:13:51 -04:00
2018-07-12 14:13:51 -04:00
2018-08-09 13:29:30 -07:00
2020-02-27 11:03:03 -06:00
2018-08-16 17:41:35 -07:00
2018-07-28 13:29:47 -04:00
2020-03-03 10:55:50 -08:00
2019-04-05 21:38:32 +02:00
2018-07-11 16:45:30 -04:00
2018-07-11 16:45:30 -04:00
2018-10-18 10:37:42 -07:00
2018-10-07 19:37:49 +02:00
2018-11-13 22:04:44 +01:00
2017-07-18 11:57:39 +10:00
2018-07-12 14:13:51 -04:00
2019-01-18 11:53:09 -08:00
2019-01-14 18:09:02 -08:00
2020-02-04 16:55:56 -05:00
2020-02-14 15:12:20 -05:00
2020-01-30 10:59:16 -08:00
2020-01-02 18:03:18 -05:00
2019-12-13 14:29:15 -05:00
2020-01-02 18:03:18 -05:00
2019-12-13 14:29:15 -05:00
2019-12-13 14:29:15 -05:00
2019-12-05 13:06:10 -06:00
2018-08-07 14:58:57 -07:00
2018-05-14 17:41:17 -04:00
2018-05-14 17:41:17 -04:00
2020-04-21 22:40:12 -04:00
2020-04-21 22:40:12 -04:00
2018-07-11 16:45:30 -04:00
2020-02-04 16:19:40 -05:00
2018-07-11 16:45:30 -04:00
2020-01-08 16:36:43 -06:00