pyrsistent 0.15.5-1build5 source package in Ubuntu

Changelog

pyrsistent (0.15.5-1build5) jammy; urgency=medium

  * No-change rebuild to add python3.10.

 -- Matthias Klose <email address hidden>  Sat, 16 Oct 2021 06:57:59 +0000

Upload details

Uploaded by:
Matthias Klose
Uploaded to:
Jammy
Original maintainer:
Debian Python Modules 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.15.5.orig.tar.gz 104.9 KiB eb6545dbeb1aa69ab1fb4809bfbf5a8705e44d92ef8fc7c2361682a47c46c778
pyrsistent_0.15.5-1build5.debian.tar.xz 3.2 KiB 1b3c5b6fa66cf8d9ab8b629f8d7874716cf0d94b135503d7e7340bb18c8ef79c
pyrsistent_0.15.5-1build5.dsc 2.2 KiB 54741e1b7d1c0aef30b7b95aaa7e728093a40c86ee62ef2bffe22d3d87810e74

View changes file

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