wurlitzer 3.0.2-3 source package in Ubuntu

Changelog

wurlitzer (3.0.2-3) unstable; urgency=medium

  * Fix autopkgtest script

 -- Julian Gilbey <email address hidden>  Tue, 14 Dec 2021 18:42:38 +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

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
wurlitzer_3.0.2-3.dsc 2.2 KiB 6d5f3a18b87699fe17d6eb9bf980a22f0b22088383650f740e4892c8f7213608
wurlitzer_3.0.2.orig.tar.gz 9.6 KiB 36051ac530ddb461a86b6227c4b09d95f30a1d1043de2b4a592e97ae8a84fcdf
wurlitzer_3.0.2-3.debian.tar.xz 2.8 KiB fc98e06e1cace694294564a9acba071756732ffa1c0c2c12564afa78f0d18eb0

Available diffs

No changes file available.

Binary packages built by this source

python3-wurlitzer: Capture C-level output in context managers

 A common task in Python (especially while testing or
 debugging) is to redirect sys.stdout to a stream or a file while
 executing some piece of code. However, simply "redirecting stdout" is
 sometimes not as easy as one would expect. In particular, things
 become interesting when you want C code running within your Python
 process (including, but not limited to, Python modules implemented as
 C extensions) to also have its stdout redirected according to your
 wish. This turns out to be tricky and leads us into the interesting
 world of file descriptors, buffers and system calls.
 .
 This package supports redirecting this output in a straightforward way
 using a context manager.