Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | python: Remove 'del g' from the docs, replace with 'g.close ()'. | Richard W.M. Jones | 2012-04-17 | 1 | -1/+1 |
| | | | | | | | | | | 'del g' is a trap for the unwary. If the handle has any other references, it does nothing (in fact, it can be actively dangerous if the user was expecting the appliance to go away). In non-CPython it can be delayed arbitrarily long. Using 'g.close()' on the other hand is always safe. (cherry picked from commit 255882a3f615c7727d2cc2f18f692513dc0a75e9) | ||||
* | Update FSF address. | Matthew Booth | 2011-11-08 | 1 | -1/+1 |
| | |||||
* | python: Implement new event API. | Richard W.M. Jones | 2011-04-22 | 1 | -0/+58 |
This implements set_event_callback and delete_event_callback so that Python programs can use the new event mechanism. |