/usr/share/perl5/Debconf
NameSizeModeActions
Client/-0755rm
DbDriver/-0755rm
Element/-0755rm
Format/-0755rm
FrontEnd/-0755rm
Template/-0755rm
AutoSelect.pm19480644editdlrm
Base.pm4990644editdlrm
Config.pm70200644editdlrm
ConfModule.pm156390644editdlrm
Db.pm12020644editdlrm
DbDriver.pm23590644editdlrm
Element.pm1960644editdlrm
Encoding.pm14870644editdlrm
Format.pm1330644editdlrm
FrontEnd.pm28640644editdlrm
Gettext.pm3010644editdlrm
Iterator.pm1980644editdlrm
Log.pm9140644editdlrm
Path.pm2910644editdlrm
Priority.pm6420644editdlrm
Question.pm58670644editdlrm
Template.pm82010644editdlrm
TmpFile.pm3740644editdlrm
Edit: /usr/share/perl5/Debconf/Base.pm (499B)
#!/usr/bin/perl -w # This file was preprocessed, do not edit! package Debconf::Base; use Debconf::Log ':all'; use strict; sub new { my $proto = shift; my $class = ref($proto) || $proto; my $this=bless ({@_}, $class); $this->init; return $this; } sub init {} sub AUTOLOAD { (my $field = our $AUTOLOAD) =~ s/.*://; no strict 'refs'; *$AUTOLOAD = sub { my $this=shift; return $this->{$field} unless @_; return $this->{$field}=shift; }; goto &$AUTOLOAD; } sub DESTROY { } 1