Search Discussions
-
94
When when?
According to the docs, 'when' performs a smart match on '$_'. However: $ perl -wlE '$_ = "bar"; print "foo" when ( "bar" )' foo Can't use when() outside a topicalizer at -e line 1. $ The warning is ...Johan Vromans
May 3, 2011 at 1:30 pm
May 9, 2011 at 3:40 am -
54
UTC or GMT?
From perldoc -f gmtime: gmtime Works just like localtime but the returned values are localized for the standard Greenwich time zone. I know it is nitpicking and probably noone will care, but... Is it ...Johan Vromans
May 27, 2011 at 11:55 am
Jun 2, 2011 at 3:37 pm -
# New Ticket Created by tchrist1 # Please include the string: [perl #90886] # in the subject line of all future correspondence about this issue. # <URL: ...
Tchrist1
May 17, 2011 at 4:29 pm
May 30, 2011 at 8:38 pm -
# New Ticket Created by Johan Vromans # Please include the string: [perl #91648] # in the subject line of all future correspondence about this issue. # <URL: ...
Johan Vromans
May 25, 2011 at 9:49 pm
Jun 21, 2013 at 7:41 pm -
Personally, I always want warnings on except when I explicitly choose to disable a specific warning in a specific context. Perl 5.12 introduced implicit strictures when you 'use v5.12;' in your ...
Jesse Vincent
May 7, 2011 at 4:24 pm
May 15, 2011 at 6:54 pm -
http://d.hatena.ne.jp/tokuhirom/20110519/1305779739 Have your own Perl 5 in a browser, indirectly. -- George Greer
George Greer
May 19, 2011 at 2:54 pm
May 26, 2011 at 1:39 pm -
Lacking time travel and reality editing, how exactly are we to move forward? It's obvious to anyone with any sense of orthogonality that the Perl 5 smart match operator is anything but smart. It is ...
Chip Salzenberg
May 17, 2011 at 7:41 pm
May 20, 2011 at 7:33 pm -
# New Ticket Created by Michael Witten # Please include the string: [perl #90632] # in the subject line of all future correspondence about this issue. # <URL: ...
Michael Witten
May 15, 2011 at 7:09 pm
Jan 6, 2012 at 9:20 pm -
As with 5.12.1, 5.14.1 should be as minimal as we can sanely get away with. In an effort to ensure that we focus on making 5.14.1 awesome and rock solid, don't intend to branch maint and to fully ...
Jesse Vincent
May 14, 2011 at 8:55 pm
May 19, 2011 at 1:09 am -
# New Ticket Created by Johan Vromans # Please include the string: [perl #90240] # in the subject line of all future correspondence about this issue. # <URL: ...
Johan Vromans
May 10, 2011 at 11:47 am
May 24, 2011 at 4:13 am -
# New Ticket Created by tchrist1 # Please include the string: [perl #90134] # in the subject line of all future correspondence about this issue. # <URL: ...
Tchrist1
May 8, 2011 at 10:25 pm
May 10, 2011 at 4:39 pm -
None of the cases here trigger: use 5.010; my @words = qw(a great green dragon); say @words ~~ /dragon/ ? "MATCH" : "FAIL"; say /dragon/ ~~ @words ? "MATCH" : "FAIL"; given (@words) { say "fell ...
Tom Christiansen
May 9, 2011 at 1:12 pm
May 9, 2011 at 8:21 pm -
# New Ticket Created by Jim Cromie # Please include the string: [perl #91804] # in the subject line of all future correspondence about this issue. # <URL: ...
Jim Cromie
May 29, 2011 at 1:40 am
Jun 13, 2011 at 3:22 pm -
# New Ticket Created by tchrist1 # Please include the string: [perl #90030] # in the subject line of all future correspondence about this issue. # <URL: ...
Tchrist1
May 6, 2011 at 11:39 pm
Jan 5, 2012 at 5:16 pm -
linux perf tool compilation blows up with 5.14, on the default-less switch in regexp.h, get_regex_charset_name(), due to its strict warnings-are-errors settings (-Werror iirc) this fixes it by moving ...
Jim Cromie
May 27, 2011 at 4:28 pm
Jun 5, 2011 at 8:24 pm -
What makes the first of these more deserving of a warning that the second? % perl -we '$main::x = 1' Name "main::x" used only once: possible typo at -e line 1. % perl -we 'my $x = 1' --tom
Tom Christiansen
May 6, 2011 at 4:42 pm
May 7, 2011 at 12:51 am -
Johan Vromans
May 6, 2011 at 12:13 pm
May 8, 2011 at 12:52 am -
For example, =head1 NAME README.aix - Perl version 5 on IBM AIX (UNIX) systems The problem is that the files get renamed to be perlaix.pod, and most links to them are of the form L<perlaix , and ...
Karl Williamson
May 19, 2011 at 6:09 pm
Jul 3, 2011 at 4:28 am -
# New Ticket Created by karl williamson # Please include the string: [perl #91032] # in the subject line of all future correspondence about this issue. # <URL: ...
Karl williamson
May 18, 2011 at 8:49 pm
Jun 13, 2011 at 10:01 am -
Just a humble suggestion to my fellow p5pers: Rather than working on exiting new features etc for a while, it would be nice if (in addition to any 5.14.1-centric fixes), we could work on reducing the ...
Dave Mitchell
May 19, 2011 at 9:45 pm
Jun 7, 2011 at 10:22 pm -
After widespread public outcry, I have seen the error of my ways. I'll branch maint-5.14 from the v5.14.0 tag as soon as I've had my second cup of coffee and then push the version bump to 5.14.1 to ...
Jesse Vincent
May 17, 2011 at 3:22 pm
May 18, 2011 at 10:34 pm -
I've tried to explain the new regexp modifiers /a, /d, /l, and /u to someone today, and noticed for the first time that they are documented as "character set modifiers". That term was confusing our ...
Jan Dubois
May 18, 2011 at 1:23 am
May 18, 2011 at 4:05 am -
This is the last call for flight 1697 with service to Chicago and continuing service to San Francisco. All passengers should already be aboard. If you aren't aboard at this time, you will be denied ...
Jesse Vincent
May 11, 2011 at 3:53 pm
May 14, 2011 at 9:03 pm -
Why does this happen: % perl -le 'print "fee" =~ /^fee$/ || 0' 1 % perl -le 'print "fee" =~ /^fee$\K/ || 0' --tom
Tom Christiansen
May 2, 2011 at 4:08 pm
May 5, 2011 at 6:55 pm -
# New Ticket Created by Randy Stauner # Please include the string: [perl #89718] # in the subject line of all future correspondence about this issue. # <URL: ...
Randy Stauner
May 3, 2011 at 12:08 am
Apr 17, 2012 at 2:45 pm -
I've been seeing a lot of messages like this lately when trying to CPAN-install various modules: CPAN.pm: Going to build P/PM/PMAKHOLM/Sub-Private-0.01.tar.gz Checking prerequisites... requires: ! ...
Tom Christiansen
May 5, 2011 at 3:17 pm
May 7, 2011 at 6:32 pm -
I noticed this morning that Debian has just begun the process of switching from 5.10 to 5.12. Most of the discussion seems to be at http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=619117 . They're ...
Walt Mankowski
May 3, 2011 at 3:46 pm
Nov 26, 2011 at 12:49 am -
A package statement is not supposed to be required to have a package. This is so you are forced to fully qualify things, which makes it stricter than strict: % perl5.8.8 -e 'package; $main::x = 1' % ...
Tom Christiansen
May 1, 2011 at 1:45 am
May 18, 2011 at 6:08 pm -
I noticed that there is no discussion in perlfunc for when 'require' doesn't do anything. I imagine it is when things are compil-time only and not runtime. I discovered 'feature unicode_strings' is ...
Karl Williamson
May 7, 2011 at 6:41 pm
May 9, 2011 at 4:40 am -
# New Ticket Created by tchrist1 # Please include the string: [perl #90906] # in the subject line of all future correspondence about this issue. # <URL: ...
Tchrist1
May 17, 2011 at 8:14 pm
Jan 6, 2012 at 7:07 am -
# New Ticket Created by "Bo Johansson" # Please include the string: [perl #91526] # in the subject line of all future correspondence about this issue. # <URL: ...
Bo Johansson
May 24, 2011 at 2:06 pm
Jun 7, 2011 at 3:45 pm -
# New Ticket Created by tchrist1 # Please include the string: [perl #90182] # in the subject line of all future correspondence about this issue. # <URL: ...
Tchrist1
May 9, 2011 at 1:50 pm
May 15, 2011 at 7:51 pm -
5.14 docs for my (and our, and state) specify the syntax: my EXPR my TYPE EXPR my EXPR : ATTRS my TYPE EXPR : ATTRS EXPR is too liberal, since it is restricted to expressions that designate a ...
Johan Vromans
May 4, 2011 at 11:59 am
May 4, 2011 at 6:17 pm -
5.14 perldoc feature says: At present, the only feature bundle is "use feature ":5.10"" which is equivalent to "use feature qw(switch say state)". However, feature bundles for 5.12 and 5.14 (not ...
Johan Vromans
May 4, 2011 at 11:45 am
May 27, 2011 at 6:27 pm -
Father Chrysostomos proposed cherry-picking: http://perl5.git.perl.org/perl.git/commit/539689e74a3bcb04d29e4cd9396de91a81045b99 What do you think? Cheers, Leon
Léon Brocard
May 18, 2011 at 1:39 pm
May 24, 2011 at 8:56 am -
# New Ticket Created by tchrist1 # Please include the string: [perl #90018] # in the subject line of all future correspondence about this issue. # <URL: ...
Tchrist1
May 6, 2011 at 5:56 pm
May 24, 2011 at 4:02 am -
This was not posted for public comment. They are considering changing \w to be the same as \p{xid_continue}. There are several other options under consideration, but they do want to at least get the ...
Karl Williamson
May 14, 2011 at 11:32 pm
May 17, 2011 at 6:29 pm -
Are English.pm names missing for %+ and %- ? -- Johan
Johan Vromans
May 5, 2011 at 11:53 am
May 5, 2011 at 4:56 pm -
This reminds users to put version guards on their neologisms. We're changing Perl's basic sytnax a great deal, and users need to understand that to use those syntactic changes will cause weird errors ...
Tom Christiansen
May 3, 2011 at 5:33 pm
Jan 5, 2012 at 7:56 am -
# New Ticket Created by [email protected] # Please include the string: [perl #91910] # in the subject line of all future correspondence about this issue. # <URL: ...
Me-02 @ ton . iguana . be
May 30, 2011 at 3:55 pm
Aug 25, 2011 at 10:20 pm -
# New Ticket Created by Andrzej Gąsienica-Samek # Please include the string: [perl #91834] # in the subject line of all future correspondence about this issue. # <URL: ...
Andrzej Gąsienica-Samek
May 29, 2011 at 3:19 pm
May 29, 2011 at 9:48 pm -
Perl 5 commit summary, activity since Saturday Current branch blead 13 commits. 4 unique authors. 2 unique committers. 18 files changed, 181 insertions(+), 62 deletions(-) Thanks, applied: Jesse ...
Perl 5 commit summary
May 4, 2011 at 1:14 am
May 28, 2011 at 1:08 am -
Hi, Attached is a patch to win32/makefile.mk - which I put forward for consideration. (If accepted, the README.win32 will also need some slight modification, and I'll then provide a patch for that, ...
Sisyphus
May 15, 2011 at 8:57 am
May 17, 2011 at 1:16 am -
This works perfectly well: use v5.12; my @primary = qw(red blue green); my @secondary = qw(cyan magenta yellow); my @achroma = qw(white grey black); push @primary, [[["violet"]]]; my @colors = ...
Tom Christiansen
May 15, 2011 at 5:49 pm
May 16, 2011 at 4:43 am -
To ensure that we get some RC-blocking bugs reported in the next day, I've (locally) tagged what I believe will be Perl 5.14.0 and rolled a tarball of it. ...
Jesse Vincent
May 9, 2011 at 3:44 pm
May 10, 2011 at 12:57 pm -
According to perlbot.pod, the following piece of code implements a "containing" and "using" relationships between objects. #!/usr/bin/perl use strict; use warnings; package Bar; sub new { my $type = ...
Johan Vromans
May 6, 2011 at 2:59 pm
May 7, 2011 at 7:30 pm -
# New Ticket Created by tchrist1 # Please include the string: [perl #90926] # in the subject line of all future correspondence about this issue. # <URL: ...
Tchrist1
May 18, 2011 at 12:09 am
Jan 6, 2012 at 7:28 am -
Does the three-vote rule still apply? I sent a list of proposed patches a week ago (and a similar, shorter list a fortnight ago), but no one has commented. I also see that no commits have been ...
Father Chrysostomos
May 29, 2011 at 8:23 pm
May 30, 2011 at 9:44 pm -
# New Ticket Created by "Ed Avis" # Please include the string: [perl #91012] # in the subject line of all future correspondence about this issue. # <URL: ...
Ed Avis
May 18, 2011 at 3:59 pm
May 23, 2011 at 3:24 pm -
All the discussion about Unicode support over the past few weeks has reminded me of an outstanding TODO I have for the IO::Compress::Zip and for IO::Uncompress::Unzip modules - namely adding support ...
Paul Marquess
May 18, 2011 at 8:26 pm
May 19, 2011 at 9:53 pm
Group Overview
group | perl5-porters |
categories | perl |
discussions | 303 |
posts | 1,393 |
users | 124 |
website | perl.org |
124 users for May 2011
Archives
- June 2016 (5)
- May 2016 (782)
- April 2016 (174)
- March 2016 (531)
- December 2015 (245)
- April 2015 (169)
- March 2015 (473)
- February 2015 (439)
- January 2015 (1,057)
- December 2014 (1,349)
- November 2014 (966)
- October 2014 (1,113)
- September 2014 (1,618)
- August 2014 (784)
- July 2014 (976)
- June 2014 (1,234)
- May 2014 (1,223)
- April 2014 (772)
- March 2014 (754)
- February 2014 (1,098)
- January 2014 (1,160)
- December 2013 (788)
- November 2013 (1,137)
- October 2013 (838)
- September 2013 (1,294)
- August 2013 (1,480)
- July 2013 (1,403)
- June 2013 (1,437)
- May 2013 (1,331)
- April 2013 (436)
- March 2013 (795)
- February 2013 (762)
- December 2012 (972)
- November 2012 (155)
- October 2012 (1,550)
- September 2012 (1,847)
- August 2012 (1,300)
- July 2012 (1,143)
- June 2012 (1,403)
- May 2012 (1,373)
- April 2012 (993)
- March 2012 (958)
- February 2012 (1,326)
- January 2012 (1,667)
- December 2011 (1,109)
- November 2011 (1,422)
- October 2011 (840)
- September 2011 (1,365)
- August 2011 (1,119)
- July 2011 (1,330)
- June 2011 (946)
- May 2011 (1,393)
- April 2011 (1,195)
- March 2011 (866)
- February 2011 (949)
- January 2011 (1,089)
- December 2010 (962)
- November 2010 (1,137)
- October 2010 (828)
- September 2010 (988)
- August 2010 (1,087)
- July 2010 (1,280)
- June 2010 (670)
- May 2010 (968)
- April 2010 (1,475)
- March 2010 (1,025)
- February 2010 (990)
- January 2010 (1,101)
- December 2009 (1,010)
- November 2009 (1,157)
- October 2009 (1,628)
- September 2009 (790)
- August 2009 (1,183)
- July 2009 (1,367)
- June 2009 (1,126)
- May 2009 (809)
- April 2009 (606)
- March 2009 (812)
- February 2009 (714)
- January 2009 (913)
- December 2008 (752)
- November 2008 (1,039)
- October 2008 (903)
- September 2008 (761)
- August 2008 (496)
- July 2008 (758)
- June 2008 (923)
- May 2008 (931)
- April 2008 (813)
- March 2008 (954)
- February 2008 (850)
- January 2008 (1,433)
- December 2007 (1,146)
- November 2007 (1,102)
- October 2007 (896)
- September 2007 (1,183)
- August 2007 (737)
- July 2007 (1,316)
- June 2007 (1,017)
- May 2007 (1,071)
- April 2007 (1,129)
- March 2007 (1,150)
- February 2007 (1,179)
- January 2007 (947)
- December 2006 (670)
- November 2006 (1,105)
- October 2006 (962)
- September 2006 (695)
- August 2006 (597)
- July 2006 (948)
- June 2006 (1,145)
- May 2006 (1,002)
- April 2006 (1,102)
- March 2006 (1,056)
- February 2006 (1,026)
- January 2006 (1,142)
- December 2005 (1,030)
- November 2005 (825)
- October 2005 (996)
- September 2005 (885)
- August 2005 (693)
- July 2005 (1,381)
- June 2005 (1,137)
- May 2005 (909)
- April 2005 (795)
- March 2005 (762)
- February 2005 (503)
- January 2005 (815)
- December 2004 (931)
- November 2004 (981)
- October 2004 (670)
- September 2004 (449)
- August 2004 (749)
- July 2004 (871)
- June 2004 (708)
- May 2004 (711)
- April 2004 (986)
- March 2004 (1,232)
- February 2004 (934)
- January 2004 (1,310)
- December 2003 (1,055)
- November 2003 (1,220)
- October 2003 (1,628)
- September 2003 (1,693)
- August 2003 (2,053)
- July 2003 (1,739)
- June 2003 (1,064)
- May 2003 (1,344)
- April 2003 (1,256)
- March 2003 (1,143)
- February 2003 (1,236)
- January 2003 (1,108)
- December 2002 (897)
- November 2002 (874)
- October 2002 (1,221)
- September 2002 (1,255)
- August 2002 (1,696)
- July 2002 (1,719)
- June 2002 (2,292)
- May 2002 (2,016)
- April 2002 (2,489)
- March 2002 (2,413)
- February 2002 (1,488)
- January 2002 (1,641)
- December 2001 (2,190)
- November 2001 (2,082)
- October 2001 (1,372)
- September 2001 (1,828)
- August 2001 (1,602)
- July 2001 (1,667)
- June 2001 (1,833)
- May 2001 (2,353)
- April 2001 (1,893)
- March 2001 (1,594)
- February 2001 (1,808)
- January 2001 (1,825)
- December 2000 (1,353)
- November 2000 (1,776)
- October 2000 (1,452)
- September 2000 (1,318)
- August 2000 (2,169)
- July 2000 (1,118)
- June 2000 (773)
- May 2000 (1,163)
- April 2000 (1,181)
- March 2000 (2,886)
- February 2000 (1,596)
- January 2000 (1,407)
- December 1999 (644)
- November 1999 (1,102)
- October 1999 (1,537)
- September 1999 (1,425)
- August 1999 (303)