From: Raymond Hettinger Date: Thu, 30 May 2002 00:06:01 +0000 (+0000) Subject: Move statement out of comment block X-Git-Tag: v2.3c1~5561 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1dbe6c07280250bb36edb135188912ad0df1a0a8;p=thirdparty%2FPython%2Fcpython.git Move statement out of comment block --- diff --git a/Lib/rexec.py b/Lib/rexec.py index 6dc1585ab4d3..7a239bc1956f 100644 --- a/Lib/rexec.py +++ b/Lib/rexec.py @@ -429,9 +429,9 @@ class RExec(ihooks._Verbose): expression, or a compiled code object, which will be evaluated in the restricted environment's __main__ module. The value of the expression or code object will be returned. - return self.s_apply(self.r_eval, args) """ + return self.s_apply(self.r_eval, args) def s_execfile(self, *args): """Execute the Python code in the file in the restricted