On Sun, Jan 11, 2009 at 12:40 PM, "Martin v. Löwis" wrote:
>> I noticed that the builtin numeric types (int, float, complex) all still
>> have a __long__ method in 3.x. Shouldn't this have disappeared as
>> part of the int/long unification? Is there any reason not to remove this
>> (by setting t
> I noticed that the builtin numeric types (int, float, complex) all still
> have a __long__ method in 3.x. Shouldn't this have disappeared as
> part of the int/long unification? Is there any reason not to remove this
> (by setting the nb_long entry to 0 in all three cases)?
There are, apparentl
> Porting to MS Windows CE, I find that e.g. signals or environment vars are
> not
> supported. How should I handle that?
So that scripts that try to make use of these features operate in a
reasonable way.
> In particular, I'm talking about
> PyOS_getsig() and PyOS_setsig(). Should I just #if
I noticed that the builtin numeric types (int, float, complex) all still
have a __long__ method in 3.x. Shouldn't this have disappeared as
part of the int/long unification? Is there any reason not to remove this
(by setting the nb_long entry to 0 in all three cases)?
Mark
___
Hi!
Porting to MS Windows CE, I find that e.g. signals or environment vars are not
supported. How should I handle that? In particular, I'm talking about
PyOS_getsig() and PyOS_setsig(). Should I just #ifdef them out completely or
should I implement them by setting an error? Which error should I
thanks!
On Sun, Jan 11, 2009 at 2:12 PM, Guilherme Polo wrote:
> On Sun, Jan 11, 2009 at 2:02 PM, Alexandre Fiori wrote:
> >
> > hello
> >
> > i was thinking about a possible improvement for the itemgetter
> > the documentation page shows simple examples like sorting a dictionary by
> > its int
On Sun, Jan 11, 2009 at 2:02 PM, Alexandre Fiori wrote:
>
> hello
>
> i was thinking about a possible improvement for the itemgetter
> the documentation page shows simple examples like sorting a dictionary by
> its integer values
Hi,
Sorry for starting like this but ideas are supposed to be emai
hello
i was thinking about a possible improvement for the itemgetter
the documentation page shows simple examples like sorting a dictionary by
its integer values, like this:
>>> inventory = [('apple', 3), ('banana', 2), ('pear', 5), ('orange', 1)]
>>> getcount = itemgetter(1)
>>> map(getcount, in