~ubuntu-branches/ubuntu/trusty/pexpect/trusty-proposed

« back to all changes in this revision

Viewing changes to doc/api/fdpexpect.rst

  • Committer: Package Import Robot
  • Author(s): Andrew Starr-Bochicchio, Thomas Kluyver, Jakub Wilk, Jackson Doak, Andrew Starr-Bochicchio
  • Date: 2013-12-06 20:20:26 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20131206202026-9k9oixbv7e8ke30q
Tags: 3.0-1
* Team upload.

[ Thomas Kluyver ]
* New upstream release. Closes: #729518
* Add packaging for Python 3.
* Use pybuild for packaging.

[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Jackson Doak ]
* Create debian/python3-pexpect.docs

[ Andrew Starr-Bochicchio ]
* Remove empty debian/patches dir.
* Move documentation and examples into a new python-pexpect-doc
  package. They are shared between the Python 2 and Python 3 packages,
  so there is no need to install them with both.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
fdpexpect - use pexpect with a file descriptor
 
2
==============================================
 
3
 
 
4
.. automodule:: pexpect.fdpexpect
 
5
 
 
6
fdspawn class
 
7
-------------
 
8
 
 
9
.. autoclass:: fdspawn
 
10
   :show-inheritance:
 
11
 
 
12
   .. automethod:: __init__
 
13
   .. automethod:: isalive
 
14
   .. automethod:: close
 
15
 
 
16
   .. note::
 
17
      :class:`fdspawn` inherits all of the methods of :class:`~pexpect.spawn`, 
 
18
      but not all of them can be used, especially if the file descriptor is not
 
19
      a terminal. Some methods may do nothing (e.g. :meth:`~fdspawn.kill`), while
 
20
      others will raise an exception (e.g. :meth:`~fdspawn.terminate`).
 
21
      This behaviour might be made more consistent in the future, so try to
 
22
      avoid relying on it.
 
 
b'\\ No newline at end of file'