Ronald J. Kimball [Mon, 8 Oct 2001 22:18:23 +0000 (18:18 -0400)]
Message-ID: <
20011008221823.A413700@linguist.thayer.dartmouth.edu>
p4raw-id: //depot/perl@12370
=item ${^TAINT}
-Reflects if taint mode is on or off (ie. if the program was run with
+Reflects if taint mode is on or off (i.e. if the program was run with
B<-T> or not). True for on, false for off.
=item $PERL_VERSION
eval { ${^TAINT} = 0 };
ok( ${^TAINT}, '$^TAINT is not assignable' );
ok( $@ =~ /^Modification of a read-only value attempted/,
- 'Assigning to taint pukes properly' );
+ 'Assigning to ${^TAINT} fails' );