This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Florian Ragwitz [Mon, 16 Aug 2010 23:22:27 +0000 (01:22 +0200)]
PERL_API_* doesn't need to be maintained manually
Florian Ragwitz [Mon, 16 Aug 2010 23:06:29 +0000 (01:06 +0200)]
Release managers need to be careful in INSTALL
Everything is binary incompatible with each other, except for maint releases
from the same maint branch.
Florian Ragwitz [Mon, 16 Aug 2010 23:06:09 +0000 (01:06 +0200)]
Update INSTALL regarding binary compatibility
Florian Ragwitz [Mon, 16 Aug 2010 22:34:24 +0000 (00:34 +0200)]
perldelta up to d5da2b2
Florian Ragwitz [Mon, 16 Aug 2010 22:09:43 +0000 (00:09 +0200)]
Bump $feature::VERSION
It hasn't seen many changes since 5.13.3, but it was changed slightly in the
docs, and cmpVERSION.pl kindly asked me to bump the verion even for that.
Nicholas Clark [Mon, 16 Aug 2010 21:12:13 +0000 (23:12 +0200)]
Only copy op.c to opmini.c if op.c is a symlink, else use a symlink.
Similarly for perl.c to perlmini.c
This avoids the work of a file copy if a symlink would do the job, but ensures
that we don't create a symlink to a symlink to a file, which (comments suggest)
upsets gcc.
Nicholas Clark [Mon, 16 Aug 2010 19:43:19 +0000 (21:43 +0200)]
Use a loop to generate the Makefile rules for opmini.c and perlmini.c.
Nicholas Clark [Mon, 16 Aug 2010 19:22:44 +0000 (21:22 +0200)]
For both opmini.o and perlmini.o define PERL_EXTERNAL_GLOB and PERL_IS_MINIPERL
Previously only opmini.o was compiled with -DPERL_EXTERNAL_GLOB, and only
perlmini.o with -DPERL_IS_MINIPERL. Add "PERL_EXTERNAL_GLOB" to the output
of (mini)perl -V if it is defined.
Florian Ragwitz [Mon, 16 Aug 2010 20:54:10 +0000 (22:54 +0200)]
perldelta up to b474a1b
Chris 'BinGOs' Williams [Mon, 16 Aug 2010 16:05:41 +0000 (17:05 +0100)]
Corrected typo in documentation for glob().
Chris 'BinGOs' Williams [Mon, 16 Aug 2010 16:04:27 +0000 (17:04 +0100)]
Update Test-Harness to CPAN version 3.22
[DELTA]
3.22 2010-08-14
- Allow TAP::Parser to recognize a nested BAIL_OUT directive.
- Add brief HOWTO for creating and running pgTAP tests to
TAP::Parser::SourceHandler::pgTAP.
- Fix trailing plan + embedded YAML + TAP 13 case. Thanks to
Steffen Schwigon. #54518.
- Numerous spelling fixes. Thanks to Ville Skytt<C3><A4>.
- Add new option --tapversion for prove to set the default
assumed TAP version. Thanks to Steffen Schwigon.
- Fixed tests to run successfully under Devel::Cover. Thanks to
Phillipe Bruhat.
- Fixed injection of test args to work with general executables
as well as Perl scripts (#59186).
- Allow multiple --ext=.foo arguments to prove, to allow running
different types of tests in the same prove run.
- App::Prove::extension() is now App::Prove::extensions(), and
returns an arrayref of extensions, rather than a single scalar.
The same change has been made to App::Prove::State::extension().
- Preserve old semantics for test scripts with a shebang line
by favouring Perl as the intepreter for any file with a
shebang (#59457).
- Add --trap (summary on Ctrl-C) option to prove (#59427).
- Removed TAP::Parser::SourceHandler::pgTAP. Find it in its own
distribution on CPAN.
- Source options to prove can now be specified so as to be passed to
the source as a hash reference, eg:
prove --source XYZ --xyz-option pset=foo=bar
Ths "pset" option will be passed as a hash reference with the key
"foo" and the value "bar".
Nicholas Clark [Mon, 16 Aug 2010 15:12:24 +0000 (17:12 +0200)]
Remove compile-time conditionals from PVIV and PVNV body sizes.
Alignment issues that aggressive (but legal) sparc compilers tripped over
were resolved by
69ba284b5e077075. Hence the conditional sizing added in
889d28b2ea2c1751 is not needed, and prevents viable size optimisations.
(The compiler could "see" that the structure contained a double, hence the
alignment was constrained, hence it was legal to use a single 64 bit load on 2
adjacent 32 bit values. Which fails badly when the structure isn't actually
aligned, which was possible prior to
69ba284b5e077075.)
Zefram [Sat, 1 May 2010 17:47:58 +0000 (18:47 +0100)]
fix [perl #74118] $[ assignment not noisy enough
Warn about list assignment to $[, as in "($[)=1", in addition to scalar
assignment such as "$[=1".
Florian Ragwitz [Mon, 16 Aug 2010 01:08:01 +0000 (03:08 +0200)]
Remove MacOS 9 support code from XS-APItest
EUMM dropped support for it ages ago, and so did perl core a couple of releases
back. This is an attempt to stop MacOS 9 support from being cargo-culted into
new XS-APItest tests.
Florian Ragwitz [Sun, 15 Aug 2010 22:16:00 +0000 (00:16 +0200)]
Revert "Make the peep recurse via PL_peepp"
This reverts commit
65bfe90c4b4ea5706a50067179e60d4e8de6807a.
While it made a few of the things I wanted possible, a couple of other things
one might need to do and I thought this change would enable don't actually
work. Thanks Zefram for pointing out my mistake.
Conflicts:
ext/XS-APItest/APItest.xs
op.c
Florian Ragwitz [Sun, 15 Aug 2010 21:04:05 +0000 (23:04 +0200)]
perldelta up to a98d1b3
Chris 'BinGOs' Williams [Sun, 15 Aug 2010 21:12:54 +0000 (22:12 +0100)]
Fix the overload tests marked as TODO in
22afb09b13a6dc17f20388991422fdbe6166e3ed
As is() doesn't stringify its arguments anymore we have to.
Florian Ragwitz [Thu, 12 Aug 2010 16:45:48 +0000 (18:45 +0200)]
perldelta up to 2be7097
Florian Ragwitz [Thu, 12 Aug 2010 16:32:16 +0000 (18:32 +0200)]
Add a note on API versions for release managers
Nicholas Clark [Sun, 15 Aug 2010 12:14:44 +0000 (13:14 +0100)]
Remove the vestigial my_safe{calloc,malloc,free} macros from sv.c
These existed for LEAKTEST, which would change the implementations.
LEAKTEST was removed in
7bab3ede7bf671f5 in 2002.
Nicholas Clark [Sun, 15 Aug 2010 11:39:36 +0000 (12:39 +0100)]
Remove the unused new_X*V and del_X*V macros from sv.c
The use of most of these macros was eliminated by
82bb6deb04ad3686, but it did
not delete their definitions.
Nicholas Clark [Sun, 15 Aug 2010 12:20:41 +0000 (13:20 +0100)]
Note the e-mail address Robin Barker used in
db7198b53dd9e7c0.
Without this, t/porting/authors.t fails because it believes that a new person
is missing from AUTHORS.
Slaven Rezic [Sat, 14 Aug 2010 19:28:05 +0000 (14:28 -0500)]
[perl #72588] t/op/mkdir.t fails, setting LC_ALL=C does not work
Robin Barker [Sat, 14 Aug 2010 18:58:51 +0000 (13:58 -0500)]
RT #74436: [PATCH] Add -Wwrite-strings
The perl source has for some while been clean to -Wwrite-strings.
I suggest this warning be added to cflags.
The patch makes the appropriate change to cflags.SH and silences a warning from mg.c
Chas. Owens [Sat, 14 Aug 2010 18:05:18 +0000 (13:05 -0500)]
RT #77150: perlre documentation issue and possible fix
Chris 'BinGOs' Williams [Sat, 14 Aug 2010 16:47:46 +0000 (17:47 +0100)]
Made a number of tests TODO in lib/overload.t due to changes to Test-Simple
Feature Changes
* is() and others will no longer stringify its arguments before
comparing. Overloaded objects will make use of their eq
overload rather than their "" overload. This can break tests of
impolitely string overloaded objects. DateTime prior to 0.54 is
the biggest example.
Chris 'BinGOs' Williams [Sat, 14 Aug 2010 14:06:07 +0000 (15:06 +0100)]
Update Test-Simple to CPAN version 0.96
[DELTA]
0.96 Tue Aug 10 21:13:04 PDT 2010
Bug Fixes
* You can call done_testing() again after reset() [googlecode 59]
Other
* Bug tracker moved to github
0.95_02 Wed May 19 15:46:52 PDT 2010
Bug Fixes
* Correct various typos and spelling errors (Nick Cleaton)
* Fix alignment of indented multi-line diagnostics from subtests
(Nick Cleaton)
* Fix incorrect operation when subtest called from within a todo block
(Nick Cleaton)
* Avoid spurious output after a fork within a subtest
(Nick Cleaton)
0.95_01 Wed Mar 3 15:36:59 PST 2010
Bug Fixes
* is_deeply() didn't see a difference in regexes [rt.cpan.org 53469]
* Test::Builder::Tester now sets $tb->todo_output to the output handle and
not the error handle (to be in accordance with the default behaviour of
Test::Builder and allow for testing TODO test behaviour).
* Fixed file/line in failing subtest() diagnostics. (Nick Cleaton)
* Protect against subtests setting $Level (Nick Cleaton)
New Features
* subtests without a 'plan' or 'no_plan' have an implicit 'done_testing()'
added to them.
* is_deeply() performance boost for large structures consisting of
mostly non-refs (Nick Cleaton)
Feature Changes
* is() and others will no longer stringify its arguments before
comparing. Overloaded objects will make use of their eq
overload rather than their "" overload. This can break tests of
impolitely string overloaded objects. DateTime prior to 0.54 is
the biggest example.
Nicholas Clark [Sat, 14 Aug 2010 15:46:20 +0000 (16:46 +0100)]
Properly reinstate space optimisations to SV body structures.
889d28b2ea2c1751 was incomplete; XPV, XPVIV and XPVNV were returning pointers
correctly offset within the allocated space to align the structures consistent
with XPVMG, but were allocating the full length, not just the used parts.
Jan Dubois [Sat, 14 Aug 2010 00:22:00 +0000 (17:22 -0700)]
Add Wolfram Humann to AUTHORS
Wolfram Humann [Sat, 14 Aug 2010 00:20:26 +0000 (17:20 -0700)]
make string-append on win32 100 times faster
When a string grows (e.g. gets appended to), perl calls sv_grow. When
sv_grow decides that the memory currently allocated to the string is
insufficient, it calls saferealloc. Depending on whether or not perl
was compiled with 'usemymalloc' this calls realloc in either perls
internal version or on the operating system. Perl requests from
realloc just the amount of memory required for the current
operation. With 'usemymalloc' this is not a problem because it rounds
up memory allocation to a certain geometric progression anyway. When
the operating system's realloc is called, this may or may not lead to
desaster, depending on how it's implemented. On win32 it does lead to
desaster: when I loop 1000 times and each time append 1000 chars to an
initial string size of 10 million, the memory grows from 10.000e6 to
10.001e6 to 10.002e6 and so on 1000 times till it ends at 11.000e6.
Tony Cook [Fri, 13 Aug 2010 14:21:29 +0000 (00:21 +1000)]
POSIX/t/posix.t expects a certain start to Makefile.PL
6695a346 changed the start of Makefile.PL, but t/posix.t reads that to
test its read() implementation, restore enough of the original for the
test to pass.
Tony Cook [Fri, 13 Aug 2010 13:57:52 +0000 (23:57 +1000)]
two of my patches had a bad From, teach checkAUTHORs.pl about them
I build these patches on a VM so they ended up with a bad author, stop
t/porting/authors.t from failing because of that.
Tony Cook [Wed, 21 Jul 2010 23:54:13 +0000 (09:54 +1000)]
make_ext.pl populates @INC correctly, don't override it badly
PERL5LIB is populated by make_ext.pl with paths to the modules we need
to run, don't override this with "../../lib" since that may not have
been populated yet in a parallel build.
Tony Cook [Wed, 21 Jul 2010 23:48:18 +0000 (09:48 +1000)]
Cwd.pm needs to be installed in lib before SDBM_File recurses. Mark the dependency
make_ext.pl fills PERL5LIB with relative directories to the modules
needed, but this fails for SDBM_File when it recurses into
ext/SDBM_File/sdbm directory. Revealed in parallel builds on OpenBSD.
Karl Williamson [Mon, 2 Aug 2010 22:45:29 +0000 (16:45 -0600)]
use charnames (); fails
If "use charnames ()" are the only usages of this pragma in a program,
it fails due to the pragma's import method not getting called. This
fixes that.
Karl Williamson [Mon, 2 Aug 2010 22:42:25 +0000 (16:42 -0600)]
charnames.t: tweak amount of testing of CJK chars
Actually, this tweaks the amount of testing of characters whose names are
algorithmically determinable, most of which are CJK characters.
This patch changes the testing to test not 1% of them, but to test 1 in
each block, no matter what the block size. We really don't need to test
many of these to be confident the algorithm is working.
It also adds some comments to clarify what happens if one tweaks the
block size.
Karl Williamson [Mon, 2 Aug 2010 22:40:28 +0000 (16:40 -0600)]
charnames.t: Change message to fit in 80 columns
This is an important message. Better not to wrap it.
Karl Williamson [Mon, 2 Aug 2010 22:36:51 +0000 (16:36 -0600)]
charnames.t: Guard agains empty lines in __DATA__
Somehow an empty line got inserted at the end of the file, and got
interpreted as 0's which caused the test for NULL to fail. This guards
against that.
I removed the empty line, but I'm not sure git has picked that up.
Karl Williamson [Mon, 2 Aug 2010 21:22:39 +0000 (15:22 -0600)]
charnames.t: use srand's seed
Don't calculate our own seed
Eric Brine [Sat, 31 Jul 2010 08:56:43 +0000 (01:56 -0700)]
Fix untimely destruction introduced by lvalue ops [RT#67838] by returning a TEMP instead of using TARG. Made appropriate TODO tests live.
Eric Brine [Fri, 30 Jul 2010 16:43:29 +0000 (09:43 -0700)]
TODO tests for untimely destruction introduced by lvalue ops [RT#67838]
Eric Brine [Tue, 13 Jul 2010 19:56:38 +0000 (12:56 -0700)]
Pure Perl lvalue subs can't return temps, even if they are magical. This holds back a fix for RT#67838.
This commit allows PP lvalue subs to return temps with set magic
and removes TODO from tests.
Eric Brine [Tue, 13 Jul 2010 19:36:55 +0000 (12:36 -0700)]
Pure Perl lvalue subs can't return temps, even if they are magical. This holds back a fix for RT#67838. Adds TODO tests.
David Golden [Thu, 12 Aug 2010 19:01:53 +0000 (15:01 -0400)]
Add perldiag entry for invalid version object
David Golden [Thu, 12 Aug 2010 19:01:34 +0000 (15:01 -0400)]
Remove invalid version object from diag.t exceptions
David Golden [Thu, 12 Aug 2010 17:38:53 +0000 (13:38 -0400)]
Refactor porting/diag.t and improve output format
Adds a subroutine to standardize messages variants into a form
that appears in perldiag.pod. Standardizes "panic: ..." instead
of skipping it.
Tests files in sorted order; improves diagnostic output
format for readability; only shows pass/fail once for each
diagnostic message
David Golden [Thu, 12 Aug 2010 17:09:04 +0000 (13:09 -0400)]
Add perldiag entries for new version format errors
Also updates porting/diag.t to standardize the
detected messages into the format used in perldiag.pod
David Golden [Thu, 12 Aug 2010 16:35:36 +0000 (12:35 -0400)]
Improve diag.t to detect BADVERSION diagnostics
H.Merijn Brand [Thu, 12 Aug 2010 10:02:12 +0000 (12:02 +0200)]
Account for GNU "i" extension when checking 'nm' output.
Add the new static_inline stuff to the "other" config files too
Add the missing Glossary parts
Nicholas Clark [Thu, 12 Aug 2010 09:33:09 +0000 (10:33 +0100)]
Convert int.t to test.pl (and hence produce better failure diagnostics).
Father Chrysostomos [Wed, 11 Aug 2010 11:51:25 +0000 (21:51 +1000)]
RT #75468: readline ignores <> overloading when arg is tied
Father Chrysostomos [Wed, 11 Aug 2010 09:53:08 +0000 (11:53 +0200)]
[perl #75904] \$ prototype does not make a unary function
This fixes this problem :
$ perl -le' sub foo($) { print "foo" }; foo $_, exit'
foo
$ perl -le' sub foo(\$) { print "foo" }; foo $_, exit'
Too many arguments for main::foo at -e line 1, at EOF
Execution of -e aborted due to compilation errors.
for all those prototypes:
*
\sigil
\[...]
;$
;*
;\sigil
;\[...]
Karl Williamson [Sun, 1 Aug 2010 04:21:54 +0000 (22:21 -0600)]
op.h: Move bits around to allow for future growth
This creates an unallocated space at the shared/unshared boundary of the
data with regexp.h. This allows any future bits that may be needed to
go into either, without affecting binary compatibility. I chose a
number of spare bits larger than I thought we would ever need
Karl Williamson [Sun, 1 Aug 2010 04:20:43 +0000 (22:20 -0600)]
regexp.h: Move bits around
make regen needed.
This commit moves some bits in extflags around so that all the unallocated
ones are at the boundary between the unshared portion and the portion
shared with op.h. This allows them to be allocated in the future to go
either way, without affecting binary compatibility at that time.
The high-order bits are unaffected, but the low order ones move to fill
the gap.
Karl Williamson [Sun, 1 Aug 2010 04:18:42 +0000 (22:18 -0600)]
op.h, regexp.h: renumber shifts.
This patch doesn't change any generated code. It just changes the base
numbering of the shifts from 1 to 0. In regexp.h the RXf_BASE_SHIFT was
changed to make sure the used bits didn't change
Karl Williamson [Sun, 1 Aug 2010 04:16:34 +0000 (22:16 -0600)]
op_reg_common.h: Continue refactoring
The new op_reg_common.h did not have in it all the things that made
sense for it to have, including some comment changes that I should have
made when I created it.
I also realized the the new mechanism of using shifts allowed
RXf_PMf_STD_PMMOD_SHIFT to actually control things, rather than be a
#define that one had to remember to change if those things changed
independently.
Finally, I created a check so that adding bits without adding them to
RXf_PMf_COMPILETIME will force a compilation error. (This came from the
school of hard knocks)
Karl Williamson [Sun, 1 Aug 2010 03:57:05 +0000 (21:57 -0600)]
regexp.h: Nit in comments
Karl Williamson [Sat, 31 Jul 2010 20:18:03 +0000 (14:18 -0600)]
op_reg_common.h: Move things around
Moving the definitions of the duplicate variables makes it easier to
read. Unfortunately, the values can't be in terms of the previous ones
because defsubs_h.PL doesn't pick them up. So I've made them numeric
with a #if to make sure they don't drift off.
Karl Williamson [Sat, 31 Jul 2010 20:13:40 +0000 (14:13 -0600)]
op_reg_common.h: Refactor variable for safety
This patch changes the variable that tells how many common bits there
are to instead be +1 that value, so bits won't get reused. A later
commit will renumber the bits in op.h and regexp.h, but for now things
are left as-is there, which means the base variables in those two files
must subtract one to compensate for the +1
Karl Williamson [Sat, 31 Jul 2010 20:01:46 +0000 (14:01 -0600)]
regexp.h, op.h: decouple mostly from op_reg_common.h
This patch changes the shift bases to new ones local in the files that
are set to the common one. Thus, there is now a single point of
coupling between in each file to the common one.
Karl Williamson [Sat, 31 Jul 2010 19:57:51 +0000 (13:57 -0600)]
op.h: Fix error msg
Karl Williamson [Sat, 31 Jul 2010 19:49:27 +0000 (13:49 -0600)]
regexp.h: Fix error check to use correct offset
Karl Williamson [Mon, 9 Aug 2010 17:35:51 +0000 (11:35 -0600)]
perlrecharclass: Document subtlety in Unicode
The documentation had failed to mention that a regex pattern in utf8
encoding forces a Unicode interpretation on a non-utf8 string.
Karl Williamson [Mon, 9 Aug 2010 17:34:12 +0000 (11:34 -0600)]
perlrecharclass: Fix typo
Karl Williamson [Mon, 9 Aug 2010 17:33:09 +0000 (11:33 -0600)]
perlglossary: Add defn for "code point"
Karl Williamson [Mon, 9 Aug 2010 15:29:11 +0000 (09:29 -0600)]
perlunifaq: Note: \d, \D do not have Unicode bug
Karl Williamson [Mon, 9 Aug 2010 14:41:29 +0000 (08:41 -0600)]
perlunicode.pod: Elaborate unicode bug for POSIX
Mention the POSIX character classes as being affected by the Unicode
bug.
Rafael Garcia-Suarez [Wed, 11 Aug 2010 08:12:09 +0000 (10:12 +0200)]
Revert "perlunicode.pod: Elaborate unicode bug for POSIX"
This reverts commit
d67647f5f40a7e78bffc92ff8600c67f95d3d7b0.
Karl Williamson [Mon, 9 Aug 2010 14:41:29 +0000 (08:41 -0600)]
perlunicode.pod: Elaborate unicode bug for POSIX
Mention the POSIX character classes as being affected by the Unicode
bug.
Karl Williamson [Mon, 9 Aug 2010 14:26:14 +0000 (08:26 -0600)]
feature.pm: Note unicode_strings is not complete
Karl Williamson [Sun, 1 Aug 2010 18:50:38 +0000 (12:50 -0600)]
perlrepository.pod: Elaborate -a, -m
Chris 'BinGOs' Williams [Mon, 9 Aug 2010 13:50:39 +0000 (14:50 +0100)]
Update Unicode-Collate to CPAN version 0.56
[DELTA]
0.56 Sun Aug 8 20:24:03 2010
- Unicode::Collate::Locale newly supports locales: eo, nb, ro, sv.
! renamed t/locale_{xy}.t to t/loc_{xy}.t (for safer 8.3 names)
Jan Dubois [Sat, 7 Aug 2010 00:08:38 +0000 (17:08 -0700)]
Define _USE_32BIT_TIME_T for VC6 and VC7
In VS 2005 (VC++ 8.0) Microsoft changes time_t from 32-bit to
64-bit, even in 32-bit mode. It also provides the _USE_32BIT_TIME_T
preprocessor option to revert back to the old functionality for
backward compatibility. We define this symbol here for older 32-bit
compilers only (which aren't using it at all) for the sole purpose
of getting it into $Config{ccflags}. That way if someone builds
Perl itself with e.g. VC6 but later installs an XS module using VC8
the time_t types will still be compatible.
Jan Dubois [Fri, 6 Aug 2010 23:44:50 +0000 (16:44 -0700)]
Don't mention Activeware Perl versions
All Win32::* modules on CPAN now build with standard toolchain
commands; there is no need for "porting" or special build instructions
anymore.
Jan Dubois [Fri, 6 Aug 2010 23:41:55 +0000 (16:41 -0700)]
Drop references to obsolete MinGW 1.x (gcc 2.95)
There are know issues with that compiler versions, and the necessary
fixes are no longer readily available, so stop claiming this is still
a supported compiler. Just require gcc 3.2.x or later everywhere for
MinGW support.
Jan Dubois [Fri, 6 Aug 2010 23:26:48 +0000 (16:26 -0700)]
Platform name is Windows, not Win32
Remove reference to old compilers and also use the current
name "Windows SDK" instead of the older "Platform SDK" in most
places. There is sill lots of chance for further improvements!
Leon Brocard [Tue, 3 Aug 2010 14:39:57 +0000 (16:39 +0200)]
Podtidy perlrepository.pod
H.Merijn Brand [Mon, 2 Aug 2010 15:17:24 +0000 (17:17 +0200)]
C89 doesn't allow static dynamic initialization of complete structs
Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>
Chris 'BinGOs' Williams [Mon, 2 Aug 2010 13:56:01 +0000 (14:56 +0100)]
Updated Unic0de-Collate to CPAN version 0.55
[DELTA]
0.55 Sun Aug 1 21:21:23 2010
- incorporated Unicode::Collate::Locale with some changes.
(see http://www.xray.mpe.mpg.de/mailing-lists/perl-unicode/2004-03/msg00030.html)
! added t/locale*.t that uses DUCET.
0.54 Sun Jul 25 21:37:04 2010
- Now UCA Revision 20 (based on Unicode 5.2.0).
- DUCET is also updated (for Unicode 5.2.0) as Collate/allkeys.txt,
which *is required* to test this module.
! Please notice that allkeys.txt will be overwritten if you have had
other allkeys.txt already.
- U+9FC4..U+9FCB and U+2A700..U+2B734 are new CJK Unified Ideographs.
- Many hangul jamo are assigned (affecting hangul_terminator).
! DUCET will be compiled when XS is used. Explicit saying
<table => 'allkeys.txt'> (or using another table) will prevent
this module using the compiled DUCET.
! added t/default.t that uses DUCET.
Craig A. Berry [Mon, 2 Aug 2010 03:12:38 +0000 (22:12 -0500)]
Close the tempfile in caller.t
Otherwise it will be locked when trying to run it on VMS.
David Cantrell [Mon, 2 Aug 2010 07:43:27 +0000 (09:43 +0200)]
Add tests for Tie::ExtraHash
David Cantrell [Mon, 2 Aug 2010 07:35:38 +0000 (09:35 +0200)]
Fix file name in comment
Karl Williamson [Sun, 1 Aug 2010 19:01:08 +0000 (13:01 -0600)]
perlhack: Note existence of t/lib/warnings
I didn't know about it, and thus went to unnecessarily effort until this
was kindly pointed out to me.
Karl Williamson [Sun, 1 Aug 2010 18:29:54 +0000 (12:29 -0600)]
handy.h: Note Devel::PPPort has duplicated macros
If a bug is found in the handy.h macros, it may be necessary to fix the
duplicates in the cpan module. This may require filing a bug report
there.
David Mitchell [Sun, 1 Aug 2010 20:39:39 +0000 (21:39 +0100)]
clarify when HV backref is in magic
Fix up the comments in and above some functions to clarify that backref
bagic for hVs may sometimes be moved back to HvAUX.
David Mitchell [Sun, 1 Aug 2010 20:30:33 +0000 (21:30 +0100)]
stop after first del_backref
When deleting a backreference, there should be only one matching entry.
For normal builds sop after the first one; under DEBUGGING, look for more,
then assert only one found.
The previous behaviour was to unconditionally scan the whole array and
not assert that anything was found.
David Mitchell [Sun, 1 Aug 2010 14:18:51 +0000 (15:18 +0100)]
optimise single backreferences
Rather than creating an AV and pushing the backref onto it,
store a single backref directly in the mg_obj or xhv_backreferences
slot.
If the backref is an AV, then we skip this optimisation (although I don't
think at the moment, that an AV would ever be pointed to by some backref
magic). So the test of whether the optimisation is is in effect is whether
the thing in the slot is an AV or not.
David Mitchell [Thu, 29 Jul 2010 22:05:17 +0000 (23:05 +0100)]
refactor Perl_sv_add_backref
No functional changes, but concentrate the assigning of a new AV in a
single place, to make the next commit easier
David Mitchell [Sun, 1 Aug 2010 12:20:15 +0000 (13:20 +0100)]
DEBUG_LEAKING_SCALARS: add sv_debug_parent
Rather than just recording whether an SV was cloned (sv->sv_debug_cloned),
record the address of the SV we were cloned from.
George Greer [Sun, 1 Aug 2010 04:30:22 +0000 (00:30 -0400)]
Change spaces to tabs for t/op/tie_fetch_count.t in MANIFEST
Florian Ragwitz [Sat, 31 Jul 2010 23:07:01 +0000 (01:07 +0200)]
Add t/op/tie_fetch_count.t to MANIFEST
David Golden [Sat, 31 Jul 2010 03:48:37 +0000 (23:48 -0400)]
More release manager updates from 5.13.3 release notes
David Golden [Fri, 30 Jul 2010 23:50:33 +0000 (19:50 -0400)]
revert epigraphs.pod note in release manager's guide
David Golden [Fri, 30 Jul 2010 22:00:10 +0000 (22:00 +0000)]
Update release managers guide with notes from 5.13.3 release
David Golden [Fri, 30 Jul 2010 21:57:20 +0000 (21:57 +0000)]
Improve Porting/checkAUTHORS.pl
Rationalized options and usage message. The new "--who" option
now gives full names as provided in the AUTHORS file.
Updated t/porting/authors.t for the new option syntax.
David Golden [Fri, 30 Jul 2010 20:52:28 +0000 (20:52 +0000)]
checkAUTHORS.pl: add --who to list unique authors
This will help in generating the Acknowledgements
section of perldelta using the known authors map.
Rafael Garcia-Suarez [Fri, 30 Jul 2010 12:22:33 +0000 (14:22 +0200)]
Make new tie test less noisy
Karl Williamson [Thu, 29 Jul 2010 17:52:52 +0000 (11:52 -0600)]
Add new hdr op_reg_common to Makefile.SH
I believe this is required for dependencies to be calculated properly
Abigail [Fri, 30 Jul 2010 00:21:52 +0000 (02:21 +0200)]
Tests to check if FETCH of a tied variable isn't called more
than once. See also Bug 76814.
David Mitchell [Thu, 29 Jul 2010 18:37:16 +0000 (19:37 +0100)]
Peek.t: better identify failing tests