python-tracing 0.5-1 source package in Ubuntu

Changelog

python-tracing (0.5-1) unstable; urgency=low

  * New upstream version. Adds documentation formatted using sphinx.
 -- Ubuntu Archive Auto-Sync <email address hidden>   Sun,  29 May 2011 08:08:51 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Oneiric
Original maintainer:
to be removed
Architectures:
all
Section:
python
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Oneiric: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
python-tracing_0.5.orig.tar.gz 7.5 KiB 0d28872541ff418736f068586c2b1a576a722b324797db5b77ea4318a564b208
python-tracing_0.5-1.debian.tar.gz 1.9 KiB 8b34308afa8b4216255d39e721ccdc5efc0439ad80e5dd664340782840a73940
python-tracing_0.5-1.dsc 1.7 KiB 117af9550d8e1b9ee4a0b288a6a26ab6d95d049cf76079838b3b1a4974cc36d8

Available diffs

View changes file

Binary packages built by this source

python-tracing: Python debug tracing helper

 Provides the Python library 'tracing' to help with logging debug messages.
 This library provides a function for logging debug messages.
 It is sometimes practical during software development to add a lot of
 debugging log messages to a program, but having them enabled all the time
 results in very large log files. Also, logging that much takes quite a
 bit of time.
 .
 This module provides a way to turn such debugging (or tracing) messages
 on and off, based on the filename they occur in. It is much faster than
 using `logging.Filter` to accomplish the same thing, which matters
 when code is run in production mode. The actual logging still happens
 using the `logging` library.