You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some attributes that should be implemented for gpython.
Expected
>>>a=True>>>a.imag0>>>a.real1>>>a.conjugate()
1
Actual
>>>a=True>>>a.imageTraceback (mostrecentcalllast):
File"<stdin>", line1, in<module>FIXMElineofsourcegoeshereAttributeError: "'bool' has no attribute 'image'">>>a.realTraceback (mostrecentcalllast):
File"<stdin>", line1, in<module>FIXMElineofsourcegoeshereAttributeError: "'bool' has no attribute 'real'">>>a.conjugate()
Traceback (mostrecentcalllast):
File"<stdin>", line1, in<module>FIXMElineofsourcegoeshereAttributeError: "'bool' has no attribute 'conjugate'"
The text was updated successfully, but these errors were encountered:
There are some attributes that should be implemented for gpython.
Expected
Actual
The text was updated successfully, but these errors were encountered: