pyrsistent 0.18.1-1build3 source package in Ubuntu

Changelog

pyrsistent (0.18.1-1build3) lunar; urgency=medium

  * Rebuild to drop Python 3.10 extension

 -- Jeremy Bicha <email address hidden>  Tue, 28 Feb 2023 19:26:21 -0500

Upload details

Uploaded by:
Jeremy BĂ­cha
Uploaded to:
Lunar
Original maintainer:
Debian Python Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release main misc
Lunar release main misc

Downloads

File Size SHA-256 Checksum
pyrsistent_0.18.1.orig.tar.gz 98.2 KiB d4d61f8b993a7255ba714df3aca52700f8125289f84f704cf80916517c46eb96
pyrsistent_0.18.1-1build3.debian.tar.xz 3.4 KiB 9a4a45a748ee616e71ccfe4dbede263f8e98ddec0eab093723f44107aee6f3c4
pyrsistent_0.18.1-1build3.dsc 2.1 KiB ed21b9ce5f31726f40bc8cf55323bd555295a427cd5be83a65dff1dc68c25dd3

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