pyrsistent 0.15.4-2 source package in Ubuntu

Changelog

pyrsistent (0.15.4-2) unstable; urgency=medium

  * No change reupload.

 -- Andrej Shadura <email address hidden>  Fri, 27 Sep 2019 17:16:20 +0200

Upload details

Uploaded by:
Debian Python Modules Team
Uploaded to:
Sid
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.4-2.dsc 1.9 KiB 021b8cb4b2a30364bff354f6d660468f8b4148fb310ff18e6ba0e4afa958ed3a
pyrsistent_0.15.4.orig.tar.gz 104.7 KiB 34b47fa169d6006b32e99d4b3c4031f155e6e68ebcc107d6454852e8e0ee6533
pyrsistent_0.15.4-2.debian.tar.xz 3.0 KiB 05a54cb9def39976ff1abfdbbf513348da71eb8f457720e15e0ea3ae8d0ea29e

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