xdoctest 1.1.1-1 source package in Ubuntu

Changelog

xdoctest (1.1.1-1) unstable; urgency=medium

  [ Bo YU ]
  * New upstream version 1.1.1
  * Set std-ver to 4.6.2

  [ Jeroen Ploemen ]
  * Ignore egg-info in d/source/options to prevent build failure when
    building twice in a row.
  * Rules: switch override of dh_install to execute_after.

 -- Bo YU <email address hidden>  Thu, 16 Feb 2023 11:18:46 +0000

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
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
xdoctest_1.1.1-1.dsc 3.0 KiB 4120b05a567063f41fb9a29b076ed3798c7231a67e6dd8cda5738577a9d66b8e
xdoctest_1.1.1.orig.tar.xz 163.8 KiB 8524ce02db28970fbfc262b36622f65309820df6853047f5d1a2ad048f07039b
xdoctest_1.1.1-1.debian.tar.xz 2.6 KiB 15666053e41e18d08e46b8245e40351b7fea4d74517492cba26b62d8e4dd6742

Available diffs

No changes file available.

Binary packages built by this source

python3-xdoctest: Rewrite of Python's builtin doctest module with AST instead of REGEX

 What is a doctest? It is example code you write in a docstring! What
 is a docstring? Its a string you use as a comment! They get attached
 to Python functions and classes as metadata. They are often used to
 auto-generate documentation. Why is it cool? Because you can write
 tests while you code!
 .
 The ``xdoctest`` package is a re-write of Python's builtin ``doctest``
 module. It replaces the old regex-based parser with a new
 abstract-syntax-tree based parser (using Python's ``ast`` module). The
 goal is to make doctests easier to write, simpler to configure, and
 encourage the pattern of test driven development.
 .
 This package contains the library for Python 3.

xdoctest: Rewrite of Python's builtin doctest module with AST instead of REGEX

 What is a doctest? It is example code you write in a docstring! What
 is a docstring? Its a string you use as a comment! They get attached
 to Python functions and classes as metadata. They are often used to
 auto-generate documentation. Why is it cool? Because you can write
 tests while you code!
 .
 The ``xdoctest`` package is a re-write of Python's builtin ``doctest``
 module. It replaces the old regex-based parser with a new
 abstract-syntax-tree based parser (using Python's ``ast`` module). The
 goal is to make doctests easier to write, simpler to configure, and
 encourage the pattern of test driven development.
 .
 This package contains the xdoctest command line tool