xdoctest 1.1.3-1 source package in Ubuntu

Changelog

xdoctest (1.1.3-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 1.1.3
  * use new dh-sequence-python3
  * remove python3-six 2/2

 -- Alexandre Detiste <email address hidden>  Wed, 07 Feb 2024 23:31:48 +0100

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
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
xdoctest_1.1.3-1.dsc 3.0 KiB f97c99f8efd63c7883e9dd32ec441b10e18c2bb9224b4c6918f1e1ababe51151
xdoctest_1.1.3.orig.tar.xz 175.3 KiB 06505b1bc4518733eba3a30dbdf1ba599f7c612e9817145201dff96d4c36f272
xdoctest_1.1.3-1.debian.tar.xz 4.0 KiB 37f063bb988ad4f82b30e6de5488f22a0806961e1471a2c3ee0ae644e95f84be

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