*** bltinmodule.c.orig 2011-12-29 12:29:38.000000000 -0500 --- bltinmodule.c 2011-12-29 12:34:13.000000000 -0500 *************** *** 662,675 **** \n\ Compile the source string (a Python module, statement or expression)\n\ into a code object that can be executed by exec() or eval().\n\ The filename will be used for run-time error messages.\n\ The mode must be 'exec' to compile a module, 'single' to compile a\n\ single (interactive) statement, or 'eval' to compile an expression.\n\ ! The flags argument, if present, controls which future statements influence\n\ ! the compilation of the code.\n\ The dont_inherit argument, if non-zero, stops the compilation inheriting\n\ the effects of any future statements in effect in the code calling\n\ compile; if absent or zero these statements do influence the compilation,\n\ in addition to any features explicitly specified."); static PyObject * --- 662,676 ---- \n\ Compile the source string (a Python module, statement or expression)\n\ into a code object that can be executed by exec() or eval().\n\ The filename will be used for run-time error messages.\n\ The mode must be 'exec' to compile a module, 'single' to compile a\n\ single (interactive) statement, or 'eval' to compile an expression.\n\ ! The flags argument, if present, largely controls which future statements\n\ ! influence the compilation of the code. (Additional flags are documented\n\ ! in the AST module.)\n\ The dont_inherit argument, if non-zero, stops the compilation inheriting\n\ the effects of any future statements in effect in the code calling\n\ compile; if absent or zero these statements do influence the compilation,\n\ in addition to any features explicitly specified."); static PyObject *