This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
hashassign.t: Test undef explicitly
[perl5.git] / t / re /
2012-12-10 Father ChrysostomosFix problems with -Dr during global destruction
2012-12-09 Karl WilliamsonAdd Todo test for Perl #114272
2012-12-04 Father ChrysostomosDeprecate lexical $_
2012-11-27 Father Chrysostomossubst.t: Test something I nearly broke
2012-11-27 Father ChrysostomosTest perl #4289
2012-11-25 Matthew Horsfall... RT-23180 - If we skip matching in pp_match for any...
2012-11-11 Karl Williamsontoke.c: Don't force \N{} into utf8 unnecessarily
2012-11-11 Karl WilliamsonValidate above-Latin1 characters in \N{} aliases
2012-11-11 Karl WilliamsonMake \N{alias} deprecations fatal.
2012-11-02 Father ChrysostomosFix /a++(?{})+$code_block/
2012-10-21 Dagfinn Ilmari Man... PATCH: [perl #115242] Test
2012-10-20 Karl Williamsonfold_grind.t: Set $| if debugging
2012-10-19 Karl Williamsonregexec.c: Fix bugs in regrepeat()
2012-10-17 Karl Williamsonregex: \R can match either 1 or 2 chars
2012-10-14 Karl Williamsonregexp.t: Add 'no warnings "utf8";
2012-10-14 Karl WilliamsonPATCH: [perl #89774] multi-char fold + its fold in...
2012-10-12 Father ChrysostomosDisable const repl optimisation for empty pattern
2012-10-12 Father Chrysostomos[perl #49190] Don’t prematurely optimise s/foo/bar...
2012-10-12 Father Chrysostomos[perl #49190] Stringify repl repeatedly in s///g
2012-10-12 Father ChrysostomosSimplify the fix for bug #41530
2012-10-12 Karl Williamsonregexec.c: Fix EXACT node handling in regrepeat()
2012-10-10 Father Chrysostomos[perl #26986] Skip subst const repl optimisation for...
2012-10-09 Karl WilliamsonPATCH: [perl #114982]: case-insensitive regex bug with...
2012-10-07 Father ChrysostomosFix infinite loop with $tied =~ s/non-utf8/utf8/
2012-10-06 Aaron CraneFix spurious "uninitialized value" warning in regex...
2012-09-30 Yves OrtonFix [perl #115050] Double empty sub-regexp makes "panic!"
2012-09-15 Karl WilliamsonPATCH: [perl #82954] Make "Can't do {n,m} with n >...
2012-09-12 David Mitchelladd test for 6502e08, s/(.)/die/e
2012-09-08 David Mitchellfix a bug in handling $+[0] and unicode
2012-09-08 David Mitchellstop $foo =~ /(bar)/g skipping copy
2012-09-08 David Mitchellrationalise t/re/pat_psycho.t
2012-09-08 David MitchellDon't copy all of the match string buffer
2012-09-08 David MitchellSeparate handling of ${^PREMATCH} from $` etc
2012-08-29 Colin KuskieRefactor t/re/no_utf8_pt.t to use test.pl instead of...
2012-08-26 Karl WilliamsonRevert "Experimentally Use Unicode 6.2 beta"
2012-08-26 Karl Williamsonregcomp.c: Special case /[UV_MAX]/
2012-08-12 Karl Williamsonregcomp.c: Optimization not valid for Latin Sharp S
2012-08-12 Karl Williamsonregcomp.c: Set flags when optimizing a [char class]
2012-08-12 Karl Williamsonre/re_tests: Correct Todo test
2012-08-12 Karl WilliamsonAdd some tests for [\N{}]
2012-08-02 Karl Williamsonregcomp.c: Fix \N{} multi-char fold buffer boundary bug
2012-08-02 Karl Williamsonregcomp.c: Fix multi-char fold bug
2012-07-26 Karl Williamsonmktables: Change \w definition to match new Unicode's
2012-07-25 Karl Williamsonregcomp.c: Use POSIXA, NPOSIXA
2012-07-25 Karl Williamsonregcomp.c: Optimize [^\n] into \N
2012-07-21 Karl Williamsonre_tests: Add tests for [perl #114220]
2012-07-14 Yves Ortonfix RT#114068 optimizer handles MEOL in middle of patte...
2012-06-30 Karl Williamsonreg_fold.t: Make test cases non-optimizable away
2012-06-30 Karl Williamsonno_utf8_pm.t: Add blank between 'not' and 'ok' in .t
2012-06-23 Yves Orton#101666: horrible regex parsing error error [sic]
2012-06-23 Yves Ortonturns out we cant maike a jump trie that starts with...
2012-06-20 Karl Williamsonreg_mesg.t: Add tests
2012-06-19 David Mitchelloverloading: make qr fallback to "" better
2012-06-17 Karl Williamsont/re/re_tests: Clarify comment
2012-06-17 Karl Williamsonregcomp.c: Warn and don't emit a NUL for e.g. /\87/
2012-06-16 David Mitchellfix paren unwinding with CURLYN, CURLYM
2012-06-15 David MitchellProperly restore PL_curcop after /(?{})/
2012-06-13 David Mitchellpropagate /msix and (?msix) etc flags into (??{})
2012-06-13 David Mitchelltest that code within /(?{})/ etc is optimised
2012-06-13 David Mitchelladd tests for (?{ return foo })
2012-06-13 David Mitchellun-TODO recursive split test
2012-06-13 David Mitchelladd test for /(??{exit})/
2012-06-13 David Mitchellavoid 'unescaped left brace' warnings
2012-06-13 David Mitchelladd tests for $1 modified compiling code block
2012-06-13 David Mitchelladd tests that (?{}) etc called in scalar context
2012-06-13 David Mitchellhandle weird/undef (?{}), (??{}) return value
2012-06-13 David Mitchellremove invalid assertion in (??{}) return code
2012-06-13 David Mitchellpropagate 'use re eval' into return from (??{})
2012-06-13 David Mitchellsave paren positions when running (?{}) code
2012-06-13 David Mitchell$+ and $^N not always correct on backtracking
2012-06-13 David Mitchellmake calling of /(?{}) code blocks correct
2012-06-13 David Mitchellpat_re_eval.t; test "use re 'eval'"
2012-06-13 David Mitchellensure regex evals report the right location
2012-06-13 David MitchellFix up runtime regex codeblocks.
2012-06-13 David Mitchellimprove skipping of regex [..] char class in toker
2012-06-13 David Mitchellskip re_eval leak test under -Dmad
2012-06-13 David Mitchellre-enable some threaded regex TODO tests
2012-06-13 David Mitchellre/pat_re_eval.t: tidy some 'use re eval' tests
2012-06-13 David Mitchelladd tests for regex recompilation
2012-06-13 David Mitchellforce recompiling of regex where closures matter
2012-06-13 David Mitchellpat_re_eval.t: reduce scope of 'use re eval'.
2012-06-13 David Mitchellpat_re_eval.t: remove 'no warnings'
2012-06-13 David Mitchelladd more tests for embedded qr// and code blocks
2012-06-13 David Mitchellpreserve code blocks in interpolated qr//s
2012-06-13 David Mitchellhandle /$not_utf8(?{...})$utf8/
2012-06-13 David Mitchell"don't recompile pattern" check: account for UTF8
2012-06-13 David Mitchellre_op_compile: recalc code indexes on utf8 upgrade
2012-06-13 David MitchellHandle literal code blocks in runtime regexes
2012-06-13 David Mitchellmake qr/(?{})/ behave with closures
2012-06-13 David MitchellIgnore code blocks within /[...]/
2012-06-13 David MitchellMostly complete fix for literal /(?{..})/ blocks
2012-06-13 David Mitchellre_eval and closures: add lots of TODO tests
2012-06-13 David Mitchelldisable lexing of (?{}) within \Q, \U etc
2012-06-13 David Mitchellmake re_evals be seen by the toker/parser
2012-06-11 Karl WilliamsonRequire space between regex and following alnum operator
2012-06-08 Karl WilliamsonExperimentally Use Unicode 6.2 beta
2012-06-05 Yves Ortonmake TRIE nodes "absorb" NOTHING->EXACT sequences
2012-06-02 Karl Williamsonfold_grind.t: DEBUG mode should automatically give...
2012-06-02 Karl Williamsonfold_grind.t: white-space, comments only
2012-06-02 Karl Williamsonreg_fold.t: Allow to work on early Unicodes
next