[Python-Dev] gcc barfs on recent stringobject changes...

Tim Peters tim.one@home.com
Wed, 9 May 2001 21:07:40 -0400


>>		PyObject *t = (PyObject *)op;
>>   		PyString_InternInPlace(&t);

[Greg Ewing]
> If you want to keep it all on one line, you could try
>
> 	PyString_InternInPlace((PyObject **)&op);

op is declared "register" so it's not strictly legal to apply the address-of
operator to it regardless.  Besides, Guido pays me by the line <wink>.

or-maybe-by-the-useless-checkin-to-judge-from-the-last-24-hours-ly
    y'rs  - tim