Re: Recent news about PGE

2005-11-06 Thread Autrijus Tang
On 11/6/05, Patrick R. Michaud <[EMAIL PROTECTED]> wrote: > First, for null input, PGE (and p6rules) will likely parse this > by returning a Match object indicating "false", and attempting > to compile that object will probably return a null subroutine. Yes, that sounds sane. > The other case is

Re: [perl #37622] [TODO] Unicode implementation of downcase opcode

2005-11-06 Thread Joshua Hoblitt
Also, is this something that really should be an opcode instead of a standard library function? -J -- On Sun, Nov 06, 2005 at 11:55:00AM -1000, Joshua Hoblitt wrote: > On Sun, Nov 06, 2005 at 01:42:00PM -0800, Matt Diephouse wrote: > > > > Patrick Michaud was kind enough to provide a link to t

Re: [perl #37622] [TODO] Unicode implementation of downcase opcode

2005-11-06 Thread Joshua Hoblitt
On Sun, Nov 06, 2005 at 01:42:00PM -0800, Matt Diephouse wrote: > > Patrick Michaud was kind enough to provide a link to this table of > conversions on IRC: http://www.unicode.org/Public/UNIDATA/ > CaseFolding.txt ICU provides a function to do that: -- /** * The given character is mapped to

[perl #37622] [TODO] Unicode implementation of downcase opcode

2005-11-06 Thread via RT
# New Ticket Created by Matt Diephouse # Please include the string: [perl #37622] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=37622 > Parrot is missing a unicode implementation of the downcase opcode. This is causing t

[perl #37358] [TODO] Tests - cleanup use of temp files

2005-11-06 Thread Bernhard Schmalhofer via RT
> [EMAIL PROTECTED] - Mi 05. Okt 2005, 14:34:17]: > > Many of the tests write temp files into the current working dir. Even > worse, some of these files many not get cleaned up if the tests exit > prematurely. Tests should be converted to use File::Temp where ever > possible. Personally I don't

Re: smoke results

2005-11-06 Thread Nick Glencross
Nick Glencross wrote: A few new red splodges have appeared on the HP-UX smokes. In future does it seem helpful if I investigate these? I've just had a quick look at some of them now: freeze_26/27: exposes a potential problem in the imcc optmiser which I also see in valgrind on Linux. In try_al

Re: Recent news about PGE

2005-11-06 Thread Patrick R. Michaud
On Sat, Nov 05, 2005 at 11:45:02PM +0100, Autrijus Tang wrote: > I noticed that zero-length input is now rejected by ; I tried > to fix it, but could not determine where the fix should go. A trace is > listed below: > > compilers/pge$ echo 'rule ' | parrot demo.pir > Missing term at offset 0

release done - a note WRT shared lib & make install

2005-11-06 Thread Leopold Toetsch
There is a small annoyance though, MANIFEST.generated still refers to the 0.3.0 shared lib. rafl has detected the bug shortly after I uploaded the release to CPAN and has fixed it in svn already. Please s/0\.3\.0/0.3.1/ in that file or use svn. Thanks and may the checkins start again, leo

Parrot 0.3.1 "Wart" Released

2005-11-06 Thread Leopold Toetsch
On behalf of the Parrot team I'm proud to announce the release of Parrot 0.3.1. I'd like to thank all involved people as well as our sponsors for supporting us. What is Parrot? Parrot is a virtual machine aimed at running Perl6 and other dynamic languages. Parrot 0.3.1 changes and news - Varia

Re: Recent news about PGE

2005-11-06 Thread Autrijus Tang
On 11/4/05, Patrick R. Michaud <[EMAIL PROTECTED]> wrote: > As a quick example, one can now use the subrule > to parse a perl 6 rule expression, and the Match object > that is returned contains the parse tree. Other examples > and demonstrations or parsing are in the examples/pge/ > directory. p

smoke results

2005-11-06 Thread Nick Glencross
A few new red splodges have appeared on the HP-UX smokes. In future does it seem helpful if I investigate these? I've just had a quick look at some of them now: freeze_26/27: exposes a potential problem in the imcc optmiser which I also see in valgrind on Linux. In try_allocate, mem_sys_allocate

Re: [perl #37577] [PATCH] Fix a couple of minor niggles (-1 -> uint, K&R prototype)

2005-11-06 Thread Joshua Juran
On Nov 5, 2005, at 4:27 PM, Joshua Hoblitt via RT wrote: [EMAIL PROTECTED] - Tue Nov 01 04:52:22 2005]: This patch fixes two classes of issue. * Don't assign -1 to an unsigned variable; use ~0U instead as it makes it clear that the value is intended to be out-of-band (g++ warned about this,