pyrsistent 0.15.4-3 source package in Ubuntu

Changelog

pyrsistent (0.15.4-3) unstable; urgency=medium

  [ Ondřej Nový ]
  * Bump Standards-Version to 4.4.1.

  [ Andrej Shadura ]
  * Use secure URI in Homepage field.

 -- Andrej Shadura <email address hidden>  Sun, 27 Oct 2019 22:31:42 +0100

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-3.dsc 1.9 KiB 9da8014f941150736bac26bd9442df3cda6b068097685bedc0c47c86c36ac72a
pyrsistent_0.15.4.orig.tar.gz 104.7 KiB 34b47fa169d6006b32e99d4b3c4031f155e6e68ebcc107d6454852e8e0ee6533
pyrsistent_0.15.4-3.debian.tar.xz 3.0 KiB b5f7ac8071bf9e8a7fcaec5060f6e15b036d07c39c21c22fd731c6717cc6128d

Available diffs

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