Removed spaces before colons and semicolons.

This commit is contained in:
Serhiy Storchaka 2013-12-24 11:05:24 +02:00
commit 89e84e7523
12 changed files with 30 additions and 30 deletions

View File

@ -1826,9 +1826,9 @@ signal
calling thread (Contributed by Jean-Paul Calderone in :issue:`8407`);
* :func:`~signal.pthread_kill`: send a signal to a thread;
* :func:`~signal.sigpending`: examine pending functions;
* :func:`~signal.sigwait`: wait a signal.
* :func:`~signal.sigwait`: wait a signal;
* :func:`~signal.sigwaitinfo`: wait for a signal, returning detailed
information about it.
information about it;
* :func:`~signal.sigtimedwait`: like :func:`~signal.sigwaitinfo` but with a
timeout.