Re: Working at FOSDEM

2020-01-04 Thread Andrew Shitov
Hi guys! Thanks for the reaction. I passed the table to TPF, I hope they can make a good use of it. I will ask Stuart to contact you. On Sat, 4 Jan 2020 at 20:12, Patrick Spek via perl6-users < perl6-us...@perl.org> wrote: > On Fri, 3 Jan 2020 15:43:23 +0100 > Andrew Shitov wro

Working at FOSDEM

2020-01-03 Thread Andrew Shitov
if somebody wants to join. Regards -- Andrew Shitov __ a...@shitov.ru | http://shitov.ru

Re: Perl6 vs Julia

2019-12-09 Thread Andrew Kirkpatrick
y? > What deficiencies in existing languages are they trying to address? > > The belief that Yet Another Programming Language is the answer to the > world's problems is a persistent, but (IMNSHO) a naive one. > > On 12/8/19, Andrew Shitov wrote: > > Let’s not hide the fact

Re: Perl6 vs Julia

2019-12-08 Thread Andrew Shitov
las 4:38, Tom Blackwood () > escribió: > >> Hello >> >> How do you think of Julia language? >> >> https://en.wikipedia.org/wiki/Julia_(programming_language) >> >> It says it is also influen

Re: Perl6 -> Raku? whats the scope?

2019-10-15 Thread Andrew Shitov
ything on the rename? is it "Raku" ? > > The decision to rename "Perl 6" to "Raku" has been made. The coming weeks > / months / years, the name "Perl 6" will be replaced by "Raku".

Re: Perl6 -> Raku? whats the scope?

2019-10-15 Thread Andrew Shitov
PM N6Ghost wrote: > Starting to see posts, as if the decision was made already but have not > see any offical > post anywhere, i can find. everything seems to flow from a thread on > github somehwere > anyone know anything on the rename? is it "Raku" ?

Re: learning resources for perl6 beginner

2019-08-24 Thread Andrew Shitov
. > > For beginner of perl6, can you suggest some resources including online > documentation or books to get start? > > thanks & regards > Wesley > -- Andrew Shitov __ a...@shitov.ru | http://shitov.ru

Re: nil mystery

2018-04-30 Thread Andrew Kirkpatrick
, ToddAndMargo <toddandma...@zoho.com> wrote: > >> On Sun, Apr 29, 2018 at 10:20:48PM -0700, ToddAndMargo wrote: >>> >>> On 04/29/2018 10:12 PM, ToddAndMargo wrote: >>>> >>>> On 04/29/2018 09:32 PM, Andrew Kirkpatrick wrote: >>>>> &

Re: nil mystery

2018-04-29 Thread Andrew Kirkpatrick
There is not enough context to answer or even reproduce the problem - how are the variables declared and what values do they have just prior to this line? Also, what version of rakudo? On 30 April 2018 at 11:29, ToddAndMargo wrote: > Hi All, > > These two throw an

Re: who own my code?

2017-10-21 Thread Andrew Kirkpatrick
You'll need to read up on the laws in your area, but generally contracts have IP ownership clauses to ensure the employer ends up with it. Without a contract, it's seems likely there was no such transfer and you remain the owner. On 21 Oct 2017 8:26 PM, "ToddAndMargo"

Re: Tip: hash indexing

2017-10-03 Thread Andrew Kirkpatrick
Thanks, your script enticed me to explore different ways of constructing a hash table. I dimly recall something about map having access to an index variable, but couldn't find it documented so maybe I was dreaming. The process of figuring out these approaches highlighted that so much perl6

RE: Offering my help with the Perl6 Text::Markdown module

2017-09-17 Thread andrew
I’ve added you to the repository – sorry about the delay, and thanks for the help with the module! From: JJ Merelo Sent: Sunday, September 17, 2017 4:51 AM To: and...@egeler.us Cc: perl6-us...@perl.org Subject: Offering my help with the Perl6 Text::Markdown module Hi, Andrew: This is JJ Merelo

Re: Announce: Rakudo Star Release 2017.07

2017-07-25 Thread Andrew Kirkpatrick
I assume the meaning is, roughly when is the implementation expected to cover the entire spec? Answering this is probably an exercise in futility, because its up to the community and not anyone in particular. On 25 July 2017 at 17:00, Elizabeth Mattijsen wrote: >> On 25 Jul

