~ubuntu-branches/ubuntu/saucy/d-rats/saucy-proposed

« back to all changes in this revision

Viewing changes to d_rats/spell.py

  • Committer: Bazaar Package Importer
  • Author(s): Steve Conklin
  • Date: 2011-07-09 20:22:16 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110709202216-63n8o6pilawsrxbc
Tags: 0.3.3-1
New upstream version 0.3.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
        p = subprocess.Popen([self.__aspell, "pipe"],
14
14
                             stdin=subprocess.PIPE,
15
15
                             stdout=subprocess.PIPE,
 
16
                             #close_fds=True,
16
17
                             **kwargs)
17
18
        return p
18
19