X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=blobdiff_plain;f=lib%2FMouse.pm;h=35bb6f0b03df1ab35c9fd1c803a42d7ecc233a1a;hp=c15aa15b8f8cc4ef4ff958d3a8ee8e7ee91a05a2;hb=5af36247683101e3c457450489486d41f0bd7101;hpb=b940eb46b251dace0b6ce4a3ee5a53fcd1b32ac9 diff --git a/lib/Mouse.pm b/lib/Mouse.pm index c15aa15..35bb6f0 100644 --- a/lib/Mouse.pm +++ b/lib/Mouse.pm @@ -3,7 +3,7 @@ use 5.006_002; use Mouse::Exporter; # enables strict and warnings -our $VERSION = '0.42'; +our $VERSION = '0.49'; use Carp qw(confess); use Scalar::Util qw(blessed); @@ -166,7 +166,7 @@ Mouse - Moose minus the antlers =head1 VERSION -This document describes Mouse version 0.42 +This document describes Mouse version 0.49 =head1 SYNOPSIS @@ -402,6 +402,22 @@ You may use L to replace the superclass list. Please unimport Mouse (C) so that if someone calls one of the keywords (such as L) it will break loudly instead breaking subtly. +=head1 CAVEATS + +If you use Mouse::XS you might see a fatal error on callbacks +which include C, which typically occurs in such code +as C. This is not +a bug in Mouse. In fact, it is a bug in Perl (RT #69939). + +To work around this problem, surround C with C: + + sub callback { + # eval 'use NotInstalledModule'; # NG + eval{ eval 'use NotInstalledModule' }; # OK + } + +It seems ridiculous, but it works as you expected. + =head1 SOURCE CODE ACCESS We have a public git repository: @@ -448,7 +464,7 @@ interface at L =head1 COPYRIGHT AND LICENSE -Copyright 2008-2009 Infinity Interactive, Inc. +Copyright (c) 2008-2010 Infinity Interactive, Inc. http://www.iinteractive.com/