Changes between Version 51 and Version 52 of Dev/Perl


Ignore:
Timestamp:
Mar 18, 2013 6:48:06 PM (12 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Dev/Perl

    v51 v52  
    152152 > No error detection of bencoded data. Damaged input will most likely cause very bad things to happen, up to and including causeing the bdecode function to recurse infintly. 
    153153  * oh... 
     154 
     155 * cpan:Class::Accessor::Fast 
     156  * newする際に初期値を与えないと、getterはundefを返す 
     157{{{#!perl 
     158use Foo;    # use base qw(Class::Accessor::Fast); 
     159my $foo = Foo->new; 
     160$foo->hoge;  # undef 
     161}}}