~carlos-abalde/duplicity/google-docs

« back to all changes in this revision

Viewing changes to duplicity/GnuPGInterface.py

  • Committer: Kenneth Loafman
  • Date: 2011-06-24 15:42:29 UTC
  • Revision ID: kenneth@loafman.com-20110624154229-casv7yexz5w6njdk
Restore previous version with threaded_waitpid().

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
import sys
225
225
import fcntl
226
226
 
 
227
from duplicity import log
 
228
 
 
229
try:
 
230
    import threading
 
231
except ImportError:
 
232
    import dummy_threading #@UnusedImport
 
233
    log.Warn("Threading not available -- zombie processes may appear")
 
234
 
227
235
__author__   = "Frank J. Tobin, ftobin@neverending.org"
228
236
__version__  = "0.3.2"
229
237
__revision__ = "$Id: GnuPGInterface.py,v 1.6 2009/06/06 17:35:19 loafman Exp $"