On 6/11/08 15:39, Casey West wrote:
Hi,
Apache2::Reload relies on ModPerl::Util::unload_package_pp to
disassemble a stash entry before importing the code again. I like how
it does this with two exceptions.
Thanks.
First, prototypes. unload_package_pp() takes care to retain the
prototype when
Casey West wrote:
> On Sat, Nov 8, 2008 at 8:55 PM, Geoffrey Young
> <[EMAIL PROTECTED]> wrote:
>> Geoffrey Young wrote:
>>> -undef &$fullname;
>>> +delete ${$fullname}{CODE};
>>>
>>> I swear there is some p5p history here that treats that slot differently
>>> when it's un
On Sat, Nov 8, 2008 at 8:55 PM, Geoffrey Young
<[EMAIL PROTECTED]> wrote:
> Geoffrey Young wrote:
>>
>> -undef &$fullname;
>> +delete ${$fullname}{CODE};
>>
>> I swear there is some p5p history here that treats that slot differently
>> when it's undef versus exists. IIRC an
Geoffrey Young wrote:
>
> -undef &$fullname;
> +delete ${$fullname}{CODE};
>
> I swear there is some p5p history here that treats that slot differently
> when it's undef versus exists. IIRC an early 5.8.0 iteration broke
> mod_perl because of exactly this (or, if you pr
-undef &$fullname;
+delete ${$fullname}{CODE};
I swear there is some p5p history here that treats that slot differently
when it's undef versus exists. IIRC an early 5.8.0 iteration broke
mod_perl because of exactly this (or, if you prefer, mod_perl exposed a
feature of p