Am 26.02.2014 17:09, schrieb Ryan Gonzalez:
> I like Py_DECREF_REPLACE. It gives the impression that it decrefs the original
> and replaces it.
Agreed, most other suggestions are not really explicit enough.
Georg
___
Python-Dev mailing list
Python-Dev@
On 27 Feb 2014 08:07, "Tim Delaney" wrote:
>
> On 27 February 2014 05:53, Terry Reedy wrote:
>>
>>
>> PSF acts as an umbrella organization for multiple Python projects
>> https://wiki.python.org/moin/SummerOfCode/2014
>> Core Python is the first listed of about 15.
>
>
> I'm guessing Mercurial wi
On 27 Feb 2014 04:28, "Antoine Pitrou" wrote:
>
> On Wed, 26 Feb 2014 11:40:01 +0200
> Serhiy Storchaka wrote:
>
> > There were several suggestions for naming new macros which replace old
> > value with new value and then (x)decref old value.
> >
> > #define Py_XXX(ptr, value)\
> > {
On 27 February 2014 05:53, Terry Reedy wrote:
>
> PSF acts as an umbrella organization for multiple Python projects
> https://wiki.python.org/moin/SummerOfCode/2014
> Core Python is the first listed of about 15.
>
I'm guessing Mercurial will appear under the umbrella in the not to distant
future
On 26 February 2014 18:53, Terry Reedy wrote:
> On 2/26/2014 12:34 PM, Paul Moore wrote:
>
>> The subject of this email mentions GSoC, it's probably worth
>> clarifying that the GSoC process is still under way and there isn't
>> (as far as I know, I'm not involved myself) a confirmed list of
>> me
On 2/26/2014 12:34 PM, Paul Moore wrote:
The subject of this email mentions GSoC, it's probably worth
clarifying that the GSoC process is still under way and there isn't
(as far as I know, I'm not involved myself) a confirmed list of
mentors and projects in place yet.
There is a confirmed list
On Wed, 26 Feb 2014 11:40:01 +0200
Serhiy Storchaka wrote:
> There were several suggestions for naming new macros which replace old
> value with new value and then (x)decref old value.
>
> #define Py_XXX(ptr, value)\
> { \
> PyObject *__tmp__ =
On 26 February 2014 16:13, Brett Cannon wrote:
>>>
>>> Please sign up for core-mentorship list and ask questions there.
>>
>>
>> Is this for students too? Because I want to join as a student.
>
>
> The mailing list is for anyone who wants to contribute to Python's
> development and wants some help
I like Py_DECREF_REPLACE. It gives the impression that it decrefs the
original and replaces it.
On Wed, Feb 26, 2014 at 3:40 AM, Serhiy Storchaka wrote:
> There were several suggestions for naming new macros which replace old
> value with new value and then (x)decref old value.
>
> #define Py_XX
On Wed, Feb 26, 2014 at 4:46 AM, Surya wrote:
>
>
>
> On Wed, Feb 26, 2014 at 8:16 AM, Terry Reedy wrote:
>
>> On 2/25/2014 8:56 PM, Surya wrote:
>>
>>> Hey there,
>>>
>>> I am Surya, studying final year of Engineering. I have looked into Core
>>> Python's ideas list and got interested in Email
On Wed, Feb 26, 2014 at 8:16 AM, Terry Reedy wrote:
> On 2/25/2014 8:56 PM, Surya wrote:
>
>> Hey there,
>>
>> I am Surya, studying final year of Engineering. I have looked into Core
>> Python's ideas list and got interested in Email module.
>>
>> I've been working on Django over the past few ye
Nick Coghlan writes:
> sjt writes:
> > although introduction of a new format character is a poor man's
> > consistency, and this is consistency for consistency's sake. (I don't
> > have a big problem with that, though. I *like* consistency!)
>
> It's *not* a new format character, unless y
There were several suggestions for naming new macros which replace old
value with new value and then (x)decref old value.
#define Py_XXX(ptr, value)\
{ \
PyObject *__tmp__ = ptr; \
ptr = new_value; \
Py_DECREF(__tmp__);
13 matches
Mail list logo