summaryrefslogtreecommitdiff
path: root/pod
Commit message (Collapse)AuthorAgeFilesLines
* [perl #73534] Bigrat segfaults on irrational numbersFather Chrysostomos2010-10-041-1/+4
| | | | | | | | | | | | | | | aka [rt.cpan.org #55767] segfault on sqrt(2) with bigrat The problem seems to be in &Math::BigInt::objectify. It doesn’t try to convert the number object into the right class if $upgrade is defined. The attached patch changes it to make sure it belongs to the calling class or to the $upgrade class. Here is a ‘one’-liner to trigger the same bug without bigrat: perl -Ilib -MMath::BigInt=upgrade,Math::BigFloat \ -MMath::BigFloat=upgrade,Math::BigMouse -le \ '@Math::BigMouse::ISA = Math::BigFloat; print sqrt Math::BigInt->new(2)'
* * Update the versions numbers for stable in perlfaq1brian d foy2010-10-051-1/+1
| | | | | I'm considering that this becomes official with 5.14, so 'stable' is a bit in the future
* * Clarified a pronoun in perlfaq4brian d foy2010-10-051-12/+11
| | | | How do I strip blank space from the beginning/end of a string?
* perldelta entry for Locale::Maketext/$@Father Chrysostomos2010-10-041-0/+4
|
* [perl #45133] -0.0 has variable Boolean valueFather Chrysostomos2010-10-041-0/+14
| | | | | This patch makes -0.0 stringify as "0" (while leaving sprintf %g/%f unchanged).
* [perl #20661] Constant strings representing a number can BECOME numbersFather Chrysostomos2010-10-041-0/+5
| | | | | The & | ^ operators now avoid turning on numericness of read-only arguments.
* perlop.pod: Clarify -’s string/number distinctionFather Chrysostomos2010-10-041-5/+6
|
* perldelta for [perl #57706]Father Chrysostomos2010-10-041-0/+6
|
* Further clarification on indirect filehandlesA. Sinan Unur2010-10-041-1/+18
| | | | | | | | | | | | | | | | | | | | | A recent discussion on Stackoverflow.com indicated to me that there is some potential for confusion in the "Indirect Filehandles" section in perlopentut.pod. See comments to http://stackoverflow.com/questions/3661161/writing-a-macro-in-perl/3661239#36612 39 The attached patch is my attempt at clarifying that indirect filehandles are closed when there are no more references to them rather than simply when the end of the current lexical scope is reached. I also added an example of returning such a filehandle from a subroutine. I am not sure if this is the best way to word it, so I would appreciate feedback. The patch is attached. -- Sinan
* perldelta and version bump for CwdFather Chrysostomos2010-10-031-1/+4
|
* perldelta entriesFather Chrysostomos2010-10-031-0/+11
|
* better documentation for eval_sv() and G_KEEPERRDavid Mitchell2010-10-031-2/+6
|
* Fixed typos -- replaced "the the" with "the"Walt Mankowski2010-10-031-2/+2
|
* Fixed typo -- replaced "the the" with "the"Walt Mankowski2010-10-031-1/+1
|
* Fixed typo -- changed "it's code point" to "its code point"Walt Mankowski2010-10-031-1/+1
|
* Update Unicode-Collate to CPAN version 0.61Chris 'BinGOs' Williams2010-10-021-1/+3
| | | | | | | | | | | | [DELTA] 0.61 Sat Oct 2 11:41:29 2010 - U::C::Locale newly supports locales: hr, ig, sq. - precomposites of e-dot-below, o-dot-below, o-tilde are tailored as well. (affected locales: et, yo) - Vietnamese (vi): added contractions for non-blocked decompositions * base + dot-below + diacritical such as "a\x{323}\x{306} etc. * base + tone + horn such as "o\x{300}\x{31B}" etc.
* [perl #48332] Debugger corrupts symbol table mungingFather Chrysostomos2010-09-301-0/+5
| | | | | | | | This reverts commit 92adfbd49af0758bcc9a198cf2df2bd78c4176b9, which removed a necessary assignment for the sake of consting. In doing so, it allows subroutine redefinition to work properly again in the debugger.
* Upgrade Digest::MD5 from version 2.50 to 2.51Florian Ragwitz2010-10-011-1/+1
|
* perlretut: incorrect output in "Non-capturing groupings"Ævar Arnfjörð Bjarmason2010-09-301-1/+1
| | | | | | | | | | Change the example split output in a "Non-capturing groupings" example from ('12','a','34','b','5') to ('12','a','34','a','5'). This way it'll match the example code that goes along with it: split /(a|b)+/, "12aba34ba5" Reported-by: Antonio Bonifati <antonio.bonifati@gmail.com>
* Update Archive-Extract to CPAN version 0.44Chris 'BinGOs' Williams2010-09-291-0/+4
| | | | | | | | | [DELTA] Changes for 0.44 Wed Sep 29 15:51:26 2010 ============================================ * Apply a patch from brian d foy that adds a debug() method for $DEBUG output.
* Revert "[perl #77928] Glob slot assignment and set-magic"Father Chrysostomos2010-09-291-5/+0
| | | | This reverts commit cffb36981555111f364a511fb5763f65ea748c0e.
* Fix typo in perlpolicy.podSteffen Mueller2010-09-291-1/+1
|
* [perl #22193] Clarify references to ‘use integer’ in perlopCasey West2010-09-281-7/+7
|
* perldelta entry for [perl #78058] qr/\88/ hangsFather Chrysostomos2010-09-281-0/+9
|
* Added our support policy to perlpolicy.pod.Jesse Vincent2010-09-281-0/+64
|
* [perl #71998] overload::Method can die with blessed methodsFather Chrysostomos2010-09-281-0/+8
| | | | | | | | | | | | | | | | | | If an overload method is itself blessed into a class that has overloaded operators but does not have fallback enabled, then an error is produced: $ perl5.10.0 use overload '+' => sub{}; bless overload::Method main => '+'; overload::Method main => '+'; ^D Operation "ne": no method found, left argument in overloaded package main, right argument has no overloaded magic at /usr/local/lib/perl5/5.10.0/ overload.pm line 59. The attached patch fixes this.
* [perl #77928] Glob slot assignment and set-magicFather Chrysostomos2010-09-281-0/+5
| | | | Stop set-magic from being called after ref-to-glob assignment.
* Mention t/op/threads-dirh.t in perldeltaFather Chrysostomos2010-09-271-1/+2
|
* perldelta for [perl #75174] (dirp_dup)Father Chrysostomos2010-09-271-0/+18
|
* Modify the Perl_dirp_dup entry in perltodoFather Chrysostomos2010-09-271-1/+2
|
* Upgrade Math::BigInt from version 1.95 to 1.96Florian Ragwitz2010-09-281-0/+4
|
* perldelta entry for [perl #72990] Mac OS X and setruid, etc.Father Chrysostomos2010-09-271-0/+10
|
* [perl #78088] [PATCH] Upgrade to threads 1.81Jerry D. Hedden2010-09-281-0/+4
| | | | | | | [DELTA] The attached patch makes the CPAN distribution of 'threads' compatible with with v5.13.2 and later.
* * Don't allow extra newlines in number type example in perlfaq4brian d foy2010-09-271-7/+7
| | | | + How do I determine whether a scalar is a number/whole/integer/float?
* Correct pod syntax in perldeltaFather Chrysostomos2010-09-271-2/+0
|
* perldelta entry for mingw64 and gccversionFather Chrysostomos2010-09-271-2/+6
|
* Clarification of perldelta entry for [perl #72434]Father Chrysostomos2010-09-271-1/+1
|
* Version bump and perldelta for CarpFather Chrysostomos2010-09-271-0/+8
|
* perldelta for [perl #73754] and [perl #77362]Father Chrysostomos2010-09-261-1/+31
| | | | (77362 is the same as 36051)
* #!perl -C -w diesFather Chrysostomos2010-09-261-0/+5
| | | | | | parse_unicode_opts expects to end on '\0'. So #!perl -C -w causes an ‘Unknown Unicode option letter ' '’ error. The attached patch fixes it.
* Data::Dumper version bump and perldeltaFather Chrysostomos2010-09-261-0/+7
|
* Version bump and perldelta for IPC::Open3 and [perl #76474]Father Chrysostomos2010-09-261-0/+9
|
* Update perldelta for if changeChris 'BinGOs' Williams2010-09-261-0/+4
|
* Upgrade Digest::MD5 from version 2.40 to 2.50Florian Ragwitz2010-09-261-0/+6
|
* Locale::Maketext version bump; MANIFEST, ChangeLog, perldelta updatesFather Chrysostomos2010-09-251-0/+8
|
* Teach Perl about Unicode named character sequencesKarl Williamson2010-09-256-19/+36
| | | | | | | | | | | | | mktables is changed to process the Unicode named sequence file. charnames.pm is changed to cache the looked-up values in utf8. A new function, string_vianame is created that can handle named sequences, as the interface for vianame cannot. The subroutine lookup_name() is slightly refactored to do almost all of the common work for \N{} and the vianame routines. It now understands named sequences as created my mktables.. tests and documentation are added. In the randomized testing section, half use vianame() and half string_vianame().
* perlrecharclass.pod: Add caveat about multi-char sequencesKarl Williamson2010-09-251-2/+4
| | | | | | | Inside a bracketed character class, any \N{name} which expands to more than one character will have only the first one considered. This doesn't need named character sequences, as user-defined aliases have long been able to be multi-char.
* Fix casing, wordingKarl Williamson2010-09-251-2/+2
|
* perldelta entries for the double-magic fixes [perl #76814]Father Chrysostomos2010-09-241-1/+58
|
* fix typo in perl5135deltaDavid Golden2010-09-242-1/+11
|