File: control

package info (click to toggle)
pyrsistent 0.20.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 688 kB
  • sloc: python: 5,289; ansic: 1,213; makefile: 8
file content (56 lines) | stat: -rw-r--r-- 2,007 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Source: pyrsistent
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
 Andrej Shadura <andrewsh@debian.org>,
 Thomas Goirand <zigo@debian.org>
Section: python
Priority: optional
Build-Depends:
 debhelper-compat (= 13),
 dh-python,
 python3-all-dev,
 python3-setuptools,
 python3-pytest,
 python3-pytest-runner,
 python3-hypothesis,
Standards-Version: 4.5.1
Testsuite: autopkgtest-pkg-python
Homepage: https://github.com/tobgu/pyrsistent/
Vcs-Browser: https://salsa.debian.org/python-team/packages/pyrsistent
Vcs-Git: https://salsa.debian.org/python-team/packages/pyrsistent.git

Package: python3-pyrsistent
Architecture: any
Multi-Arch: same
Depends:
 ${misc:Depends},
 ${python3:Depends},
 ${shlibs:Depends}
Description: 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.