Re: Native data structure for parrot?

2004-12-29 Thread Brent 'Dax' Royal-Gordon
Graciliano M. P. [EMAIL PROTECTED] wrote: What I'm thinking is that in Parrot, as is in Perl, we have dynamic data structures, like dynamic HASH and ARRAYs, with SCALARs that can grow as they want. To write our code this help a lot, but some parts of our algorithms need memory and speed,

Re: WWW::Mechanize 1.08 fails on some tests

2004-12-29 Thread Michael G Schwern
On Wed, Dec 29, 2004 at 09:45:13AM +0200, Gabor Szabo wrote: Looking at t/live/follow.t shows that it wants to follow a link using text_regex = qr/Business.Solutions/i but currently there is no such link on Google. At least when *I* try to access Google with a browser I don't see such

Re: WWW::Mechanize 1.08 fails on some tests

2004-12-29 Thread Gabor Szabo
On Wed, 29 Dec 2004, Michael G Schwern wrote: At least when *I* try to access Google with a browser I don't see such a link. I do see such a link but its possible Google is showing you a different page because you're coming from .il. yes, that might be the case. This brings me to the question, or

Re: Win32 dynclasses build issues

2004-12-29 Thread Nicholas Clark
On Wed, Dec 29, 2004 at 12:41:12AM -, Jonathan Worthington wrote: At the moment, the Parrot executable is building fine, but dynclasses bit hits some problems. Some of them were down to various Win32-isms, e.g. \'s and spaces featuring in paths. The attached patch addresses these.

Re: Native data structure for parrot?

2004-12-29 Thread Leopold Toetsch
Graciliano M. P. wrote: Will be nice to can write this directly on Perl6: int the_matrix[10][10] ; Perl6 and thus Parrot supports arrays of native types like int and bitarrays. Also, will be nice to can use the same idea with hash tables: int , bool static_hash{1000} ; But while plain

Re: Win32 dynclasses build issues

2004-12-29 Thread Leopold Toetsch
Jonathan Worthington [EMAIL PROTECTED] wrote: Sorry for not being about for quite a while. Time to get Parrot building fully on Win32 again. :-) Great, thanks. libparrot.def : error LNK2001: unresolved external symbol Parrot_setflag Obsolete API - isn't existing anymore. Removed. leo

[perl #33589] [PATCH] --no-lines and --help for ops2*.pl

2004-12-29 Thread via RT
# New Ticket Created by Bernhard Schmalhofer # Please include the string: [perl #33589] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=33589 Hi, on http://www.parrotcode.org/patchfaq.html there is a new mail

Re: Native data structure for parrot?

2004-12-29 Thread Luke Palmer
Graciliano M. P. writes: Will be nice to can write this directly on Perl6: int the_matrix[10][10] ; Or rather: my int @matrix is dim(10,10); Perl 6 has been planning support for such naive data structures for a long time. I'm not sure about hashes. They have enough internal

Re: ponie-2 on x86 solaris 2.5.1

2004-12-29 Thread Nicholas Clark
Thanks for trying this out. I assume that you're trying the ponie-2 tarball from CPAN? If so, that's somewhat out of date, so this might be part of the problems (but not all, I suspect). All the errors you've reported so far appear to come from parrot, rather than being ponie specific so it's

Re: WWW::Mechanize 1.08 fails on some tests

2004-12-29 Thread Andy Lester
I do see such a link but its possible Google is showing you a different page because you're coming from .il. Yes, that's the case. It fails for Corion in Germany as well. We've been through this before. The original tests were just to google.com, but didn't work in all countries. So I'll

StringArray PMC

2004-12-29 Thread Simon Glover
Does anything actually use this PMC, or has it been completely superseded by the ResizableStringArray and FixedStringArray PMCs? Simon

[NUDGE] split on REs

2004-12-29 Thread William Coleda
I'd like to get Tcl's [namespace] implemented, but this will be very difficult until I can do: $P0 = split ::+, $S0 or something equivalent with PGE.

Re: Win32 dynclasses build issues

2004-12-29 Thread Jonathan Worthington
Leopold Toetsch [EMAIL PROTECTED] wrote: Jonathan Worthington [EMAIL PROTECTED] wrote: libparrot.def : error LNK2001: unresolved external symbol Parrot_setflag Obsolete API - isn't existing anymore. Removed. OK, with the attached patch (which feels kinda hacky, but works) the build completes.

Re: [NUDGE] split on REs

2004-12-29 Thread Patrick R. Michaud
On Wed, Dec 29, 2004 at 08:09:10PM -0500, William Coleda wrote: I'd like to get Tcl's [namespace] implemented, but this will be very difficult until I can do: $P0 = split ::+, $S0 or something equivalent with PGE. Nudge noted. At the moment I've been holding off on progressing too far

Re: [NUDGE] split on REs

2004-12-29 Thread William Coleda
Yes, I was using a regular expression, not a rules. =-) Patrick R. Michaud wrote: On Wed, Dec 29, 2004 at 08:09:10PM -0500, William Coleda wrote: I'd like to get Tcl's [namespace] implemented, but this will be very difficult until I can do: $P0 = split ::+, $S0 or something equivalent with PGE.