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
|
Source: sortedcontainers
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Andrej Shadura <andrewsh@debian.org>,
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
python3-all,
python3-pytest,
python3-setuptools,
python3-sphinx (>= 1.4) <!nodoc>,
texlive-latex-base <!nodoc>,
Standards-Version: 4.6.1
Homepage: http://www.grantjenks.com/docs/sortedcontainers/
Vcs-Git: https://salsa.debian.org/python-team/packages/sortedcontainers.git
Vcs-Browser: https://salsa.debian.org/python-team/packages/sortedcontainers
Package: python-sortedcontainers-doc
Architecture: all
Multi-Arch: foreign
Section: doc
Build-Profiles: <!nodoc>
Depends:
${misc:Depends},
${sphinxdoc:Depends},
Built-Using:
${sphinxdoc:Built-Using},
Description: sorted container types: SortedList, SortedDict, and SortedSet (documentation)
Python’s standard library is great until you need a sorted container type. Many
will attest that you can get really far without one, but the moment you really
need a sorted list, dict, or set, you’re faced with a dozen different
implementations, most using C-extensions without great documentation and
benchmarking.
.
This package contains the documentation for sortedcontainers Python module.
Package: python3-sortedcontainers
Architecture: all
Multi-Arch: foreign
Depends:
${misc:Depends},
${python3:Depends},
Suggests:
python-sortedcontainers-doc,
Description: sorted container types: SortedList, SortedDict, and SortedSet (Python 3)
Python’s standard library is great until you need a sorted container type. Many
will attest that you can get really far without one, but the moment you really
need a sorted list, dict, or set, you’re faced with a dozen different
implementations, most using C-extensions without great documentation and
benchmarking.
.
This package contains the Python 3 version of sortedcontainers.
|