python-zc.customdoctests 1.0.1-3 source package in Ubuntu

Changelog

python-zc.customdoctests (1.0.1-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Bump debhelper from old 10 to 12.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

  [ Ondřej Nový ]
  * d/control: Update Maintainer field with new Debian Python Team
    contact address.
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Debian Janitor ]
  * Bump debhelper from old 12 to 13.

 -- Sandro Tosi <email address hidden>  Sat, 04 Jun 2022 16:06:51 -0400

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-zc.customdoctests_1.0.1-3.dsc 2.1 KiB 0e511c7127d3e2db1046b67ba146407b9d7bd486b6868d1ab950dc5d611a6db8
python-zc.customdoctests_1.0.1.orig.tar.gz 7.1 KiB 2216de3876503ac08242b1166705b35af0df2db96de676fa17d64a003f279284
python-zc.customdoctests_1.0.1-3.debian.tar.xz 2.8 KiB d1a9ed5129ef57134ef4b4f3ba42da39fc6e3a89bb137b1491ac4c104659519e

Available diffs

No changes file available.

Binary packages built by this source

python3-zc.customdoctests: 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 it facilitates doctests that mix multiple languages,
 such as Python, JavaScript, and sh.