<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/perl.perl5.porters</id>
  <title type="text">perl.perl5.porters Google Group</title>
  <subtitle type="text">
  perl5-porters@perl.org (Moderated)
  </subtitle>
  <link href="/group/perl.perl5.porters/feed/atom_v1_0_msgs.xml" rel="self" title="perl.perl5.porters feed"/>
  <updated>2010-01-05T20:07:32Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>John</name>
  <email>john.im...@vodafoneemail.co.uk</email>
  </author>
  <updated>2010-01-05T20:07:32Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/21f3f2e1559233ef?show_docid=21f3f2e1559233ef</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/21f3f2e1559233ef?show_docid=21f3f2e1559233ef"/>
  <title type="text">Re: warding against bytes.pm</title>
  <summary type="html" xml:space="preserve">
  I have no problem with doing it that way. &lt;br&gt; John &lt;br&gt; ______________________________ ________________ &lt;br&gt; This email has been scanned by Netintelligence &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.netintelligence.com/email&quot;&gt;[link]&lt;/a&gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Marvin Humphrey</name>
  <email>mar...@rectangular.com</email>
  </author>
  <updated>2010-01-05T19:43:47Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/79ae56bb0d344688?show_docid=79ae56bb0d344688</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/79ae56bb0d344688?show_docid=79ae56bb0d344688"/>
  <title type="text">Re: warding against bytes.pm</title>
  <summary type="html" xml:space="preserve">
  I think this is idealistic. In my opinion, it&#39;s not practical to use Perl&#39;s &lt;br&gt; Unicode tools without understanding the implementation down to the C &lt;br&gt; representation, including the SVf_UTF8 flag and how to use Devel::Peek to &lt;br&gt; snoop it. Unicode glitches are just too hard to debug without such expertise.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Eric Brine</name>
  <email>ikeg...@adaelis.com</email>
  </author>
  <updated>2010-01-05T19:38:07Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9605c6c4b4fb8389/8ace2f2792bb8d1b?show_docid=8ace2f2792bb8d1b</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9605c6c4b4fb8389/8ace2f2792bb8d1b?show_docid=8ace2f2792bb8d1b"/>
  <title type="text">Re: [perl #71854] 5.10.1: for-loop scoping discrepancy with local functions (local *Foo = sub {})</title>
  <summary type="html" xml:space="preserve">
  Lexical variables aren&#39;t accessed via their name. Subs capture the variable &lt;br&gt; that is associated with the name when the sub is instantiated. This allows &lt;br&gt; for features such as module-scoped variables and closures. It&#39;s possible to &lt;br&gt; change the value of the variables, but it&#39;s always going to be the same &lt;br&gt; variable.
  </summary>
  </entry>
  <entry>
  <author>
  <name>John</name>
  <email>john.im...@vodafoneemail.co.uk</email>
  </author>
  <updated>2010-01-05T18:56:42Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/c3450666742f3be1?show_docid=c3450666742f3be1</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/c3450666742f3be1?show_docid=c3450666742f3be1"/>
  <title type="text">Re: warding against bytes.pm</title>
  <summary type="html" xml:space="preserve">
  I think the problem here is that we think of characters in Perl being &lt;br&gt; in UTF-8. We need to get away from this idea and think of characters as &lt;br&gt; *CHARACTERS* they only become bytes when encoded into some other format &lt;br&gt; for transport out of the program. &lt;br&gt; So if you want to send UTF-8 to MySQL you need to take you string and
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jari Aalto</name>
  <email>perlbug-follo...@perl.org</email>
  </author>
  <updated>2010-01-05T12:59:07Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9605c6c4b4fb8389/7e8dabe13bf7921e?show_docid=7e8dabe13bf7921e</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9605c6c4b4fb8389/7e8dabe13bf7921e?show_docid=7e8dabe13bf7921e"/>
  <title type="text">[perl #71854] 5.10.1: for-loop scoping discrepancy with local functions (local *Foo = sub {})</title>
  <summary type="html" xml:space="preserve">
  DESCRIPTION &lt;br&gt; If variable is defined before sub, the $file variable should be seen. It &lt;br&gt; apperas that for-loop somehow alters the scope, although the loop &lt;br&gt; variable is defined *before* the for-loop. &lt;br&gt; TEST RESULTS &lt;br&gt; The $FILE variable, when assigned is seen in sub. &lt;br&gt; The $file variable, when not in for loop, when assigned is seen in sub.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Zefram</name>
  <email>zef...@fysh.org</email>
  </author>
  <updated>2010-01-05T18:12:09Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/58c7c36441c8be4d?show_docid=58c7c36441c8be4d</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/58c7c36441c8be4d?show_docid=58c7c36441c8be4d"/>
  <title type="text">Re: warding against bytes.pm</title>
  <summary type="html" xml:space="preserve">
  For that purpose, what you need to know is the number of bytes that &lt;br&gt; you&#39;ll be sending to MySQL. This depends on the characters and how &lt;br&gt; you&#39;re encoding them for communication with MySQL, *not* on how Perl &lt;br&gt; is representing them internally. See previous messages about writing &lt;br&gt; UTF-8-encoded text to a file.
  </summary>
  </entry>
  <entry>
  <author>
  <name>&quot;Dr.Ruud&quot;</name>
  <email>rvtol+use...@isolution.nl</email>
  </author>
  <updated>2010-01-05T02:54:50Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/0968e60f2676fb9b?show_docid=0968e60f2676fb9b</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/7bd173ebb4feb609/0968e60f2676fb9b?show_docid=0968e60f2676fb9b"/>
  <title type="text">Re: warding against bytes.pm</title>
  <summary type="html" xml:space="preserve">
  It is not. &lt;br&gt; A byte count can be very useful, &lt;br&gt; for example if you need to stay &lt;br&gt; within MySQL&#39;s max_allowed_packet &lt;br&gt; when creating big SQL statements. &lt;br&gt; sub bytes { &lt;br&gt; require bytes; &lt;br&gt; bytes::length($_[0]); &lt;br&gt; }
  </summary>
  </entry>
  <entry>
  <author>
  <name>Zefram</name>
  <email>zef...@fysh.org</email>
  </author>
  <updated>2010-01-05T17:44:00Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9d0e7532432d10e8/4d5d49f4cd21c26c?show_docid=4d5d49f4cd21c26c</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9d0e7532432d10e8/4d5d49f4cd21c26c?show_docid=4d5d49f4cd21c26c"/>
  <title type="text">Re: [perl #71852] Warning &quot;/* within comment&quot; in Win32 config.h-related files</title>
  <summary type="html" xml:space="preserve">
  kmx wrote: &lt;br&gt; That would miss the point of having the &amp;quot;/**/&amp;quot; at the end of the line. &lt;br&gt; The point of that is precisely so that the directive&#39;s state can be &lt;br&gt; switched by the minimal edit of adding or removing &amp;quot;/*&amp;quot; at the start. &lt;br&gt; If the &amp;quot;/* ... /**/&amp;quot; scheme is not to be used, then the inactive state &lt;br&gt; of the line should be something like
  </summary>
  </entry>
  <entry>
  <author>
  <name>kmx</name>
  <email>perlbug-follo...@perl.org</email>
  </author>
  <updated>2010-01-05T12:58:52Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9d0e7532432d10e8/8f41cd3d4917f02c?show_docid=8f41cd3d4917f02c</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9d0e7532432d10e8/8f41cd3d4917f02c?show_docid=8f41cd3d4917f02c"/>
  <title type="text">[perl #71852] Warning &quot;/* within comment&quot; in Win32 config.h-related files</title>
  <summary type="html" xml:space="preserve">
  This is a bug report for perl from k...@volny.cz, &lt;br&gt; generated with the help of perlbug 1.39 running under perl 5.11.3. &lt;br&gt; ------------------------------ ------------------------------ ----- &lt;br&gt; [Please describe your issue here] &lt;br&gt; Hi, &lt;br&gt; I would like to propose a cosmetic fix to some &amp;quot;config.h-related&amp;quot; files &lt;br&gt; in perl core sources mostly regarding Win32 platform.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Aristotle Pagaltzis</name>
  <email>pagalt...@gmx.de</email>
  </author>
  <updated>2010-01-05T17:03:43Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/10469908c425e723/39a287578bcfef8b?show_docid=39a287578bcfef8b</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/10469908c425e723/39a287578bcfef8b?show_docid=39a287578bcfef8b"/>
  <title type="text">Re: rvalue &quot;statement&quot; given blocks</title>
  <summary type="html" xml:space="preserve">
  Hi David, &lt;br&gt; * David Nicol &amp;lt;davidni...@gmail.com&amp;gt; [2010-01-05 17:45]: &lt;br&gt; No. And that isn’t even plausible if you consider two facts: &lt;br&gt; • In BASIC-PLUS, where the idea came from, modifiers are freely &lt;br&gt; stackable. &lt;br&gt; • If Larry didn’t *want* the restriction, why would he decide &lt;br&gt; that Perl 6, free from concerns of an existing implementation,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Steven Schubiger</name>
  <email>s...@refcnt.org</email>
  </author>
  <updated>2010-01-05T14:20:18Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/024bab5a38328781/61ae9fd2faa43acd?show_docid=61ae9fd2faa43acd</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/024bab5a38328781/61ae9fd2faa43acd?show_docid=61ae9fd2faa43acd"/>
  <title type="text">Smoke [5.11.3] v5.11.3-26-g1a64a5e FAIL(XF) openbsd 4.6 (i386/1 cpu)</title>
  <summary type="html" xml:space="preserve">
  Automated smoke report for 5.11.3 patch 1a64a5e6c710ac493fe0339fdf240f 512a934369 v5.11.3-26-g1a64a5e &lt;br&gt; p5openbsd: AMD Athlon(tm) Processor (&amp;quot;AuthenticAMD&amp;quot; 686-class, 256KB L2 cache) (909 MHz) (i386/1 cpu) &lt;br&gt; on openbsd - 4.6 &lt;br&gt; using cc version 3.3.5 (propolice) &lt;br&gt; smoketime 14 hours 57 minutes (average 1 hour 52 minutes)
  </summary>
  </entry>
  <entry>
  <author>
  <name>(John P. Linderman)</name>
  <email>j...@research.att.com</email>
  </author>
  <updated>2010-01-05T11:08:53Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/292bfd7974eff54a/0471a935406598b9?show_docid=0471a935406598b9</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/292bfd7974eff54a/0471a935406598b9?show_docid=0471a935406598b9"/>
  <title type="text">Re: makefile thoughts</title>
  <summary type="html" xml:space="preserve">
  Andy Dougherty &amp;lt;dough...@lafayette.edu&amp;gt; said: &lt;br&gt; I&#39;m no expert either, but after buying myself a shiny new &lt;br&gt; quadcore PC, I&#39;ve been parallelizing (or sometimes paralyzing) &lt;br&gt; some makefiles so I can move more than 1 CPU bar on the &lt;br&gt; system monitor. I often use the construct &lt;br&gt; @ARGV = qw( file1 file2 file6 ) if ((@ARGV == 0) &amp;amp;&amp;amp; -t);
  </summary>
  </entry>
  <entry>
  <author>
  <name>Nicholas Clark</name>
  <email>n...@ccl4.org</email>
  </author>
  <updated>2010-01-05T11:01:02Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/16e52d1f724438ba/28049a9d73f4ee7c?show_docid=28049a9d73f4ee7c</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/16e52d1f724438ba/28049a9d73f4ee7c?show_docid=28049a9d73f4ee7c"/>
  <title type="text">Re: [perl #71828] Tie::Hash::NamedCapture::FIRSTKEY(undef) segfaults</title>
  <summary type="html" xml:space="preserve">
  Turns out that all the Tie::Hash::NamedCapture routines are similarly &lt;br&gt; crash-prone, and that a fix is fairly simple, so done in blead as commit &lt;br&gt; 1d021cc8647e49fd860b50abddff99 a11b306e2e &lt;br&gt; Nicholas Clark
  </summary>
  </entry>
  <entry>
  <author>
  <name>Shlomi Fish</name>
  <email>shlo...@iglu.org.il</email>
  </author>
  <updated>2010-01-05T10:55:30Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/10469908c425e723/40da00f9ab7c0e7c?show_docid=40da00f9ab7c0e7c</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/10469908c425e723/40da00f9ab7c0e7c?show_docid=40da00f9ab7c0e7c"/>
  <title type="text">Re: rvalue &quot;statement&quot; given blocks</title>
  <summary type="html" xml:space="preserve">
  &amp;quot;42.7% of all statistics are made up on the spot.&amp;quot; &lt;br&gt; -- &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.steven-wright.com/&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; ;-) &lt;br&gt; Regards, &lt;br&gt; Shlomi Fish
  </summary>
  </entry>
  <entry>
  <author>
  <name>Rafael Garcia-Suarez</name>
  <email>r...@consttype.org</email>
  </author>
  <updated>2010-01-05T08:57:43Z</updated>
  <id>http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9598a41f37ab87ea/6aec64fdbc1998da?show_docid=6aec64fdbc1998da</id>
  <link href="http://groups.google.com/group/perl.perl5.porters/browse_thread/thread/9598a41f37ab87ea/6aec64fdbc1998da?show_docid=6aec64fdbc1998da"/>
  <title type="text">Re: qualify a todo item ?</title>
  <summary type="html" xml:space="preserve">
  2010/1/4 Jim Cromie &amp;lt;jim.cro...@gmail.com&amp;gt;: &lt;br&gt; I documented that : &lt;br&gt; --- a/pod/perltodo.pod &lt;br&gt; +++ b/pod/perltodo.pod &lt;br&gt; @@ -40,6 +40,9 @@ instead there is an intentionally simpler library, &lt;br&gt; F&amp;lt;t/test.pl&amp;gt;. However, &lt;br&gt; quite a few tests in F&amp;lt;t/&amp;gt; have not been refactored to use it. Refactoring &lt;br&gt; any of these tests, one at a time, is a useful thing TODO.
  </summary>
  </entry>
</feed>
