PyMOTW

Tag details

Welcome to the 'PyMOTW' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'PyMOTW'.

Look up Offsite Link "PyMOTW" at The Free Dictionary

Latest blogosphere posts tagged “PyMOTW”

  • PyMOTW: sys, Part 6: Low-level Thread Support


    Doug HellmannAuthority Authority: 107
    Low-level Thread Support sys includes low-level functions for controlling and debugging thread behavior. Check Interval Python uses a form of cooperative multitasking in its thread implementation. At a fixed interval, bytecode execution is paused and the interpreter checks if any signal handlers need to be ...
    6 days ago
  • PyMOTW: sys, Part 5: Tracing Your Program As It Runs


    Doug HellmannAuthority Authority: 107
    Tracing Your Program As It Runs There are two ways to inject code to watch your program run: tracing and profiling. They are similar, but intended for different purposes and so have different constraints. The easiest, but least efficient, way to monitor your program is through a trace hook , which can be used for ...
    1 week ago
  • PyMOTW: sys, Part 4: Exception Handling


    Doug HellmannAuthority Authority: 107
    Exception Handling sys includes features for trapping and working with exceptions. Unhandled Exceptions Many applications are structured with a main loop that wraps execution in a global exception handler to trap errors not handled at a lower level. Another way to achieve the same thing is by setting the ...
    2 weeks ago
  • PyMOTW: sys, Part 3: Memory Management and Limits


    Doug HellmannAuthority Authority: 107
    Memory Management and Limits sys includes several functions for understanding and controlling memory usage. Reference Counts Python helps you manage memory with garbage collection. An object is automatically marked to be collected when its reference count drops to zero. To examine the reference count of an ...
    3 weeks ago

Comments about PyMOTW

Personal attacks are NOT allowed
Please read our comment policy