id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc,lang,patch,platform
511,[CAGE] deprecate searching runtime/parrot for libraries and includes,allison,,"Currently, the library and include searches hit runtime/parrot in addition to runtime/parrot/library or runtime/parrot/include. This behavior is deprecated and will be removed after 1.4.

This means that all calls to:

{{{
load_bytecode 'library/foo.pbc'
.include 'include/bar.pir'
}}}

Will need to be changed to a simple:

{{{
load_bytecode 'foo.pbc'
.include 'bar.pir'
}}}

And the following is just plain evil and never should have been done in the first place:

{{{
.include 'library/dumper.pir'
}}}

Move dumper.pir to runtime/parrot/include, or split it into the ""library"" portions and the ""include"" portions.",cage,closed,normal,,library,,medium,done,,,,,
