libio-file-withfilename-perl 0.01-2 source package in Ubuntu

Changelog

libio-file-withfilename-perl (0.01-2) unstable; urgency=medium

  * Team upload.
  * No-change source-only re-upload.

 -- gregor herrmann <email address hidden>  Sun, 05 Feb 2023 02:17:37 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libio-file-withfilename-perl_0.01-2.dsc 2.4 KiB a3145911c2c2e6a544b4de32031aa5336170615bb9cd2e5ba1ee8d5d0263d04b
libio-file-withfilename-perl_0.01.orig.tar.gz 2.1 KiB 013b8b8e21d16b112275cb237c911138d14c95ca8fc998a981dfde94f4755109
libio-file-withfilename-perl_0.01-2.debian.tar.xz 1.6 KiB 3fa567f52ede6adaf680008cbb127a04b7596e7a72b2b7ce855325da660e1eb8

No changes file available.

Binary packages built by this source

libio-file-withfilename-perl: filehandles that know their origin

 IO::File::WithFilename does everything that IO::File does, but implements
 filename method, that File::Temp objects have. It lets you write the code
 that is ignorant of what classes of objects it works with.
 .
 If you want to check if it is safe to call filename method, you are
 recommended to call can method rather than to check an object's inheritance:
 .
   print $obj->filename, "\n" if eval { $obj->can('filename') };