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: python-darts.lib.utils.lru
Section: python
Priority: optional
Maintainer: Debian Security Tools Packaging Team <pkg-security-team@lists.alioth.debian.org>
Uploaders: Gianfranco Costamagna <locutusofborg@debian.org>
Build-Depends: debhelper (>= 9),
dh-python,
python-all,
python-setuptools,
python-sphinx,
python3-all,
python3-setuptools
Standards-Version: 3.9.8
Homepage: https://pypi.python.org/pypi/darts.util.lru
Vcs-Git: https://anonscm.debian.org/git/pkg-security/python-darts.lib.utils.lru.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-security/python-darts.lib.utils.lru.git
Package: python-darts.lib.utils.lru
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Conflicts: python-darts-lib-utils-lru
Suggests: python-darts.lib.utils.lru-doc
Description: Simple dictionary with LRU behaviour in Python2
An LRUDict is basically a simple dictionary, which has a defined maximum
capacity, that may be supplied at construction time, or modified at run-time
via the capacity property.
The class SynchronizedLRUDict, which exposes the same interface as plain
LRUDict, but fully thread-safe.
.
This is the Python 2 version of the package.
Package: python3-darts.lib.utils.lru
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Suggests: python-darts.lib.utils.lru-doc
Description: Simple dictionary with LRU behaviour in Python3
An LRUDict is basically a simple dictionary, which has a defined maximum
capacity, that may be supplied at construction time, or modified at run-time
via the capacity property.
The class SynchronizedLRUDict, which exposes the same interface as plain
LRUDict, but fully thread-safe.
.
This is the Python 3 version of the package.
Package: python-darts.lib.utils.lru-doc
Architecture: all
Section: doc
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
Description: Simple dictionary with LRU behaviour in Python (common documentation)
An LRUDict is basically a simple dictionary, which has a defined maximum
capacity, that may be supplied at construction time, or modified at run-time
via the capacity property.
The class SynchronizedLRUDict, which exposes the same interface as plain
LRUDict, but fully thread-safe.
.
This is the common documentation package.
|