On Sep 7, 2010, at 12:34 PM, Matthew Woodcraft wrote:
> In CPython, the builtin max() and min() have the property that if there
> are items with equal keys, the first item is returned. From a quick look
> at their source, I think this is true for Jython and IronPython too.
>
> However, this isn'
Barry Warsaw writes:
>
> Section added:
>
> Windows
> ===
>
> This PEP only addresses build issues on POSIX systems that use the
> ``configure`` script. While Windows or other platform support is not
> explicitly disallowed under this PEP, platform expertise is needed in
> order to evaluate,
On Wed, Sep 8, 2010 at 8:34 AM, David Cournapeau wrote:
> I would turn the question around: what are the cases where you manage
> to mix CRT and not getting any issues ? This has never worked in my
> own experience in the context of python extensions,
I've done it quite a bit over the years with
On Wed, Sep 8, 2010 at 5:42 PM, Ralf Schmitt wrote:
> Barry Warsaw writes:
>
>>
>> Section added:
>>
>> Windows
>> ===
>>
>> This PEP only addresses build issues on POSIX systems that use the
>> ``configure`` script. While Windows or other platform support is not
>> explicitly disallowed und
On Wed, Sep 8, 2010 at 5:19 PM, Nick Coghlan wrote:
> On Wed, Sep 8, 2010 at 8:34 AM, David Cournapeau wrote:
>> I would turn the question around: what are the cases where you manage
>> to mix CRT and not getting any issues ? This has never worked in my
>> own experience in the context of python
On 09/07/2010 11:40 PM, Jeffrey Yasskin wrote:
Decimal may actually have this backwards. The idea would be that
min(*lst) == sorted(lst)[0], and max(*lst) == sorted(lst)[-1].
Here you mean "is" rather than "==", right? The relations you spelled
are guaranteed regardless of stability.
(This
On Wed, Sep 8, 2010 at 6:34 PM, David Cournapeau wrote:
> In other words, the problem mainly arises when you need to integrate
> libraries which you can not recompile with the compiler used by
> python, because the code is not visual-studio compatible, or because
> the library is only available in
On Wed, Sep 8, 2010 at 7:59 PM, Nick Coghlan wrote:
> On Wed, Sep 8, 2010 at 6:34 PM, David Cournapeau wrote:
>> In other words, the problem mainly arises when you need to integrate
>> libraries which you can not recompile with the compiler used by
>> python, because the code is not visual-studio
Another shameless plug:
My pyflakes.vim plugin will highlight errors as you type:
http://www.vim.org/scripts/script.php?script_id=2441
It's really helpful for catching those typos that you usually don't
notice until the runtime NameError.
Eli Bendersky wrote:
Hello pydev,
This is a meta-q
On Sep 08, 2010, at 09:42 AM, Ralf Schmitt wrote:
>If it's useful on unix like systems, why shouldn't it be useful on
>windows? Multiple versions of python can be installed on windows
>too. And people might also like to share their packages between
>installations.
I guess the point is *I* don't k
Raymond Hettinger wrote:
>Matthew Woodcraft wrote:
>> In CPython, the builtin max() and min() have the property that if there
>> are items with equal keys, the first item is returned. From a quick look
>> at their source, I think this is true for Jython and IronPython too.
>> However, this isn'
Hello,
Ive just stumbled accross your changes Krisvale, and from your last reply, I
can see that you invalidated your changes :
I just realized that this is probably a redundant change.
> We have C apis to get all the Thread states in an interpreter state (I didn't
> even know there was such a
Hello,
Ive just stumbled accross your changes Krisvale, and from your last reply, I
can see that you invalidated your changes :
I just realized that this is probably a redundant change.
> We have C apis to get all the Thread states in an interpreter state (I didn't
> even know there was such a
Ok,
I've been busy with other stuff, but I'm almost finished with a patch to submit
as an alternative.
cProfile.enable() will then take an "allthreads" argument, which when enabled,
will set the profiler state on all threads _currently_ running.
Now, I only realized this late, but _currently_ i
14 matches
Mail list logo