Closed
Description
In [1]: pd.NA + "a"
Out[1]: <NA>
In [2]: pd.NA + b"a"
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
Input In [2], in <cell line: 1>()
----> 1 pd.NA + b"a"
TypeError: unsupported operand type(s) for +: 'NAType' and 'bytes'
Unless I'm missing something, shouldn't In [2]
return pd.NA
?