diff options
author | Cole Robinson <crobinso@redhat.com> | 2011-06-15 20:14:45 -0400 |
---|---|---|
committer | Cole Robinson <crobinso@redhat.com> | 2011-06-21 10:08:48 -0400 |
commit | 68ef6c759aa25ce0d78bb83734b27fac18f20e6c (patch) | |
tree | c6f6f54c9b73b2aa82fdc890704c14c99119ef27 /libvirt-override-virStream.py | |
parent | 12d8d49559c2c4616357dd1d99cd7bcd39646033 (diff) | |
download | libvirt-python-v6-68ef6c759aa25ce0d78bb83734b27fac18f20e6c.tar.gz libvirt-python-v6-68ef6c759aa25ce0d78bb83734b27fac18f20e6c.tar.xz libvirt-python-v6-68ef6c759aa25ce0d78bb83734b27fac18f20e6c.zip |
python: Mark event callback wrappers as private
These functions aren't intended to be called directly by users, so mark
them as private.
While we're at it, remove unneeded exception handling, and break some
long lines.
Diffstat (limited to 'libvirt-override-virStream.py')
-rw-r--r-- | libvirt-override-virStream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvirt-override-virStream.py b/libvirt-override-virStream.py index 82e1648..92e6fb1 100644 --- a/libvirt-override-virStream.py +++ b/libvirt-override-virStream.py @@ -9,7 +9,7 @@ libvirtmod.virStreamFree(self._o) self._o = None - def dispatchStreamEventCallback(self, events, cbData): + def _dispatchStreamEventCallback(self, events, cbData): """ Dispatches events to python user's stream event callbacks """ |