projects
/
gitmo/Mouse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
d8edb5a
)
Load mro directly if Perl is recent enough (Nicholas Clark)
Shawn M Moore [Tue, 10 Feb 2009 18:45:53 +0000 (18:45 +0000)]
Changes
patch
|
blob
|
blame
|
history
lib/Mouse/Util.pm
patch
|
blob
|
blame
|
history
diff --git
a/Changes
b/Changes
index
d2bf576
..
4f7561b
100644
(file)
--- a/
Changes
+++ b/
Changes
@@
-1,5
+1,8
@@
Revision history for Mouse
+0.17
+ * Load mro directly if Perl is recent enough (Nicholas Clark)
+
0.16 Mon Feb 9 20:56:27 2009
* Implement get_all_method_names
diff --git
a/lib/Mouse/Util.pm
b/lib/Mouse/Util.pm
index
dc8c27a
..
d8b93e2
100644
(file)
--- a/
lib/Mouse/Util.pm
+++ b/
lib/Mouse/Util.pm
@@
-14,6
+14,7
@@
our %EXPORT_TAGS = (
BEGIN {
my $impl;
if ($] >= 5.009_005) {
+ require mro;
$impl = \&mro::get_linear_isa;
} else {
my $loaded = do {