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
|
Source: python-zc.customdoctests
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Julien Muchembled <jm@jmuchemb.eu>
Section: python
Priority: optional
Build-Depends: debhelper (>= 10), dh-python,
python-setuptools, python-all, python-manuel, python-zope.testing,
python3-setuptools, python3-all, python3-manuel, python3-zope.testing,
Standards-Version: 3.9.8
Homepage: https://github.com/zopefoundation/zc.customdoctests
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-zc.customdoctests.git
Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-zc.customdoctests.git
X-Python3-Version: >= 3.3
Package: python-zc.customdoctests
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Recommends: python-manuel, python-spidermonkey
Provides: ${python:Provides}
Description: Use Python doctest with other languages
doctest (and recently manuel) provide hooks for using custom doctest
parsers. zc.customdoctests helps to leverage this to support other
languages, such as JavaScript (with python-spidermonkey):
.
js> function double (x) {
... return x*2;
... }
js> double(2)
4
.
And with python-manuel, it facilitates doctests that mix multiple languages,
such as Python, JavaScript, and sh.
Package: python3-zc.customdoctests
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Recommends: python3-manuel, python3-spidermonkey
Description: Use doctest with other languages (Python 3)
doctest (and recently manuel) provide hooks for using custom doctest
parsers. zc.customdoctests helps to leverage this to support other
languages, such as JavaScript (with python-spidermonkey):
.
js> function double (x) {
... return x*2;
... }
js> double(2)
4
.
And with python-manuel, it facilitates doctests that mix multiple languages,
such as Python, JavaScript, and sh.
|