Removed spaces before colons and semicolons.

This commit is contained in:
Serhiy Storchaka 2013-12-24 11:04:36 +02:00
parent 55c6cc408c
commit f47036c130
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.