summaryrefslogtreecommitdiff
path: root/Lib/rexec.py
Commit message (Expand)AuthorAgeFilesLines
* No need to assign the results of expressions used only for side effects.Georg Brandl2010-02-061-1/+1
* Deprecate Bastion and rexec for 3.0.Brett Cannon2008-05-101-0/+3
* Patch #1698951: clarify deprecation message in rexec and BastionGeorg Brandl2007-04-121-1/+1
* Remove regsub, reconvert, regex, regex_syntax and everything under lib-old.Neal Norwitz2006-03-161-1/+1
* Remove rotor, xreadlines modulesAndrew M. Kuchling2004-08-311-2/+2
* Remove reference to pcre moduleAndrew M. Kuchling2004-06-021-1/+1
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* Get rid of many apply() calls.Guido van Rossum2003-02-271-6/+3
* Sabotage rexec.py. It is not safe since the new-style classes.Guido van Rossum2003-01-061-0/+3
* Applying patchGustavo Niemeyer2002-12-161-3/+5
* Allow restricted code to get byteorder, getdefaultencoding(),Fred Drake2002-10-111-2/+3
* Trying alphabet againJeremy Hylton2002-10-111-2/+2
* Sort names alphabetically.Jeremy Hylton2002-10-111-2/+2
* Add hexversion to list of safe sys names (SF bug 621447).Jeremy Hylton2002-10-111-1/+1
* Address SF bug #577530: del __builtins__ breaks out of rexecGuido van Rossum2002-09-151-8/+12
* Use code.interact(), which is even simpler, *and* imports readlineGuido van Rossum2002-06-141-3/+3
* Don't poorly emulate the interactive interpreter, useGuido van Rossum2002-06-141-19/+9
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-2/+2
* SF bug 533625 (Armin Rigo). rexec: potential security holeGuido van Rossum2002-05-311-1/+11
* Move statement out of comment blockRaymond Hettinger2002-05-301-1/+1
* Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were ...Raymond Hettinger2002-05-291-1/+160
* Ignore execfile() return value; reported by Neal Norwitz.Fred Drake2001-10-131-1/+1
* Now that file objects are subclassable, you can get at the file constructorTim Peters2001-09-131-2/+2
* Remove redundant import (PyChecker).Guido van Rossum2001-08-131-2/+4
* Remove make_re() function; this is no longer needed since _sre and pcreFred Drake2001-08-071-10/+0
* Add sha and _sre to the list of allowed built-in modules.Fred Drake2001-06-221-1/+1
* Fix SF bug #433904 (Alex Martelli) - all s_* methods return None only.Guido van Rossum2001-06-181-6/+7
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+1
* Whitespace normalization.Tim Peters2001-01-151-11/+11
* Add support for "import re" -- it uses pre, but user code does not needFred Drake2000-10-051-0/+10
* Get rid of the classes RModuleLoader and RModuleImporter -- these wereGuido van Rossum1998-09-211-16/+3
* (1) Added a sys.exc_info() emulation. (It returns None for the traceback.)Guido van Rossum1998-07-091-15/+57
* For completeness, add a dummy load_package() method to RHooks. ItGuido van Rossum1998-06-291-0/+1
* Add the __doc__ string from the original module on copy_none().Guido van Rossum1998-06-091-1/+3
* A few lines were indented using tabs instead of spaces -- fix them.Guido van Rossum1998-03-261-178/+178
* Add pcre to the list of safe modules.Guido van Rossum1997-10-221-1/+1
* Alas, I have to restore 'marshal', since it is needed by the newGuido van Rossum1997-04-251-2/+1
* Removed 'marshal' from the list of "ok" built-in functions -- theGuido van Rossum1997-03-211-1/+1
* Make sure ok_builtin_modules, ok_dynamic_modules andGuido van Rossum1996-12-121-4/+4
* Don't mix stdout/stderr.Guido van Rossum1996-10-021-2/+2
* Don't die if an ok file method (e.g. fileno) doesn't exist.Guido van Rossum1996-09-301-1/+1
* 1. Correct typo in FileWrapper.close() (fix by AMK).Guido van Rossum1996-09-251-6/+10
* delattr() can raise AttributeError, not KeyError.Guido van Rossum1996-08-201-2/+2
* Fixed restore_files(); added reset_files(); made these more flexible.Guido van Rossum1996-06-281-8/+31
* fix typo in load_dynamicGuido van Rossum1996-05-281-1/+1
* Fix some obsolete names comments.Guido van Rossum1996-05-281-12/+53
* make sure the path ends in a slash in reload()Guido van Rossum1995-08-111-1/+1
* fix reload use of __filename__Guido van Rossum1995-08-101-1/+2
* add module binascii; add r_unload/s_unload; don't change 'rb' to 'r' in openGuido van Rossum1995-08-091-2/+9
* added sys.std files, read-only open, reloadGuido van Rossum1995-08-071-3/+104