/usr/lib/perl5/Search/Xapian/PerlStopper.pm is in libsearch-xapian-perl 1.2.15.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | package Search::Xapian::PerlStopper;
use 5.006;
use strict;
use warnings;
use Search::Xapian::Stopper;
@Search::Xapian::PerlStopper::ISA = qw(Search::Xapian::Stopper);
# In a new thread, copy objects of this class to unblessed, undef values.
sub CLONE_SKIP { 1 }
1;
|