This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author berker.peksag
Recipients RusiMody, berker.peksag, r.david.murray
Date 2015-03-27.17:50:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427478614.91.0.102121858133.issue23792@psf.upfronthosting.co.za>
In-reply-to
Content
This looks like a duplicate of issue 21398. I can reproduce it with Python 3.4.1 (compiled myself) on Ubuntu 12.04.

>>> help(str)

Ctrl-C

:Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.4/_sitebuiltins.py", line 103, in __call__
    return pydoc.help(*args, **kwds)
  File "/usr/local/lib/python3.4/pydoc.py", line 1817, in __call__
    self.help(request)
  File "/usr/local/lib/python3.4/pydoc.py", line 1867, in help
    else: doc(request, 'Help on %s:', output=self._output)
  File "/usr/local/lib/python3.4/pydoc.py", line 1603, in doc
    pager(render_doc(thing, title, forceload))
  File "/usr/local/lib/python3.4/pydoc.py", line 1411, in pager
    pager(text)
  File "/usr/local/lib/python3.4/pydoc.py", line 1431, in <lambda>
    return lambda text: pipepager(text, 'less')
  File "/usr/local/lib/python3.4/pydoc.py", line 1453, in pipepager
    pipe.close()
  File "/usr/local/lib/python3.4/os.py", line 957, in close
    returncode = self._proc.wait()
  File "/usr/local/lib/python3.4/subprocess.py", line 1565, in wait
    (pid, sts) = self._try_wait(0)
  File "/usr/local/lib/python3.4/subprocess.py", line 1513, in _try_wait
    (pid, sts) = _eintr_retry_call(os.waitpid, self.pid, wait_flags)
  File "/usr/local/lib/python3.4/subprocess.py", line 491, in _eintr_retry_call
    return func(*args)
KeyboardInterrupt
History
Date User Action Args
2015-03-27 17:50:14berker.peksagsetrecipients: + berker.peksag, r.david.murray, RusiMody
2015-03-27 17:50:14berker.peksagsetmessageid: <1427478614.91.0.102121858133.issue23792@psf.upfronthosting.co.za>
2015-03-27 17:50:14berker.peksaglinkissue23792 messages
2015-03-27 17:50:14berker.peksagcreate