pyrsistent 0.18.1-1build5 source package in Ubuntu

Changelog

pyrsistent (0.18.1-1build5) noble; urgency=medium

  * Rebuild against new python3.12 on i386.

 -- Gianfranco Costamagna <email address hidden>  Wed, 22 Nov 2023 08:38:50 +0100

Upload details

Uploaded by:
Gianfranco Costamagna
Uploaded to:
Noble
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.orig.tar.gz 98.2 KiB d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96
pyrsistent_0.18.1-1build5.debian.tar.xz 3.5 KiB f82cce07de22153b18b74033259b09868b3367d3f6c60f6afa11c49af9803094
pyrsistent_0.18.1-1build5.dsc 2.1 KiB 22fcc431c2d804e5d760271177de4aec8705489f54708c1d8d8c3dbefe757d79

Available diffs

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