[perl #35994] [PATCH] p6rules named capture tests

2005-05-27 Thread via RT
# New Ticket Created by Dino Morelli # Please include the string: [perl #35994] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=35994 > Added tests in t/p6rules/capture.t for named alias captures. file: t/p6rules/capture

[perl #35997] [PATCH] configure gdbm with MinGW32

2005-05-27 Thread François
# New Ticket Created by François PERRAD # Please include the string: [perl #35997] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=35997 > This patch allows configuration of gdbm with MinGW32. Francois Perrad gdbm.patch

Re: BigInt.pmc patch

2005-05-27 Thread Leopold Toetsch
Kevin Tew <[EMAIL PROTECTED]> wrote: > Adds tests and fixes incorrect implementation. Thanks, applied - 8173 leo

Re: wanted: hash stress tests

2005-05-27 Thread Leopold Toetsch
Bob Rogers <[EMAIL PROTECTED]> wrote: > This patch adds deletion to the same case. Testing also caught a > missing label in the original version, for a branch that was never > taken. Thanks, applied - 8175 leo

Re: [perl #35980] [PATCH] configure GMP with MinGW32

2005-05-27 Thread Leopold Toetsch
François PERRAD <[EMAIL PROTECTED]> wrote: > a new version of this patch. Thanks, applied - 8174 leo

Re: [perl #35959] index opcode fails with large negative offset

2005-05-27 Thread Leopold Toetsch
Roger Browne <[EMAIL PROTECTED]> wrote: > This pasm fragment... > index I1, "u", "t", -123456 > print I1 > print "\n" > end > ...prints -32 instead of the expected -1. ... or somethin else, start wasn't verfied properly. Fixed (r8176), thanks for testing. leo

Re: [perl #35997] [PATCH] configure gdbm with MinGW32

2005-05-27 Thread Leopold Toetsch
François" PERRAD <[EMAIL PROTECTED]> wrote: > This patch allows configuration of gdbm with MinGW32. Thanks, applied - 8177 leo

[perl #36003] Opcode 'mod' fails for negative integers

2005-05-27 Thread via RT
# New Ticket Created by Roger Browne # Please include the string: [perl #36003] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=36003 > The following pir program: .sub test @MAIN $I1 = mod 3, 3 print "3 mod 3 = "

Re: [perl #36003] Opcode 'mod' fails for negative integers

2005-05-27 Thread Leopold Toetsch
Roger Browne (via RT) wrote: The following pir program: [ ... ] ...but I believe it should print this: 3 mod 3 = 0 -3 mod 3 = 0 3 mod -3 = 0 -3 mod -3 = 0 IMHO too. I've updated intval_mod to consider the case of zero reminder with negative args (rev 8178). Thanks for testing, leo

tracing and debugging

2005-05-27 Thread Leopold Toetsch
Parrot's capabalities are increasing steadily, programs written for Parrot especially those emitted from compilers are getting bigger and bigger. Debugging Parrot programs didn't keep up with the pace and is becoming a PITA. Some notes. *) tracing or debugging an interpreter shall not influen

Re: tracing and debugging

2005-05-27 Thread Leopold Toetsch
Leopold Toetsch wrote: [2] see USE_TRACE_DEBUG in src/runops_cores.c USE_TRACE_INTERP sorry, leo

Re: [perl #35976] [PATCH] Add Unicode, Hex, and Octal escapes to Tcl

2005-05-27 Thread Matt Diephouse
Will Coleda <[EMAIL PROTECTED]> wrote: > The attached patch provides a (possibly naive) implementation of the > remaining escape characters from: > > http://www.tcl.tk/man/tcl8.5/TclCmd/Tcl.htm#M16 > > that were missing, namely > > \ooo (octal) > > \xhh (hex) > > and > > \u (unicode) >

Re: State of ParTcl [r8193]

2005-05-27 Thread William Coleda
Thanks very much to Matt for his recent checkins, cleaning up tclparser.pmc, and eliminating a bit of unnecessary code. The compiler broke after some recent checkins (not Matt's fault). I've added a test for this which is now passing, which should hopefully *keep* it passing. =-) With Matt's