Skip to content

Commit

Permalink
rename subprocess module to subprocess_parent
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Mar 21, 2012
1 parent fcabbb4 commit b9a688f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sandbox/sandbox_class.py
Expand Up @@ -49,7 +49,7 @@ def call(self, func, *args, **kw):
"""
if self.config.use_subprocess:
if self.call_fork is None:
from .subprocess import call_fork
from .subprocess_parent import call_fork
self.call_fork = call_fork
return self.call_fork(self, func, args, kw)
else:
Expand Down Expand Up @@ -85,7 +85,7 @@ def execute(self, code, globals=None, locals=None):
"""
if self.config.use_subprocess:
if self.execute_subprocess is None:
from .subprocess import execute_subprocess
from .subprocess_parent import execute_subprocess
self.execute_subprocess = execute_subprocess
return self.execute_subprocess(self, code, globals, locals)
else:
Expand Down
File renamed without changes.

0 comments on commit b9a688f

Please sign in to comment.