summaryrefslogtreecommitdiffstats
path: root/Lib/ConfigParser.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-08-13 14:58:32 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-08-13 14:58:32 (GMT)
commit7c2cf738112501c66a120a0daeb3d6b9182016a4 (patch)
tree4c8931d697c805ba4919f0d2b1452bc28874d103 /Lib/ConfigParser.py
parent8ea9227b1b73500eba8aad5869f6aa25355fbbbb (diff)
downloadcpython-7c2cf738112501c66a120a0daeb3d6b9182016a4.zip
cpython-7c2cf738112501c66a120a0daeb3d6b9182016a4.tar.gz
cpython-7c2cf738112501c66a120a0daeb3d6b9182016a4.tar.bz2
Remove redefinition of has_option() method
Diffstat (limited to 'Lib/ConfigParser.py')
-rw-r--r--Lib/ConfigParser.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py
index 699803d..7be8ffd 100644
--- a/Lib/ConfigParser.py
+++ b/Lib/ConfigParser.py
@@ -42,9 +42,6 @@ ConfigParser -- responsible for for parsing a list of
options(section)
return list of configuration options for the named section
- has_option(section, option)
- return whether the given section has the given option
-
read(filenames)
read and parse the list of named configuration files, given by
name. A single filename is also allowed. Non-existing files
@@ -215,10 +212,6 @@ class ConfigParser:
del opts['__name__']
return opts.keys()
- def has_option(self, section, option):
- """Return whether the given section has the given option."""
- return option in self.options(section)
-
def read(self, filenames):
"""Read and parse a filename or a list of filenames.