Re: Slightly OT: zip() for Perl5?

2005-10-22 Thread Darren Duncan
At 5:32 PM -0400 10/21/05, Mark Reed wrote: Is there a CPAN module which provides the functionality of ¥/zip() for Perl5? I don't see anything obvious in the Bundle::Perl6 stuff. Not hard to write, of course, just wondering if it's been done . . . The List::MoreUtils CPAN module does provide

Re: new sigil

2005-10-22 Thread Darren Duncan
At 3:26 PM +0100 10/22/05, Nicholas Clark wrote: At the risk of re-enforcing my apparent optimism. On Thu, Oct 20, 2005 at 04:02:10PM -0700, Darren Duncan wrote: that the next best one to exploit is ¤ (euro; unicode=20AC; utf8=E282AC), and the next best is Woah. You've just demonstrated wh

Re: new sigil

2005-10-22 Thread John Macdonald
On Fri, Oct 21, 2005 at 09:35:12AM -0400, Rob Kinyon wrote: > On 10/21/05, Steve Peters <[EMAIL PROTECTED]> wrote: > > On Fri, Oct 21, 2005 at 02:37:09PM +0200, Juerd wrote: > > > Steve Peters skribis 2005-10-21 6:07 (-0500): > > > > Older versions of Eclipse are not able to enter these characters

Re: new sigil

2005-10-22 Thread Aaron Crane
Kaoru Maeda writes: > Darren Duncan wrote: > > the next best is £ > Isn't that 0x23 in UK? I imagine that someday all the comment lines > cause syntax errors in UK... U+00A3 "POUND SIGN" is at 0x23 in ISO 646-GB (aka BS 4730), true. Fortunately, that character set is almost never used. I think

[perl #37455] make hello fails

2005-10-22 Thread Bernhard Schmalhofer via RT
> [bernhard - Do 20. Okt 2005, 13:35:43]: > > When running 'make test' the command > >./parrot -o examples/pasm/hello.o examples/pasm/hello.pbc > > fails to create examples/pasm/hello.o. Instead a file with the name > 'exex_output.o' is generated. It looks like the name of the output file

Re: new sigil

2005-10-22 Thread Nicholas Clark
At the risk of re-enforcing my apparent optimism. On Thu, Oct 20, 2005 at 04:02:10PM -0700, Darren Duncan wrote: > that the next best one to exploit is ¤ (euro; > unicode=20AC; utf8=E282AC), and the next best is Woah. You've just demonstrated why Euro is far worse than any of the other "Unicod

Re: Accessing parrot functions/PMCs with Pugs

2005-10-22 Thread Autrijus Tang
Christian Renz wrote: > I recently got my feet wet with Pugs. So far, it's been fun > :-). Cool! > However, I couldn't find any information on how to access > functions defined in parrot, or even how to use classes defined as > PMCs in parrot. Is this possible already? If Pugs is linked with Par

Re: new sigil

2005-10-22 Thread John Adams
-Original Message- From: Nicholas Clark <[EMAIL PROTECTED]> > And for anyone who says "upgrade", please note that many firms in the real world are still forcing a base perl version of 5.005_03 or 5.6.1 for development. Still. My weekend project is to demonstrate that you are an optimist.

Re: new sigil

2005-10-22 Thread Nicholas Clark
On Fri, Oct 21, 2005 at 09:42:00AM +0100, Carl Franks wrote: > Where did you get ALT-155 from? Code page 437: http://www.kostis.net/charsets/cp437.htm On Fri, Oct 21, 2005 at 06:07:47AM -0500, Steve Peters wrote: > On Fri, Oct 21, 2005 at 09:42:00AM +0100, Carl Franks wrote: > > Where did you ge

[perl #36197] [PATCH] make install fails with MinGW32

2005-10-22 Thread Joshua Hoblitt via RT
Applied as r9533. Thanks. -J

Re: wxParrot -- linking problems

2005-10-22 Thread Roger Browne
Mattia Barbon wrote: > ... or you might use > the C++-to-C bindings that have been created for wx.NET and/or wxEiffel. wxEiffel can be accessed from here: http://eiffelzone.com/esd/wxeiffel/index.html It hasn't been maintained for a few years, but the C bindings might still be a useful basis for

[perl #37503] [BUG] r9520 broke amd64

2005-10-22 Thread Joshua Hoblitt via RT
(gdb) run config_lib.pasm Starting program: /home/dull/jhoblitt/parrot/miniparrot config_lib.pasm [Thread debugging using libthread_db enabled] [New Thread 46912496258176 (LWP 18777)] [New Thread 1082132832 (LWP 18780)] [New Thread 1090525536 (LWP 18781)] Program received signal SIGSEGV, Segmentat

[perl #37503] [BUG] r9520 broke amd64

2005-10-22 Thread via RT
# New Ticket Created by Joshua Hoblitt # Please include the string: [perl #37503] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=37503 > All revs post r9519 are broken on amd64. r9519 builds OK. -- /usr/bin/perl5.8.7 bui

[perl #37501] [PATCH] Enhanced tests for Parrot-to-JSON conversion (with attachment this time)

2005-10-22 Thread via RT
# New Ticket Created by Roger Browne # Please include the string: [perl #37501] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=37501 > These tests exercise feature "_json" of runtime/parrot/library/JSON.imc, which dumps Pa

[perl #37500] [PATCH] Enhanced tests for Parrot-to-JSON conversion

2005-10-22 Thread via RT
# New Ticket Created by Roger Browne # Please include the string: [perl #37500] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=37500 > These tests exercise feature "_json" of runtime/parrot/library/JSON.imc, which dumps Pa

Re: wxParrot -- linking problems

2005-10-22 Thread Mattia Barbon
On Sat, 22 Oct 2005 09:33:50 +0200 Christian Renz <[EMAIL PROTECTED]> wrote: Hello, > How do I find the right symbol name for a function? For example, the > void wxBell(void) function can be found in the library as __Z6wxBellv > (found using otool -vT /usr/lib/libwx.dylib), but I guess on Wind

Accessing parrot functions/PMCs with Pugs

2005-10-22 Thread Christian Renz
Hi all, I recently got my feet wet with Pugs. So far, it's been fun :-). However, I couldn't find any information on how to access functions defined in parrot, or even how to use classes defined as PMCs in parrot. Is this possible already? Greetings, Christian -- [EMAIL PROTECTED] - http://ww

wxParrot -- linking problems

2005-10-22 Thread Christian Renz
Hi all, I've recently decided to try to hook up the wxWidgets GUI library with parrot and Pugs. I haven't dabbled much with parrot yet so I consider this a good way to learn more :-). Right at the start, I ran into a curious problem loading the Wx libraries with loadlib. (I'm on Mac OS X 10.4, b