[perl #39638] [PATCH]38594

2006-06-28 Thread via RT
# New Ticket Created by Vishal Soni # Please include the string: [perl #39638] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=39638 > Hi, This was a straight forward fix. The line number was being decremented at the start

problem compiling UTF8 on Win32

2006-06-28 Thread mmalaure
still happens even with 6.2.12 r10959 when "nmake" compiles UTF8 source file on Win32. was able to smoke fine until a few days ago so really puzzled. In file included from C:\DOCUME~1\Maxime\LOCALS~1\Temp\ghc4684.hc:4: C:/ghc/ghc-6.4.2/include/HsBase.h:506: warning: "struct dirent" declared inside

Re: Using Perl in QA departments

2006-06-28 Thread Luke Closs
On 27-Jun-06, at 4:30 AM, Gabor Szabo wrote: On 6/26/06, Leon Brocard <[EMAIL PROTECTED]> wrote: This is really neat. You might want to add a link to Test::Expect too, which makes it almost to easy to test terminal-based programs. I only recently saw Test::Expect, I'll look at it more deeply

Re: Pm's YAPC::NA talk online

2006-06-28 Thread João Cruz Morais
Hi there! I'm new to Parrot but reading from your slides if I understood correctly: - PGE parses input according to a grammar and produces a derivation tree. - TGE transforms the parse tree into an abstract syntax tree. With that said I have some questions (i'm sorry if they were answered alread

Re: Pm's YAPC::NA talk online

2006-06-28 Thread chromatic
On Wednesday 28 June 2006 02:26, João Cruz Morais wrote: > With that said I have some questions (i'm sorry if they were answered > already somewhere): > - Whats the point of using PGE+TGE over the good old LEX+YACC besides the > better regexps? Transforming trees with real objects is a lot easier

Re: Pm's YAPC::NA talk online

2006-06-28 Thread Jonathan Scott Duff
I'm no expert, but I'll hazard some answers: On Wed, Jun 28, 2006 at 04:26:45AM -0500, João Cruz Morais wrote: > I'm new to Parrot but reading from your slides if I understood correctly: > - PGE parses input according to a grammar and produces a derivation tree. > - TGE transforms the parse tree

Re: Using Perl in QA departments

2006-06-28 Thread Luke Closs
On 27-Jun-06, at 12:34 PM, Luke Closs wrote: I just gave a talk about it here at YAPC, so the video should be available online soon. FWIW, my slides are available here: http://awesnob.com/perl-on-selenium/ Luke

Re: Expect on Windows

2006-06-28 Thread Leon Brocard
On 6/28/06, Gabor Szabo <[EMAIL PROTECTED]> wrote: As Test::Expect was just mentioned here, I would like to know why Expect and thus Test::Expect does NOT work on Windows? Well, Test::Expect is a wrapper. Test::Expect works on Windows if and only if Expect works on Windows. It has this comment,

Re: problem compiling UTF8 on Win32

2006-06-28 Thread mmalaure
having PUGS_EMBED set to "perl5" was the issue. not setting it does the trick and pugs smokes Ok. rgds. [EMAIL PROTECTED] wrote: > still happens even with 6.2.12 r10959 when "nmake" compiles UTF8 source > file on Win32. > was able to smoke fine until a few days ago so really puzzled. > > In file i

[svn:perl6-synopsis] r9719 - doc/trunk/design/syn

2006-06-28 Thread audreyt
Author: audreyt Date: Wed Jun 28 18:37:41 2006 New Revision: 9719 Modified: doc/trunk/design/syn/S06.pod Log: * S06: anonymous methods is part of Perl 6, so we use that instead of the Perl5esque "sub" for FETCH and STORE. Modified: doc/trunk/design/syn/S06.pod ==

[svn:perl6-synopsis] r9720 - doc/trunk/design/syn

2006-06-28 Thread audreyt
Author: audreyt Date: Wed Jun 28 18:43:52 2006 New Revision: 9720 Modified: doc/trunk/design/syn/S06.pod Log: * S06: Macros now re-splice in runtime when called as functions; this closes the unspecced "taking ¯o as an object and call it" loophole in S06. Modified: doc/trunk/design/syn/S06

[svn:perl6-synopsis] r9721 - doc/trunk/design/syn

2006-06-28 Thread audreyt
Author: audreyt Date: Wed Jun 28 18:49:13 2006 New Revision: 9721 Modified: doc/trunk/design/syn/S06.pod doc/trunk/design/syn/S10.pod doc/trunk/design/syn/S12.pod Log: * Separate multi/single dispatch and method/sub completely in the nomenclature; the "invocant" is always the object

[svn:perl6-synopsis] r9722 - doc/trunk/design/syn

2006-06-28 Thread larry
Author: larry Date: Wed Jun 28 19:50:48 2006 New Revision: 9722 Modified: doc/trunk/design/syn/S12.pod Log: enum clarifications from dduncan++ Modified: doc/trunk/design/syn/S12.pod == --- doc/trunk/design/syn/S12.po

Test::Harness wrangling

2006-06-28 Thread Andy Lester
Tomorrow, Adam Kennedy and I (and Schwern?) will be banging on Test::Harness. Any bugs that we especially need to work on? xoxo, Andy -- Andy Lester => [EMAIL PROTECTED] => www.petdance.com => AIM:petdance

[svn:perl6-synopsis] r9723 - doc/trunk/design/syn

2006-06-28 Thread larry
Author: larry Date: Wed Jun 28 22:49:04 2006 New Revision: 9723 Modified: doc/trunk/design/syn/S04.pod doc/trunk/design/syn/S12.pod Log: Revised some ambiguous sentences. Modified: doc/trunk/design/syn/S04.pod ==

Namespaces Redux

2006-06-28 Thread Matt Diephouse
I've started implementing namespace support in Tcl this week (yay!). But I've run into a bit of trouble, so I have a couple questions: The get_namespace opcode gets namespaces from the root namespace. Should it get namespaces from the HLL namespace instead? The PDD isn't explicit either way, but