summaryrefslogtreecommitdiff
path: root/Modules/signalmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-12 11:29:01 +0000
committerGuido van Rossum <guido@python.org>1995-01-12 11:29:01 +0000
commita3c04b003f802ca676d6fb777751ae3e0ecc04a4 (patch)
tree5f65eab25f272307884b077c4ba97ff7125e8e2c /Modules/signalmodule.c
parentb9418686baecd5cb02e4ea71490ba4f23e4c5bb8 (diff)
downloadcpython-git-a3c04b003f802ca676d6fb777751ae3e0ecc04a4.tar.gz
cosmetics
Diffstat (limited to 'Modules/signalmodule.c')
-rw-r--r--Modules/signalmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c
index 97d895bc36..1bf48923f8 100644
--- a/Modules/signalmodule.c
+++ b/Modules/signalmodule.c
@@ -57,7 +57,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
generated by the keyboard (e.g. SIGINT) are delivered to all
threads (e.g. SGI), while in others (e.g. Solaris) such signals are
delivered to one random thread (an intermediate possibility would
- be to deliver it to the main thread -- POSIX???). For now, we have
+ be to deliver it to the main thread -- POSIX?). For now, we have
a working implementation that works in all three cases -- the
handler ignores signals if getpid() isn't the same as in the main
thread. XXX This is a hack.