]> git.vpit.fr Git - perl/modules/Lexical-Types.git/blobdiff - README
This is 0.07
[perl/modules/Lexical-Types.git] / README
diff --git a/README b/README
index 8aba1f6361d3029fbf8ccc39d9e3794e87705418..fa968d5144826ff67000066f02e07f94791549b3 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Lexical::Types - Extend the semantics of typed lexicals.
 
 VERSION
-    Version 0.05
+    Version 0.07
 
 SYNOPSIS
         { package Str; }
@@ -171,6 +171,11 @@ INTEGRATION
 
         sub new { ... }
 
+CONSTANTS
+  "LT_THREADSAFE"
+    True iff the module could have been built with thread-safety features
+    enabled.
+
 CAVEATS
     The restrictions on the type (being either a defined package name or a
     constant) apply even if you use the 'as' option to redirect to another
@@ -180,6 +185,15 @@ CAVEATS
     Only one mangler or prefix can be in use at the same time in a given
     scope.
 
+    The implementation was tweaked to work around several limitations of
+    vanilla "perl" pragmas : it's thread safe, and doesn't suffer from a
+    "perl 5.8.x-5.10.0" bug that causes all pragmas to propagate into
+    "require"d scopes.
+
+    With 5.8 perls, the pragma does not propagate into "eval STRING". This
+    is due to a shortcoming in the way perl handles the hints hash, which is
+    addressed in perl 5.10.
+
 DEPENDENCIES
     perl 5.8, XSLoader.