Index: Lib/threading.py =================================================================== --- Lib/threading.py (revisiĆ³n: 74632) +++ Lib/threading.py (copia de trabajo) @@ -697,12 +697,7 @@ def setName(self, name): self.name = name -# The timer class was contributed by Itamar Shtull-Trauring - -def Timer(*args, **kwargs): - return _Timer(*args, **kwargs) - -class _Timer(Thread): +class Timer(Thread): """Call a function after a specified number of seconds: t = Timer(30.0, f, args=[], kwargs={})