projects
/
p5sagit/Devel-REPL.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
19748ec
)
see if making the Term::ReadLine attr lazy helps at all...
Karen Etheridge [Sun, 19 May 2013 16:00:42 +0000 (09:00 -0700)]
Changes
patch
|
blob
|
blame
|
history
lib/Devel/REPL.pm
patch
|
blob
|
blame
|
history
diff --git
a/Changes
b/Changes
index
17b8cd7
..
ca06abe
100644
(file)
--- a/
Changes
+++ b/
Changes
@@
-1,5
+1,7
@@
Revision history for Devel-REPL
+ - more attempts to fix Term::ReadLine issues in tests (RT#84246, mephinet)
+
1.003017 - 2013-04-03
- fix issues with Term::ReadLine:Perl in tests (RT#84246) (thanks,
Christopher McCann!)
diff --git
a/lib/Devel/REPL.pm
b/lib/Devel/REPL.pm
index
c174bbd
..
3dbf8ff
100644
(file)
--- a/
lib/Devel/REPL.pm
+++ b/
lib/Devel/REPL.pm
@@
-13,6
+13,7
@@
use Devel::REPL::Error;
has 'term' => (
is => 'rw',
+ lazy => 1,
default => sub { Term::ReadLine->new('Perl REPL') }
);