# New Ticket Created by  Will Coleda 
# Please include the string:  [perl #48729]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=48729 >


>From src/ops/object.ops:

inline op setattribute(invar PMC, in INT, invar PMC) :object_classes {
    real_exception(interp, NULL, UNIMPLEMENTED,
            "Integer access to attributes has been deprecated, use
named attribute access instead.");
}

inline op getattribute(out PMC, invar PMC, in INT) :object_classes {
    real_exception(interp, NULL, UNIMPLEMENTED,
            "Integer access to attributes has been deprecated, use
named attribute access instead.");
}

These stubs need to be removed, along with any references/usages.

Replace with string variants of same.

-- 
Will "Coke" Coleda

Reply via email to