diff options
author | John Peacock <jpeacock@rowman.com> | 2002-10-10 17:23:01 -0400 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-10-17 14:29:41 +0000 |
commit | 46314c133ffe2db9038a340b36533579af4603b9 (patch) | |
tree | 4fe5fbd35644f6ace09758d739626ea4e99e68a7 /pod | |
parent | 09448d78b3a7197d822f3a4cddd3020b529656e9 (diff) | |
download | perl-46314c133ffe2db9038a340b36533579af4603b9.tar.gz |
Re: [PATCH] Version object combined patch
Message-ID: <3DA627F5.5050907@rowman.com>
p4raw-id: //depot/perl@18026
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldiag.pod | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 4e7ff06b3d..1504fc976f 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -1816,6 +1816,15 @@ transparently promotes all numbers to a floating point representation internally--subject to loss of precision errors in subsequent operations. +=item Integer overflow in version + +(F) Some portion of a version initialization is too large for the +size of integers for your architecture. This is not a warning +because there is no rational reason for a version to try and use a +element larger than typically 2**32. This is usually caused by +trying to use some odd mathematical operation as a version, like +100/9. + =item Internal disaster in regex; marked by <-- HERE in m/%s/ (P) Something went badly wrong in the regular expression parser. @@ -1892,6 +1901,17 @@ L<perlfunc/unpack>. (W unpack) The given character is not a valid unpack type but used to be silently ignored. +=item Invalid version format (multiple underscores) + +(F) Versions may contain at most a single underscore, which signals +that the version is a beta release. See L<version> for the allowed +version formats. + +=item Invalid version format (underscores before decimal) + +(F) Versions may not contain decimals after the optional underscore. +See L<version> for the allowed version formats. + =item ioctl is not implemented (F) Your machine apparently doesn't implement ioctl(), which is pretty |