pyrsistent 0.20.0-1 source package in Ubuntu

Changelog

pyrsistent (0.20.0-1) unstable; urgency=medium

  * Team Upload
  * New upstream version 0.20.0
  * remove extraneous dependency on python3-six

 -- Alexandre Detiste <email address hidden>  Wed, 21 Feb 2024 14:16:49 +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.20.0-1.dsc 2.1 KiB 3d5309b91760764008f53c4f56e3f43789ab0fd3517836dc381e6b5dad8003c1
pyrsistent_0.20.0.orig.tar.gz 101.2 KiB 4c48f78f62ab596c679086084d0dd13254ae4f3d6c72a83ffdf5ebdef8f265a4
pyrsistent_0.20.0-1.debian.tar.xz 3.4 KiB 6588a5207c4c6edefee8e2d71d518c3d94b158c77b8d889a3d24f24b9dffa061

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