Re: Security and modules question

2017-07-18 Thread Andrew Kirkpatrick
I suggest keeping a separate installation of perl6 if you are going to use it as root, and maintaining strict permissions by setting an appropriate umask such as 0077 in root's ~/.profile On 19 July 2017 at 10:53, Todd Chester wrote: > Hi All, > > I have been wondering

Re: clone and deep copy of arrays

2017-07-11 Thread Andrew Kirkpatrick
I presume that this is somewhat accurate: https://rosettacode.org/wiki/Deepcopy#Perl_6 On 11 July 2017 at 19:56, Gabor Szabo wrote: > Hi, > > I wonder what does .clone do and how can I create a deep copy or deep > clone of an array? > > Reading

Re: for loop index question

2017-02-28 Thread Andrew Kirkpatrick
The zip operator in this case takes two sequences and interleaves them into a single sequence. It might be useful if you have handy or can generate a list of keys and a list of values you want to put together in pairs using => to create a hash table. Your explicit approach makes sense for

Re: tail call optimization

2016-11-17 Thread Andrew Kirkpatrick
Perl5 goto definitely doesn't grow the stack: perl -E '$n = 0; sub wah { return if $_[0] < 1; $n++; @_=($_[0]-1); goto }; wah(shift); say "done $n"' 1000 But IIRC goto is more about fooling caller() than TCO, so its not that really fast thing some users expect. On 18 November 2016 at

