wurlitzer 3.0.3-1 source package in Ubuntu
Changelog
wurlitzer (3.0.3-1) unstable; urgency=medium [ Debian Janitor ] * Update standards version to 4.6.0, no changes needed. * Update standards version to 4.6.1, no changes needed. [ Julian Gilbey ] * New upstream version * Update standards version to 4.6.2, no changes needed * Change watch file to point to github version -- Julian Gilbey <email address hidden> Wed, 18 Jan 2023 06:55:22 +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 | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | universe | misc | |
Lunar | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
wurlitzer_3.0.3-1.dsc | 2.2 KiB | b00cf1f2a3814bf2ac164201780a052834203ae30ce3aa84b02d7c8a8ed7dca6 |
wurlitzer_3.0.3.orig.tar.gz | 13.5 KiB | 135071aa832e09ba6ac839a367d696ac8521cfb669ebe221baa85b1efb5cdd7e |
wurlitzer_3.0.3-1.debian.tar.xz | 2.9 KiB | 0300736b2538f22e6122d85494cd190eca3faed50e0beebdf6cfaffba755ddcf |
Available diffs
- diff from 3.0.2-4 to 3.0.3-1 (7.6 KiB)
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.