Open
Description
There are some attributes that should be implemented for gpython.
Expected
>>> a = True
>>> a.imag
0
>>> a.real
1
>>> a.conjugate()
1
Actual
>>> a = True
>>> a.image
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
FIXME line of source goes here
AttributeError: "'bool' has no attribute 'image'"
>>> a.real
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
FIXME line of source goes here
AttributeError: "'bool' has no attribute 'real'"
>>> a.conjugate()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
FIXME line of source goes here
AttributeError: "'bool' has no attribute 'conjugate'"