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 /Doc/tools | |
parent | 7c3072437a8f2e4cd487e38d46ea99d0026bd4c2 (diff) | |
download | cpython-7096760b2511df9b0e2ec846df9eb72c59e785fc.zip cpython-7096760b2511df9b0e2ec846df9eb72c59e785fc.tar.gz cpython-7096760b2511df9b0e2ec846df9eb72c59e785fc.tar.bz2 |
Get rid of xreadlines() (methods).
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/undoc_symbols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/undoc_symbols.py b/Doc/tools/undoc_symbols.py index 3d776fa..782ab6c 100644 --- a/Doc/tools/undoc_symbols.py +++ b/Doc/tools/undoc_symbols.py @@ -50,7 +50,7 @@ import os, glob, re, sys def findnames(file, prefixes=()): names = {} - for line in file.xreadlines(): + for line in file: if line[0] == '!': continue fields = line.split() |