summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod')
-rw-r--r--pod/perl.pod1
-rw-r--r--pod/perldiag.pod5
-rw-r--r--pod/perllexwarn.pod2
-rw-r--r--pod/perlrun.pod14
-rw-r--r--pod/perltodo.pod9
5 files changed, 0 insertions, 31 deletions
diff --git a/pod/perl.pod b/pod/perl.pod
index bf24ed86f8..15b81067cc 100644
--- a/pod/perl.pod
+++ b/pod/perl.pod
@@ -9,7 +9,6 @@ B<perl> S<[ B<-sTtuUWX> ]>
S<[ B<-cw> ] [ B<-d>[B<t>][:I<debugger>] ] [ B<-D>[I<number/list>] ]>
S<[ B<-pna> ] [ B<-F>I<pattern> ] [ B<-l>[I<octal>] ] [ B<-0>[I<octal/hexadecimal>] ]>
S<[ B<-I>I<dir> ] [ B<-m>[B<->]I<module> ] [ B<-M>[B<->]I<'module...'> ] [ B<-f> ]>
- S<[ B<-A>[I<module>][=I<assertions>] ]>
S<[ B<-C [I<number/list>] >]>
S<[ B<-P> ]>
S<[ B<-S> ]>
diff --git a/pod/perldiag.pod b/pod/perldiag.pod
index b5d125faa7..e118220266 100644
--- a/pod/perldiag.pod
+++ b/pod/perldiag.pod
@@ -1967,11 +1967,6 @@ name or CLI symbol definition when preparing to iterate over %ENV, and
didn't see the expected delimiter between key and value, so the line was
ignored.
-=item Impossible to activate assertion call
-
-(W assertions) You're calling an assertion function in a block that is
-not under the control of the C<assertions> pragma.
-
=item (in cleanup) %s
(W misc) This prefix usually indicates that a DESTROY() method raised
diff --git a/pod/perllexwarn.pod b/pod/perllexwarn.pod
index 93ec769aa1..bed349f9cf 100644
--- a/pod/perllexwarn.pod
+++ b/pod/perllexwarn.pod
@@ -212,8 +212,6 @@ The current hierarchy is:
all -+
|
- +- assertions
- |
+- closure
|
+- deprecated
diff --git a/pod/perlrun.pod b/pod/perlrun.pod
index 7ab79129cd..a72c2c01f6 100644
--- a/pod/perlrun.pod
+++ b/pod/perlrun.pod
@@ -9,7 +9,6 @@ B<perl> S<[ B<-sTtuUWX> ]>
S<[ B<-cw> ] [ B<-d>[B<t>][:I<debugger>] ] [ B<-D>[I<number/list>] ]>
S<[ B<-pna> ] [ B<-F>I<pattern> ] [ B<-l>[I<octal>] ] [ B<-0>[I<octal/hexadecimal>] ]>
S<[ B<-I>I<dir> ] [ B<-m>[B<->]I<module> ] [ B<-M>[B<->]I<'module...'> ] [ B<-f> ]>
- S<[ B<-A>[I<module>][=I<assertions>] ]>
S<[ B<-C [I<number/list>] >]>
S<[ B<-P> ]>
S<[ B<-S> ]>
@@ -260,19 +259,6 @@ format: C<-0xHHH...>, where the C<H> are valid hexadecimal digits.
(This means that you cannot use the C<-x> with a directory name that
consists of hexadecimal digits.)
-=item B<-A[I<module>][=I<assertions>]>
-X<-A>
-
-Activates the assertions given after the equal sign as a comma-separated
-list of assertion names or regular expressions. If no assertion name
-is given, activates all assertions.
-
-The module L<assertions::activate> is used by default to activate the
-selected assertions. An alternate module may be specified including
-its name between the switch and the equal sign.
-
-See L<assertions> and L<assertions::activate>.
-
=item B<-a>
X<-a> X<autosplit>
diff --git a/pod/perltodo.pod b/pod/perltodo.pod
index 48acd2ca1b..6a0d33d740 100644
--- a/pod/perltodo.pod
+++ b/pod/perltodo.pod
@@ -603,15 +603,6 @@ instated.
The old perltodo notes "Look at the "reification" code in C<av.c>".
-=head2 What hooks would assertions need?
-
-Assertions are in the core, and work. However, assertions needed to be added
-as a core patch, rather than an XS module in ext, or a CPAN module, because
-the core has no hooks in the necessary places. It would be useful to
-investigate what hooks would need to be added to make it possible to provide
-the full assertion support from a CPAN module, so that we aren't constraining
-the imagination of future CPAN authors.
-
=head2 Properly Unicode safe tokeniser and pads.
The tokeniser isn't actually very UTF-8 clean. C<use utf8;> is a hack -