Skip to content

Commit

Permalink
interpreter: write subprocess in the config dump
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Mar 20, 2012
1 parent 9dd1568 commit b0bd2ec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ def dumpConfig(self):
print "Enabled features: %s" % features
if self.config.cpython_restricted:
print "CPython restricted mode enabled."
if self.config.use_subprocess:
print "Run untrusted code in a subprocess."
if 'help' not in self.config.features:
print "(use --features=help to enable the help function)"
print
Expand Down

0 comments on commit b0bd2ec

Please sign in to comment.