diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 08:29:44 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 08:29:44 (GMT) |
commit | 7096760b2511df9b0e2ec846df9eb72c59e785fc (patch) | |
tree | 24a93465b1325a58b51e00eaf3924c5ec4bffd33 /Lib/rexec.py | |
parent | 7c3072437a8f2e4cd487e38d46ea99d0026bd4c2 (diff) | |
download | cpython-7096760b2511df9b0e2ec846df9eb72c59e785fc.zip cpython-7096760b2511df9b0e2ec846df9eb72c59e785fc.tar.gz cpython-7096760b2511df9b0e2ec846df9eb72c59e785fc.tar.bz2 |
Get rid of xreadlines() (methods).
Diffstat (limited to 'Lib/rexec.py')
-rw-r--r-- | Lib/rexec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/rexec.py b/Lib/rexec.py index 89ff509..ed01d24 100644 --- a/Lib/rexec.py +++ b/Lib/rexec.py @@ -29,7 +29,7 @@ __all__ = ["RExec"] class FileBase: ok_file_methods = ('fileno', 'flush', 'isatty', 'read', 'readline', - 'readlines', 'seek', 'tell', 'write', 'writelines', 'xreadlines', + 'readlines', 'seek', 'tell', 'write', 'writelines', '__iter__') |