pyrsistent 0.18.1-1 source package in Ubuntu

Changelog

pyrsistent (0.18.1-1) unstable; urgency=medium

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

  [ Debian Janitor ]
  * Set field Upstream-Name in debian/copyright.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.

  [ Thomas Goirand ]
  * New upstream release.

 -- Thomas Goirand <email address hidden>  Fri, 18 Feb 2022 14:03:22 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
pyrsistent_0.18.1-1.dsc 2.1 KiB 84813cc533dcee4b60568f8851e0eef69b6b56bbf4d812808daf3bc4d853d913
pyrsistent_0.18.1.orig.tar.gz 98.2 KiB d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96
pyrsistent_0.18.1-1.debian.tar.xz 3.3 KiB 2e8a71b17b3916dab4844c06075a1757797dce01542b7d2554051c38346625f0

No changes file available.

Binary packages built by this source

python3-pyrsistent: persistent/functional/immutable data structures for Python

 Pyrsistent is a number of persistent collections (sometimes referred
 to as functional data structures). Persistent in the sense that they
 are immutable.
 .
 All methods on a data structure that would normally mutate it instead
 return a new copy of the structure containing the requested updates.
 The original structure is left untouched.
 .
 The collection types and key features currently implemented are:
 .
  * PVector, similar to a python list
  * PMap, similar to dict
  * PSet, similar to set
  * PRecord, a PMap on steroids with fixed fields, optional type and
    invariant checking and much more
  * PClass, a Python class fixed fields, optional type and invariant
    checking and much more
  * Checked collections, PVector, PMap and PSet with optional type
    and invariance checks and more
  * PBag, similar to collections.Counter
  * PList, a classic singly linked list
  * PDeque, similar to collections.deque
  * Immutable object type (immutable) built on the named tuple
  * freeze and thaw functions to convert between pythons standard
    collections and pyrsistent collections.
  * Flexible transformations of arbitrarily complex structures built
    from PMaps and PVectors.

python3-pyrsistent-dbgsym: debug symbols for python3-pyrsistent