Message2422

Author johahn
Recipients
Date 2005-02-27.19:11:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Some details:

__builtin__.complex(int), __builtin__.complex(int, int) and 
PyComplex.J should probably be removed.

Since complex.real is a data member and not a function, 
I had to use PyGetSetDescr. For that I needed an 
accessor method, getReal(), and that it was public. 

complex.__cmp__ is no longer exposed to jython 
(conformant with cpython).

complex.__complex__ is no longer exposed.

The 'boolean init' parameter in PyComplex.complex_new 
should probably be removed (for clarity) since it is always 
false. (Similar in every unmutable type.)

Where are __coerce__, __doc__, __eq__, __ge__, 
__gt__, __le__, __lt__, __ne__, __reduce__ ?
History
Date User Action Args
2008-02-20 17:18:27adminlinkissue1152994 messages
2008-02-20 17:18:27admincreate