Fixed typo __init___ -> __init__

This commit is contained in:
Ask Solem 2011-01-26 13:10:26 +01:00
parent 936ea9f5f1
commit a92d125f09
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ POLL_ERR = 0x008 | 0x010 | 0x2000
class _epoll(object):
def __init___(self):
def __init__(self):
self._epoll = select.epoll()
def register(self, fd, events):