summaryrefslogtreecommitdiff
path: root/dist/SelfLoader
Commit message (Collapse)AuthorAgeFilesLines
* SelfLoader: Add L<> around link in podKarl Williamson2019-05-251-2/+2
|
* Replace multiple 'use vars' by 'our' in distNicolas R2017-11-111-2/+2
| | | | | | | | | | | | | | | | | | | | Using vars pragma is discouraged and has been superseded by 'our' declarations available in Perl v5.6.0 or later. Additionally using 'vars' pragma increase the memory consumption of a program by about 700 kB for no good reason. This commit is about replacing the usage of 'vars' pragma by 'our' in blead where it makes sense. ( leaving 'cpan' directory outside of the scope ) -- using vars perl -e 'use vars qw(@ISA $AUTOLOAD $VERSION); print qx{grep RSS /proc/$$/status} ' VmRSS: 2588 kB -- using our instead perl -e 'our (@ISA, $AUTOLOAD, $VERSION); print qx{grep RSS /proc/$$/status} ' VmRSS: 1864 kB
* SelfLoader: Version bump for CPAN syncSteffen Mueller2017-08-031-1/+1
|
* Fix various pod errors.Karl Williamson2016-03-111-50/+57
| | | | Mostly these are too long verbatim lines.
* Bring a few lines in SelfLoader.pm under 80 cols.kafka2014-06-111-8/+19
| | | | | | | Bump version number in SelfLoader.pm. Remove 'selfloader' entry from known_pod_issues. For: https://rt.perl.org/Ticket/Display.html?id=121850
* Fix various minor pod issuesKarl Williamson2013-01-241-9/+9
| | | | | These were all uncovered by the new Pod::Checker, not yet in core. Fixing these will speed up debugging the new Checker.
* SelfLoader: Version bump to match CPAN releaseSteffen Mueller2011-12-191-1/+1
|
* Increase $SelfLoader::VERSION to 1.19Father Chrysostomos2011-11-241-1/+1
|
* Update references to the FSF's postal addressDominic Hargreaves2011-11-241-2/+2
|
* Run 01SelfLoader.t also under taint modeFather Chrysostomos2010-10-271-0/+7
| | | | This is to test for [perl #72062].
* [perl #72062] Untaint DATA after it's reopenedLubomir Rintel2010-10-211-1/+3
| | | | | | | | DATA handle is untainted on startup, but as we close and reopen it it gets the taint flag. It's safe to untaint it though, since we still hold the file descriptor open and don't reassign it to another file. This was probably broken by changeset 29606, (c96b2385 in perl git).
* Remove core @INC setting and chdir boilerplate from SelfLoader's tests.Nicholas Clark2009-10-112-9/+0
|
* Move SelfLoader from ext/ to dist/Nicholas Clark2009-09-293-0/+698