wurlitzer 3.0.2-4 source package in Ubuntu
Changelog
wurlitzer (3.0.2-4) unstable; urgency=medium * Handle larger system page size on ppc64el in test script (closes: #1002588) -- Julian Gilbey <email address hidden> Tue, 28 Dec 2021 20:00:25 +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 | |
---|---|---|---|---|
Kinetic | release | universe | misc | |
Jammy | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
wurlitzer_3.0.2-4.dsc | 2.2 KiB | 0607b6a62b6aae3901975e661f1724c7f8fdea437e3a37c8f11eb903b4234744 |
wurlitzer_3.0.2.orig.tar.gz | 9.6 KiB | 36051ac530ddb461a86b6227c4b09d95f30a1d1043de2b4a592e97ae8a84fcdf |
wurlitzer_3.0.2-4.debian.tar.xz | 3.1 KiB | 484b1a1acb4c707e5e5fd4b8e9441287933e838dca5ab8d5ec21b53db08266b0 |
Available diffs
- diff from 3.0.2-2 to 3.0.2-4 (862 bytes)
- diff from 3.0.2-3 to 3.0.2-4 (581 bytes)
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.