2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2025-01-09 09:55:41 +01:00

docstring for #1851

This commit is contained in:
Thomas Nagy 2016-11-14 22:13:19 +01:00
parent 0454ee677e
commit af7716f014
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA

View File

@ -85,13 +85,13 @@ class ConfigSet(object):
def __setitem__(self, key, value):
"""
Dictionary interface: get value from key
Dictionary interface: set value from key
"""
self.table[key] = value
def __delitem__(self, key):
"""
Dictionary interface: get value from key
Dictionary interface: mark the value as missing
"""
self[key] = []