xdoctest 1.1.3-2 source package in Ubuntu

Changelog

xdoctest (1.1.3-2) unstable; urgency=medium

  * Remove whitespace of d/changelog
  * Update d/copyright
  * Remove python3-typing-inspect on autopkgtest.
  * Fix autopkgtest issue. (Closes: #1063987)

 -- Bo YU <email address hidden>  Mon, 18 Mar 2024 22:44:50 +0800

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

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
xdoctest_1.1.3-2.dsc 3.0 KiB 40c1b85b8b75b235e1d8024e7442785dec56d3b5fbd5d695b4c5014db17f7c00
xdoctest_1.1.3.orig.tar.xz 175.3 KiB 06505b1bc4518733eba3a30dbdf1ba599f7c612e9817145201dff96d4c36f272
xdoctest_1.1.3-2.debian.tar.xz 4.1 KiB 5358b782ff57b5c23a5e0cc3001914dbd8ff62e970a8f81a950ab7c1d75bd1c9

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