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
"PyMOTW"
at The Free Dictionary
Latest blogosphere posts tagged “PyMOTW”
-
PyMOTW: sys, Part 4: Exception Handling
Doug Hellmann —
Authority: 106
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 ...6 days ago -
PyMOTW: sys, Part 3: Memory Management and Limits
Doug Hellmann —
Authority: 106
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 ...1 week ago -
PyMOTW: sys Part 2: Runtime Environment
Doug Hellmann —
Authority: 106
Runtime Environment sys provides low-level APIs for interacting with the system outside of your application, by accepting command line arguments, accessing user input, and passing messages and status values to the user. Arguments to Your Program The arguments captured by the interpreter are processed there ...2 weeks ago -
PyMOTW: sys, Part 1: Interpreter Settings
Doug Hellmann —
Authority: 106
Interpreter Settings sys contains attributes and functions for accessing compile-time or runtime configuration settings for the interpreter. Build-time Version Information The version used to build the C interpreter is available in a few forms. sys.version is a human-readable string that usually ...3 weeks ago