pprintpp 0.4.0-3 source package in Ubuntu

Changelog

pprintpp (0.4.0-3) unstable; urgency=low

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit.

  [ Ondřej Nový ]
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Sandro Tosi ]
  * Use the new Debian Python Team contact name and address
  * debian/copyright
    - extend packaging copyright years
  * debian/control
    - bump Standards-Version to 4.6.0.1 (no changes needed)

 -- Sandro Tosi <email address hidden>  Wed, 04 May 2022 21:58:19 -0400

Upload details

Uploaded by:
Sandro Tosi
Uploaded to:
Sid
Original maintainer:
Sandro Tosi
Architectures:
all
Section:
misc
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pprintpp_0.4.0-3.dsc 1.9 KiB 303dd860ab460deea7559f55e8484e425d1d424e3887794185112cf600d7e829
pprintpp_0.4.0.orig.tar.gz 17.6 KiB ea826108e2c7f49dc6d66c752973c3fc9749142a798d6b254e1e301cfdbc6403
pprintpp_0.4.0-3.debian.tar.xz 2.6 KiB 24f8421344a13681d641f3aec9f21fc398be2909cc10615c7d77a3a2606b665c

Available diffs

No changes file available.

Binary packages built by this source

python3-pprintpp: drop-in replacement for pprint that's actually pretty

 Unlike pprint, pprintpp strives to emit a readable, largely PEP8-compliant,
 representation of its input.
 .
 It also has explicit support for: the collections module (defaultdict and
 Counter) and numpy arrays.
 .
 Unicode characters, when possible, will be printed un-escaped. This is done by
 checking both the output stream's encoding (defaulting to utf-8) and the
 character's Unicode category. An effort is made to print only characters which
 will be visually unambiguous: letters and numbers will be printed un-escaped,
 spaces, combining characters, and control characters will be escaped.
 .
 Subclassess of built-in collection types which don't define a new __repr__ will
 have their class name explicitly added to their repr (while custom __repr__
 methods will be respected).