Re: [perl #129311] Simple Grammar Goes into infinite loop

2016-09-21 Thread Andrew Buchanan
Ok, that clarifies things. Now that I understand what is happening, it is straightforward to recognise and fix the problem. A sentence in the documentation might help other perl 5 transitioners from getting bitten, perhaps at the explanation of the * quantifier. > On 21 Sep 2016, at 6:35

Re: [perl #129311] Simple Grammar Goes into infinite loop

2016-09-20 Thread Andrew Buchanan
Is this also technically correct, even though it clearly shouldn't match? perl6 -e '"foo" ~~ /(.*)+\:/' # hangs In either case, going into an infinite loop is not exactly DWIM. > On 20 Sep 2016, at 9:12 PM, Will Coleda via RT > wrote: > > On Tue Sep 20

Re: Killer Features of Perl 6

2016-08-20 Thread Andrew Kirkpatrick
Numeric tower String manipulation at the byte, code-point and character levels Metaoperators NativeCall Multiple dispatch Rich and gradual type system Inline::* modules especially Inline::Perl5 Junctions Laziness On 21 August 2016 at 08:46, Steve Mynott wrote: > Grammars

Re: Perl 6 Advocacy Suggestion

2016-01-20 Thread Andrew Kirkpatrick
I agree that getting Perl6 into the curricula is a good idea, and comparing it to Python if done reasonably and politely would help the cause of those who want to migrate their course over. That said I don't think that those fine folk on Perlmonks are all that correct about the lack of a business

Re: signature to preserve @*ARGFILES ?

2015-12-01 Thread Andrew Kirkpatrick
@yary, I'm using linux and for your program with the sole option -t Rakudo 2015.07.2: (Bool) :True: Rakudo 2015.11: Usage: /tmp/test.pl6 [-t=] [<*ARGS> ...] On 2 December 2015 at 02:36, yary wrote: > This variation confuses me. I expect $t to be constrained to "Str", > but

Re: signature to preserve @*ARGFILES ?

2015-11-28 Thread Andrew Kirkpatrick
Tangentally related, I gave this program a go and the first separator I tried was a space, but found that while other strings work, one or more spaces doesn't. I tried -t and --t, with or without an equals sign to no avail: $ ./padded-cols.pl6 -t=" " padded.txt Cannot invoke this object in

Re: What are Perl 6's killer advantages over Perl 5?

2015-08-11 Thread Andrew Kirkpatrick
Built-in facilities for the language to parse, transform and extend itself (std grammar, macros). Prospect of multiple back-ends (compile to dotnet or LLVM targets like Javascript). Feel like you're living in the future (Perl6 has been in the future for so long now). On 11 August 2015 at 21:42,

perl6-mode for Emacs?

2015-04-23 Thread Andrew Pennebaker
Could someone publish a perl6-mode to MELPA http://melpa.org/#/ for Emacs users? -- Cheers, Andrew

Re: perl6-mode for Emacs?

2015-04-23 Thread Andrew Kirkpatrick
I noticed this a few days back, haven't tried it yet though: http://melpa.org/#/perl6-mode On 24 April 2015 at 09:17, Andrew Pennebaker andrew.penneba...@gmail.com wrote: Could someone publish a perl6-mode to MELPA for Emacs users? -- Cheers, Andrew

Re: question - languages with set/foo as only base data type

2013-11-17 Thread Andrew Suffield
On Sun, Nov 17, 2013 at 02:10:17PM -0800, Darren Duncan wrote: I recall reading that at least in certain math/logic papers that a programming language type system can be defined logically in terms of pure sets, making it essentially self-defined without needing to rely on external definitions

Re: More patches for building MoarVM on Solaris

2013-09-10 Thread Andrew Dougherty
On Tue, Sep 10, 2013 at 03:29:35PM +0200, Gerhard R. wrote: Appreciated. The only really invasive non-obvious one is patch 4. Solaris cc doesn't support anonymous unions, but MVMOSHandleBody uses them extensively. I had to give the anonymous union a name everywhere in order to get it

Parrot 4.7.0 Hispaniolan Released

2012-08-22 Thread Andrew Whitworth
c0bffd371dea653b9881ab2cc9ae5a57dc9f531dfcda0a604ea693c9d2165619 parrot-4.7.0.tar.gz Many thanks to all our contributors for making this possible, and our sponsors for supporting this project. Our next scheduled release is 18 September 2012. The release is indeed a day late. I apologize for the unusual lateness. --Andrew Whitworth

Parrot 4.4.0 Banana Fanna Fo Ferret Released!

2012-05-15 Thread Andrew Whitworth
-4.4.0.tar.gz Alvis Yardley (or a delegate) will release Parrot 4.5.0, the next scheduled monthly release, on June 16th 2012. Subsequent release managers are to be announced. A special thanks to our donors, contributors and volunteers for making this release possible. Enjoy! --Andrew Whitworth

Re: sound distribution practices

2012-04-09 Thread Andrew Whitworth
or, as might be more favorable from a Rakudo perspective, to have Parrot snapshotted into Rakudo release packages. I obviously am not making the releases myself, so I don't know if this is any easier for people in that role. --Andrew Whitworth On Sat, Apr 7, 2012 at 7:27 PM, Patrick R. Michaud pmich

Re: sound distribution practices

2012-04-09 Thread Andrew Whitworth
That solution is fine by me. The real source of the problem is on the Parrot side, and our extremely fragile versioning system for bytecode. This is something that we need to address to help fix the problem in the long term. Exactly how we fix it is a matter for discussion, of course. --Andrew

GSOC 2012

2012-03-27 Thread Andrew Whitworth
sets. Thanks, --Andrew Whitworth

Parrot 4.0.0 Hyperstasis released!

2012-01-17 Thread Andrew Whitworth
this project. Our next scheduled release is 21 February 2012. Enjoy! --Andrew Whitworth

Re: Some Requests from Rakudo

2011-08-21 Thread Andrew Whitworth
is the need to support multiple different languages. We want to provide something, but if we provide too much it's going to create problems with different HLLs, etc. If Rakudo can prototype some of the bare-minimum primitives they need, it might become a good platform for us to build up from. --Andrew

Re: Close($file) required in Perl 6, unlike Perl 5

2011-07-18 Thread Andrew Whitworth
On Mon, Jul 18, 2011 at 10:41 AM, Peter Lobsinger plobs...@gmail.com wrote: The destructor does exactly that, but is not triggered by global teardown. That seems wrong to me, we should be sweeping pools and destroying PMCs on global teardown. If we aren't doing that, it's a bug. --Andrew

Re: Close($file) required in Perl 6, unlike Perl 5

2011-07-18 Thread Andrew Whitworth
tickets requesting fixes would be a great place to start. My suggestion so far would be to add in a destroy override to 6model, try to use it, and see what blows up. Then open a ticket with Parrot and we'll do our best to make it work the way you need. --Andrew Whitworth

Parrot 3.3.0 Fire in the Sky Released!

2011-04-19 Thread Andrew Whitworth
99b81a84bf55a69bc3bbf8bf8dd65bee1417fd1c30c7d08c6859a7a3db892b8f parrot-3.3.0.tar.gz Many thanks to all our contributors for making this possible, and our sponsors for supporting this project. Our next scheduled release is 17 May 2011. Enjoy! --Andrew Whitworth

Re: reading binary stream?

2010-12-28 Thread Andrew Whitworth
That looks like a Parrot problem, trying to force input characters to UTF8. Can you open a ticket at trac.parrot.org for it? Thanks --Andrew Whitworth On Tue, Dec 28, 2010 at 5:41 AM, Hiroki Horiuchi x19...@gmail.com wrote: Hello. This program -- #!/usr/bin/env perl6 use v6; my $h

Parrot 2.11.0 At The ROFLBBQ Released

2010-12-21 Thread Andrew Whitworth
is: 1a62db8793a5baf727a790d9fd58415dcc9f2c0c28b44608701b39792627241c Enjoy! --Andrew Whitworth

Parrot 2.4.0 Sulfur Crest

2010-05-18 Thread Andrew Whitworth
and other compiler hints Many thanks to all our contributors for making this possible, and our sponsors for supporting this project.  Our next scheduled release is 15 June 2010. Enjoy! --Andrew Whitworth

Re: Rakudo Perl 6 development release #28 (Moscow)

2010-04-22 Thread Andrew Shitov
Moscow.pm also reminds that today (22 Apr) is the birthday of Lenin :-) March 2010 development release of Rakudo Perl #28 Moscow. -- Andrew Shitov __ a...@shitov.ru | http://shitov.ru

Re: Methodicals: A better way to monkey type

2010-04-21 Thread Andrew Whitworth
that have no prior support for them (like Parrot objects) would be very nice to have on Parrot in particular where language interoperation could be a big deal in the future. +1 --Andrew Whitworth On Wed, Apr 21, 2010 at 3:16 AM, Stefan O'Rear stefa...@cox.net wrote: (The following describes a proposed

Parrot 1.5.0 TEH PARROTZ! Released!

2009-08-18 Thread Andrew Whitworth
, and standards Many thanks to all our contributors for making this possible, and our sponsors for supporting this project. Our next scheduled release is 15 September 2009. Enjoy! --Andrew Whitworth

Parrot 1.3.0 Andean Swift released

2009-06-16 Thread Andrew Whitworth
import Many thanks to all our contributors for making this possible, and our sponsors for supporting this project. Our next scheduled release is 21 July 2009. Enjoy! --Andrew Whitworth

Re: New CPAN

2009-05-30 Thread Andrew Whitworth
On Sat, May 30, 2009 at 7:56 AM, Mark Overmeer m...@overmeer.net wrote: * Andrew Whitworth (wknight8...@gmail.com) [090530 00:24]: I agree. Doing one thing well is so much better for everybody then doing a million things poorly. An assorted blob of data repository is far less valuable

Re: New CPAN

2009-05-29 Thread Andrew Whitworth
. --Andrew Whitworth

Re: [perl #44845] [PATCH] C++ cleanups for Solaris CC

2009-04-17 Thread Andrew Dougherty
On Thu, 16 Apr 2009, NotFound via RT wrote: Closing this ticket, the patch is very outdated and nobody is reporting related problems. If someone found any problem with the Solaris C++ compiler, or any other, please crate a new ticket in parrot trac. The files may have moved so that the patch

http://nopaste.snit.ch/15851

2009-03-10 Thread Andrew Whitworth
http://nopaste.snit.ch/15851

Re: [perl #53494] [BUG] --parrot_is_shared=0 IS shared?

2009-02-17 Thread Andrew Dougherty
On Tue, 17 Feb 2009, Will Coleda via RT wrote: On Mon Apr 28 23:52:22 2008, coke wrote: While trying to put the macport for 0.6.1 together, I noticed that the install failed. Tracked it down to the fact that --parrot_is_shared=0 seems to be generating a parrot that relies on a shared

Re: [perl #36283] [TODO] pasm/pir: forbid assignment syntax for inout params

2009-02-13 Thread Andrew Whitworth
. Then the bytecode generator can check that flag to make sure the syntax matches the given opcode. This is bad for a number of reasons, but there don't seem to be many other ways to get all the information we need in one place. --Andrew Whitworth On Wed, Feb 11, 2009 at 7:37 PM, kjstol parrotc

Re: [perl #47940] [CAGE] mk_native_pbc stale

2009-02-09 Thread Andrew Dougherty
On Mon, 9 Feb 2009, Reini Urban via RT wrote: Attached is my current working version. Still as sh version, not converted to perl. docs/project/release_manager_guide.pod updates missing Please review. Index: tools/dev/mk_native_pbc

[perl #62730] Internal Parrot errors leak through when passing some kinds of pairs

2009-01-30 Thread Andrew Whitworth via RT
(and string variables) in all of these places? Or, are we looking to be more general to try and include all stringifiable registers and variables here? -- Andrew Whitworth a.k.a Whiteknight

Re: [perl #41825] [BUG] morph vtable override not working in PIR

2009-01-17 Thread Andrew Whitworth
quite a bit internally. There really isn't any easier and still standard way of changing between types for PMCs. It certainly beats having to invoke PMC methods internally to switch between types. --Andrew Whitworth

Re: [perl #41825] [BUG] morph vtable override not working in PIR

2009-01-17 Thread Andrew Whitworth
sideeffect of a different operation. If we want PMCs to be able to change their types, we want to use something that's specific for that behavior, not a copy that happens to be able to change the type of the things it copies. --Andrew Whitworth

Parrot 0.8.2 Feliz Loro Released!

2008-12-17 Thread Andrew Whitworth
+ Capture_PIR (runtime/parrot/library/Parrot/Capture_PIR.pir) Many thanks to all our contributors for making this possible, and our sponsors for supporting this project. Our next scheduled release is 20 January 2009. Enjoy! --Andrew Whitworth

Re: [perl #41243] [TODO] Link on Win32 with Borland C++

2008-12-16 Thread Andrew Whitworth
that some errors still exist or not. --Andrew Whitworth On Tue, Dec 16, 2008 at 12:49 AM, Will Coleda via RT parrotbug-follo...@parrotcode.org wrote: On Thu Jan 11 09:55:40 2007, stmpeters wrote: On Thu Jan 11 08:57:22 2007, coke wrote: Need details. A recent patch has gotten Parrot to the point

Re: [perl #41243] [TODO] Link on Win32 with Borland C++

2008-12-16 Thread Andrew Whitworth
On Tue, Dec 16, 2008 at 1:20 PM, Ron Blaschke r...@rblasch.org wrote: Some time ago, because of this ticket, I tried with Borland C++ 5.5.1 and 5.82, and failed miserably. But that may just be my bad bcc-foo. Unless someone's keen for this platform and has access to a fairly new (within two

Re: [perl #57410] [TODO] syntactic sugar for named arguments: key = value - Add to PDD19 or deprecate

2008-11-29 Thread Andrew Whitworth
, and does add to readability, e.g. foo(answer=42). I'm in favor of removal, personally. I agree that this syntax doesnt do anything to help readability. --Andrew Whitworth

Re: [perl #37760] [CAGE] [C] imcc - item lists

2008-11-29 Thread Andrew Whitworth
. If other people say we should reject this, I certainly won't complain. --Andrew Whitworth

examples/tutorial/80_closure.pir

2008-11-20 Thread Andrew Whitworth
With closures deprecated, we can kill this example from the tutorial? --Andrew Whitworth.

Re: [perl #60624] [DEPRECATED] PARROT_API changes to PARROT_EXPORT

2008-11-18 Thread Andrew Whitworth
.) this is the rt tracking ticket. the work has begun in the api2export branch. Is this the only purpose of the branch, to change PARROT_API to PARROT_EXPORT? If so, it seems like it could be done in a single sed job and not need an entire branch for it. --Andrew Whitworth

Re: [perl #59660] Storable-2.13 requirement breaks build on OpenSolaris

2008-11-17 Thread Andrew Dougherty
On Sun, 16 Nov 2008, chromatic via RT wrote: Storable 2.18 required in r32744, which should resolve this issue. But the ultimate problem was that the issue was an unnecessary hurdle. At the time of the bug report, I tried building with Storable-2.12 and with 2.18 and observed *no

Re: [perl #59660] Storable-2.13 requirement breaks build on OpenSolaris

2008-11-17 Thread Andrew Dougherty
On Mon, 17 Nov 2008, Andrew Dougherty wrote: On Sun, 16 Nov 2008, chromatic via RT wrote: Storable 2.18 required in r32744, which should resolve this issue. Note, by the way, that perl-5.8.8 only shipped with Storable 2.15. -- Andy Dougherty [EMAIL PROTECTED]

Re: [perl #60564] [TODO] Refactor contexts to be PMCs

2008-11-16 Thread Andrew Whitworth
Since I'm monkeying around in the relevant code anyway, this might be a good task for the next calling_conventions branch. Or, if you prefer, we could create a second branch for this conversion and do the work there. --Andrew Whitworth On Sun, Nov 16, 2008 at 2:02 AM, via RT Allison Randal

Re: Parrot doesn't build on OS X

2008-11-01 Thread Andrew Dougherty
On Sat, 1 Nov 2008, Ovid wrote: For the past few days, Parrot has failed to build on my MacBook. Today I moved my parrot directory and did a fresh svn checkout. perl Configure.pl ran fine without problem. make does fine until about here: $ make Compiling with: xx.c /usr/bin/gcc-4.0

[perl #50040] [BUG] GC makes a namespace entry disappear?

2008-10-21 Thread Andrew Whitworth via RT
maybe a solution was found (or an offending commit isolated). Does this still fail? If not, we can close this ticket. -- Andrew Whitworth a.k.a Whiteknight

[perl #38823] [BUG] solaris 10 w gcc

2008-10-21 Thread Andrew Whitworth via RT
users who can double-check this and see if we still have a problem here? -- Andrew Whitworth a.k.a Whiteknight

Re: [perl #38823] [BUG] solaris 10 w gcc

2008-10-21 Thread Andrew Whitworth
On Tue, Oct 21, 2008 at 9:28 AM, Andy Dougherty [EMAIL PROTECTED] wrote: On Mon, 20 Oct 2008, Andrew Whitworth via RT wrote: On Fri Mar 31 13:29:46 2006, leo wrote: I've tried: $ perl Configure.pl --cc=gcc --link=gcc --ld=gcc --cxx=gcc --verbose-step=gcc and got: Determining

[perl #42105] memory leak in PCCMETHOD together with Parrot_runops_fromc

2008-10-21 Thread Andrew Whitworth via RT
of the PCCMETHOD Compiler, does it still exist? Is it used? Is FixedIntegerArray known to be leaking any memory? -- Andrew Whitworth a.k.a Whiteknight

[perl #53210] [TODO] change new_from_string to init_str

2008-10-21 Thread Andrew Whitworth via RT
consistent. -- Andrew Whitworth a.k.a Whiteknight

Re: [perl #60000] [BUG][IMCC] an :immediate sub cannot load_bytecode

2008-10-20 Thread Andrew Whitworth
to kill globals and make it more reentrant all the way around --Andrew Whitworth

[perl #58974] [TODO][IMCC] replace .return in tailcall context by .tailcall

2008-10-19 Thread Andrew Whitworth via RT
hard would it be to update them? Forgot to post this reply to perl6-internals -- Andrew Whitworth a.k.a Whiteknight

[perl #57430] [TODO] [PDD19] implement .HLL_map 'Foo' = 'Bar'

2008-10-19 Thread Andrew Whitworth via RT
before removal. -- Will Coke Coleda This syntax was added by kjs++ and it appears to work properly. The deprecation of the comma form of .HLL_map is being handled by RT#57432, so we can close this ticket now. -- Andrew Whitworth a.k.a Whiteknight

[perl #39796] [TODO] Implement .loadlib pragma in IMCC

2008-10-19 Thread Andrew Whitworth via RT
the .loadlib pragma work without problems now? Does it still appear to interact negatively with the .HLL pragma? If the .loadlib pragma is implemented and doesn't cause any problems, we should close this ticket. -- Andrew Whitworth a.k.a Whiteknight

[perl #57438] [DEPRECATED] [PDD19] .pragma n_operators

2008-10-18 Thread Andrew Whitworth via RT
, and that programs can continue to generate both n_ and non-n_ opcodes as needed. Pm After the pdd27mmd merge, all the n_* opcodes are gone now. I assume the .pragma n_operators can disappear with them? -- Andrew Whitworth a.k.a Whiteknight

[perl #39615] [TODO] get_outer op not defined in PDDs

2008-10-18 Thread Andrew Whitworth via RT
On Fri Feb 22 00:59:47 2008, kjs wrote: a patch was sent but never applied. I suggest to apply this patch, possibly with minor changes, and close this ticket. Applied in r32003. I hope Allison doesn't mind if I close this ticket? -- Andrew Whitworth a.k.a Whiteknight

[perl #46295] [CAGE] [pdd15oo] Review the docs w.r.t. the new OO implementation

2008-10-18 Thread Andrew Whitworth via RT
all documentation should be improved work that always needs to be done? Are there any specific changes in the code that have not yet been reflected in the documentation? -- Andrew Whitworth a.k.a Whiteknight

[perl #57028] Re: pdd25cx and PGE optable bugs -- detailed analysis

2008-10-18 Thread Andrew Whitworth via RT
at that task tonight or over the weekend, if that's the path that we want to take. -- Andrew Whitworth a.k.a Whiteknight

[perl #59472] [TODO] Randomize hash seed

2008-10-17 Thread Andrew Whitworth via RT
of it. Are there any specific boundaries on how large/small this number has to be, whether it has to be prime or pseudoprime, etc? I'll throw it together if somebody will tell me what the requirements are (if any). -- Andrew Whitworth a.k.a Whiteknight

[perl #59914] Re: building parrot

2008-10-17 Thread Andrew Dougherty
[reforwarding this so it gets in the bug-tracking system] On Wed, 15 Oct 2008, Michael P. Soulier wrote: I'm trying to build parrot on a CentOS 4.6 box and it's failing at link time. gcc -o miniparrot src/main.o src/null_config.o \ -Wl,-rpath=/home/msoulier/downloads/parrot-0.7.1/blib/lib

[perl #56972] Error in link

2008-10-16 Thread Andrew Whitworth via RT
of an issue? If not, I think we can close this ticket. -- Andrew Whitworth a.k.a Whiteknight

[perl #48549] [DEPRECATED] [PDD19] Let .namespace (no args) have empty brackets

2008-10-16 Thread Andrew Whitworth via RT
of PGE in the future, maybe this change could be included in the laundry list of things to do during that time? -- Andrew Whitworth a.k.a Whiteknight

[perl #45959] [TODO] Check arity of sub in mmd_maybe_candidate()

2008-10-16 Thread Andrew Whitworth via RT
to only push on a candidate sub if the arity of the sub matches the arity of the MMD call? If so, what do we compare it to? Also, do we need to check the arity of MultiSub candidates too? Are we sure that Parrot_mmd_maybe_candidate is the right place to be checking arity on these subs? -- Andrew

[perl #46405] [TODO] Reset stacktop or disable GC in Parrot_exit()

2008-10-16 Thread Andrew Whitworth via RT
somewhere else automatically? That, and what is meant here by reset stacktop? I have no idea what that's supposed to mean. -- Andrew Whitworth a.k.a Whiteknight

[perl #31143] [TODO] Interpreter - share MMD tables

2008-10-16 Thread Andrew Whitworth via RT
On Sun Aug 15 13:21:16 2004, coke wrote: Make the MMD tables shareable between interpreters for faster startup. (Though there are issues with this) (From the TODO file) With the pdd27mmd branch merged in now, what's the status of this request? -- Andrew Whitworth a.k.a

[perl #36249] [TODO] Document policy on breakage, er, backward compatibility.

2008-10-16 Thread Andrew Whitworth via RT
have any documents or drafts which address this issue? We are getting close enough to the 0.8 release that's mentioned here as a specific milestone for getting this done. -- Andrew Whitworth a.k.a Whiteknight

[perl #43831] [CAGE] Document how we do function decoration

2008-10-16 Thread Andrew Whitworth via RT
to something more descriptive, like /docs/dev/C_Functions.pod or something. 3) Expand that documentation to include more cases (ARGIN, ARGMOD, ARGOUT, all the *_NULLOK variants of those, etc). Any suggestions? -- Andrew Whitworth a.k.a Whiteknight

[perl #57636] [TODO][PDD19] Document the reason for :unique_reg flag

2008-10-16 Thread Andrew Whitworth via RT
of these ideas into documentation in various files throughout /docs/ http://rt.perl.org/rt3/Ticket/Display.html?id=57636 -- Andrew Whitworth a.k.a Whiteknight

[perl #40124] [TODO] Document HLL mappings

2008-10-16 Thread Andrew Whitworth via RT
to the relevant code, I can try to hack together some docs for it. -- Andrew Whitworth a.k.a Whiteknight

Re: [perl #59830] [PROPOSAL][PDD19] Split .line directive into separate .line and .file directives.

2008-10-12 Thread Andrew Whitworth
line #line and #file in the C preprocessor). What if the .line directive was changed to accept an integer line number, a string filename, or both, optionally? That is, is there a benefit to having two different directives instead of a single directive with dynamic behavior? --Andrew

Re: [perl #59784] [PATCH] Enhancement : support for multiple optables in PGE

2008-10-11 Thread Andrew Whitworth
variable. --Andrew Whitworth

Re: [perl #59788] [BUG] inplace shift left (shl_p_p, shl_p_i) fails

2008-10-10 Thread Andrew Whitworth
what PASM opcodes to and = produce? are they the same opcodes or something different? -Andrew Whitworth On Fri, Oct 10, 2008 at 4:07 PM, Patrick R. Michaud (via RT) [EMAIL PROTECTED] wrote: # New Ticket Created by Patrick R. Michaud # Please include the string: [perl #59788

Re: Benchmarking findings

2008-09-29 Thread Andrew Whitworth
with, if anybody has good information about it I can take a stab. Any code that becomes less stable without running the current GC must be in pretty bad shape. --Andrew Whitworth

[perl #40392] [CAGE] convert Cexit_fatal to a catchable exception

2008-09-23 Thread Andrew Whitworth via RT
milestone came and went. Any updates on this ticket? Maybe this ticket should be closed out (since it's vague) and replaced with another ticket or tickets for individual places where exit_fatal should be replaced with real_exception, if any. -- Andrew Whitworth a.k.a Whiteknight

Re: [perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-10 Thread Andrew Dougherty
On Tue, 9 Sep 2008, James Keenan via RT wrote: On Tue Sep 09 15:14:36 2008, [EMAIL PROTECTED] wrote: Generally agreed. In this case, hold this ticket for the I/O milestone, which is next (sometime in the next few days). I've added it to the I/O tasklist. In the meantime, let's

Re: [perl #58374] [TODO][PDD19] Decide on maximum identifier length and implement this.

2008-08-26 Thread Andrew Whitworth
of automatically uniquely named variables from PGE and .macro_local variables (when and if they ever get implemented). I would be more comfortable with 128 or 256 if we can get away with it. --Andrew Whitworth

Moving GC MS

2008-08-19 Thread Andrew Whitworth
making (src/gc/gc_gms.c, src/gc/gc_ims.c, src/gc/gc_it.c), and keeps GC hackers from having to jump back and forth between files to see functions that are part of the same essential subsystem. Any disagreements? --Andrew Whitworth

[perl #57900] solaris hints no longer work

2008-08-14 Thread Andrew Johnson via RT
On Wed Aug 13 10:41:22 2008, [EMAIL PROTECTED] wrote: Does this patch help? Almost, you just missed the executable itself (-o arg). This patch works for me. - Andrew Index: solaris.pm === --- solaris.pm (revision 30211

[perl #57690] [BUG] make headerizer breaks build

2008-08-13 Thread Andrew Whitworth via RT
all data type definitions. Neither fix should be too difficult, but I don't know which we would prefer to pursue. --Andrew Whitworth

  1   2   3   4   5   6   >