| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
As of commit 282b29ee485, pp_requires passes an SV to S_doopen_pm,
instead of char*/length pair.
That commit also used sv_mortalcopy() to copy the sv when trying out a
.pmc extension:
+ SV *const pmcsv = sv_mortalcopy(name);
When the path is absolute, the sv passed to S_doopen_pm is the very sv
that was passed to require. If it was returned from a (non-lvalue)
sub-routine, it will be marked TEMP, so the buffer gets stolen.
After the .pmc file is discovered to be nonexistent, S_doopen_pm then
uses its original sv to open the .pm file. But the buffer has been
stolen, so it’s trying to open undef, which fais.
In the mean time, pp_require still has a pointer to the stolen buffer,
which now has a .pmc extenion, it blithely reports that the .pmc file
cannot be found, not realising that its string has changed out from
under it. (Actually, if the file name were just the right length, it
could be reallocated and we could end up with a crash.)
This patch copies the sv more kindly.
|
|
|
|
|
|
| |
Previously in a BEGIN block, require was behaving identically to use 5.12.0 -
ie erroneously executing the use feature ':5.12.0'; and use strict;
use warnings behaviour, which only use was documented to provide.
|
| |
|
|
|
|
| |
become void context. Fixes problem with require not always being in scalar context.
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Remove the direct code for testing UTF-8, calling bytes_to_utf() from a loop for
all 3 tested encodings.
|
| |
|
|
|
|
|
|
| |
The relevant line, with comment, is:
my @a; # magic guard for scope violations (must be first lexical in file)
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
An errored attribute sub still processes the attributes,
which require's attribute.pm, so make sure the error state is
passed to the new require
p4raw-id: //depot/perl@33265
|
|
|
| |
p4raw-id: //depot/perl@32084
|
|
|
|
|
| |
So need to propagate errors with $@.
p4raw-id: //depot/perl@29723
|
|
|
|
|
|
|
|
|
| |
die as soon as it finds one. It should for instance be possible to
for require "File" to read the file "./File" even if there happens to
be a "File" directory in perl's standard library.
This fixes the RT #24404 fix in change 26373.
p4raw-id: //depot/perl@27515
|
|
|
| |
p4raw-id: //depot/perl@26892
|
|
|
| |
p4raw-id: //depot/perl@26891
|
|
|
|
|
| |
p4raw-link: @26881 on //depot/perl: ae706db49f17350f7e2ed5eccdc792223f4ea020
p4raw-id: //depot/perl@26883
|
|
|
|
|
| |
better to subtract the number of tests that don't get run.
p4raw-id: //depot/perl@26691
|
|
|
|
|
| |
add "new" tests before the end.
p4raw-id: //depot/perl@26377
|
|
|
|
|
| |
p4raw-link: @26373 on //depot/perl: ce8abf5f5d2e5b19646ab17c24a3ea87c70428c8
p4raw-id: //depot/perl@26375
|
|
|
|
|
| |
Message-ID: <42A414DD.8090504@rowman.com>
p4raw-id: //depot/perl@24823
|
|
|
|
|
| |
(See discussion for bug [perl #31924])
p4raw-id: //depot/perl@23873
|
|
|
|
|
| |
Message-ID: <20041013164018.GA32174@biff.bort.ca>
p4raw-id: //depot/perl@23843
|
|
|
|
|
| |
Message-ID: <411048BD.3080700@rowman.com>
p4raw-id: //depot/perl@23190
|
|
|
|
|
| |
Message-Id: <20031008224155.A14638@biff.bort.ca>
p4raw-id: //depot/perl@21427
|
|
|
|
|
| |
Message-ID: <20030923121452.G18845@biff.bort.ca>
p4raw-id: //depot/perl@21415
|
|
|
| |
p4raw-id: //depot/perl@19869
|
|
|
|
|
|
| |
require() should always be called in scalar context,
even when it's the last statement in an eval("").
p4raw-id: //depot/perl@19851
|
|
|
|
|
|
|
|
|
|
|
| |
The test for #21742 is marked as TODO.
Plus new regression tests from :
Subject: [perl #22708] void context in string eval is broken
From: "Marcus Holland-Moritz" (via RT) <perlbug-followup@perl.org>
Message-ID: <rt-22708-59432.14.6755501393177@rt.perl.org>
p4raw-link: @19126 on //depot/perl: a89be09a10c36299e755a956d356eb7f1f643437
p4raw-id: //depot/perl@19801
|
|
|
|
|
|
|
|
|
| |
scalar context. This wasn't the case when called from
an eval(""), because the void context doesn't propagate
through the leaveeval op. Instead of making scalarvoid()
handle OP_LEAVEEVAL -- this breaks AutoLoader -- implement
a workaround in doeval().
p4raw-id: //depot/perl@19126
|
|
|
| |
p4raw-id: //depot/perl@15584
|
|
|
|
|
|
|
| |
Message-ID: <m33d1tvjuq.fsf@anima.de>
(except for the three DB_File patch fragments)
p4raw-id: //depot/perl@13940
|
|
|
|
|
|
|
|
|
|
|
| |
the unnecessary "use bytes" ones.
TODO: scour the documentation for unnecessary "use utf8"
and prominently display it in perldelta when the time comes.
("use utf8" should be necessary ONLY if one wants the script
to be in UTF-8.) Also should be checked in some non-ASCII
non-Latin-1 platform, like EBCDIC.
p4raw-id: //depot/perl@11638
|
|
|
|
|
| |
Message-ID: <Pine.OSF.4.10.10103291731150.1326-100000@aspara.forte.com>
p4raw-id: //depot/perl@9461
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(sysread, recv and write i.e. formats still to do...)
Allow :utf8 or :bytes in PerlIO_apply_layers() so that
open($fh,">:utf8","name")
etc. work. - "applying" those just sets/clears the UTF8 bit of the top layer,
so no extra overhead is involved.
Tweak t/comp/require.t to add a 'use bytes' to permit its dubious writing of BOM
to a non-utf8 stream.
Add initial io/utf8.t
Fix SvPVutf8() - sv_2pv() was not expecting to be called with something
that was already SvPOK() - (we just fossiked with SvUTF8 bit). Fix that
and also just use the SvPV macro in sv_2pvutf8() to avoid the issue/overhead.
p4raw-id: //depot/perlio@8054
|
|
|
|
|
|
|
|
| |
so that we simply can't pick up stuff from other Perls than
the one we are testing. Pointed out by
Subject: Re: [PATCH: 6757] make new Storable tests forgiving of places where not built
Message-Id: <E13SKH1-00031D-00@virgo.cus.cam.ac.uk>
p4raw-id: //depot/perl@6874
|
|
|
| |
p4raw-id: //depot/perl@6497
|
|
|
|
|
|
|
|
| |
(UTF16-LE) still fails (silently, no output) but the #22
(UTF16-BE) seems to be working now. The root of the
failure may be in sv_gets(): is it UTF-16LE-aware,
especially when it comes to line endings?
p4raw-id: //depot/perl@6469
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
Date: Tue, 25 Jul 2000 12:52:45 +0100
Message-Id: <E13H3GP-0004MR-00@libra.cus.cam.ac.uk>
and notes from
Subject: Re: [ID 20000719.001] Problem with bleadperl of 7/18/00
From: "M.J.T. Guy" <mjtg@cus.cam.ac.uk>
Date: Tue, 25 Jul 2000 11:43:25 +0100
Message-Id: <E13H2BJ-0002nG-00@libra.cus.cam.ac.uk>
p4raw-id: //depot/perl@6435
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
p4raw-link: @6266 on //depot/cfgperl: a009ce76c9b4ddbde44a58eab3fe27d331cf27fe
p4raw-link: @6261 on //depot/cfgperl: 27d76ecff97d0a9449f569d789504cc8b69a6d01
p4raw-id: //depot/perl@6363
p4raw-integrated: from //depot/cfgperl@6362 'copy in' README.epoc
epoc/createpkg.pl epoc/epocish.c (@5586..) epoc/epocish.h
t/comp/require.t (@5639..) cygwin/Makefile.SHs (@6096..)
ext/POSIX/POSIX.pm (@6140..) hints/bsdos.sh (@6156..)
epoc/config.sh (@6168..) ext/POSIX/POSIX.xs (@6198..)
p4raw-integrated: from //depot/cfgperl@6265 'copy in'
ext/POSIX/POSIX.pod (@5586..)
p4raw-integrated: from //depot/cfgperl@6263 'copy in' doop.c (@6256..)
p4raw-integrated: from //depot/cfgperl@6261 'merge in' pod/perldiag.pod
(@6206..) toke.c (@6250..)
|
|
|
|
|
| |
<rick@consumercontact.com>)
p4raw-id: //depot/perl@5620
|
|
|
|
|
| |
C<use 5.6.0> work as well; underscores are now permitted in v-strings
p4raw-id: //depot/perl@5220
|
|
|
| |
p4raw-id: //depot/perl@5190
|
|
|
|
|
|
|
|
| |
now); avoid the word "tuple" to describe strings represented as
character ordinals; usurp $PERL_VERSION for $^V as suggested by
Larry, deprecate $] ; adjust the documentation and testsuite
accordingly
p4raw-id: //depot/perl@5186
|
|
|
|
|
|
|
|
| |
current line and not know it; exposed by change#5004; manifested
as parse failure of C<{require 5.003}>
p4raw-link: @5004 on //depot/perl: 18b095192e336ba31465f4d3dab1ecc90871c3a9
p4raw-id: //depot/perl@5061
|
|
|
| |
p4raw-id: //depot/utfperl@4705
|
|
|
|
|
|
| |
Message-id: <01J8YFGIHW2W001E7S@mail.newman.upenn.edu>
Subject: [PATCH 5.005_56] Miscellaneous VMS-specific fixes
p4raw-id: //depot/perl@3153
|