Branch: refs/heads/blead
  Home:   https://github.com/Perl/perl5
  Commit: 8b1b46cdfe5137474a84e023db9c2cd79704c050
      
https://github.com/Perl/perl5/commit/8b1b46cdfe5137474a84e023db9c2cd79704c050
  Author: Lukas Mai <lukasmai....@gmail.com>
  Date:   2025-03-19 (Wed, 19 Mar 2025)

  Changed paths:
    M dist/I18N-Collate/t/I18N-Collate.t
    M dist/IO/t/io_linenum.t
    M dist/Safe/t/safe1.t
    M dist/Safe/t/safe2.t
    M dist/Safe/t/safe3.t
    M dist/Safe/t/safeload.t
    M dist/Safe/t/saferegexp.t
    M dist/Safe/t/safesecurity.t
    M dist/Safe/t/safesig.t
    M dist/Safe/t/safesort.t
    M dist/Safe/t/safeuniversal.t
    M dist/Safe/t/safeutf8.t
    M dist/Safe/t/safewrap.t
    M ext/Devel-Peek/t/Peek.t
    M ext/Fcntl/t/syslfs.t
    M ext/IPC-Open3/t/IPC-Open3.t
    M ext/Opcode/t/Opcode.t
    M ext/Opcode/t/ops.t
    M ext/POSIX/t/mb.t
    M ext/POSIX/t/posix.t
    M ext/POSIX/t/taint.t
    M ext/Sys-Hostname/t/Hostname.t
    M ext/XS-APItest/t/my_cxt.t
    M ext/XS-Typemap/t/Typemap.t
    M lib/AnyDBM_File.t
    M lib/Net/hostent.t
    M lib/locale.t
    M lib/open.t
    M t/io/errnosig.t
    M t/io/pipe.t
    M t/io/semctl.t
    M t/lib/commonsense.t
    M t/op/lc.t
    M t/op/quotemeta.t
    M t/re/anyof.t
    M t/re/fold_grind.pl
    M t/re/pat.t
    M t/re/speed.t
    M t/re/stclass_threads.t
    M t/re/subst.t
    M t/run/runenv_hashseed.t
    M t/run/runenv_randseed.t
    M t/run/switchM.t
    M t/run/switches.t
    M t/run/todo.t
    M t/uni/fold.t
    M t/uni/overload.t
    M t/win32/runenv.t

  Log Message:
  -----------
  various tests: replace BEGIN/require/import by use

That is, turn

    BEGIN {
        require Foo;
        Foo->import(...);
    }

into

    use Foo ...;

(Except for a few tests that did the `require Config; Config->import`
dance without actually using `%Config` anywhere, so I just deleted the
import code.)



To unsubscribe from these emails, change your notification settings at 
https://github.com/Perl/perl5/settings/notifications

Reply via email to