Home | History | Annotate | Download | only in distutils

Lines Matching refs:attrs

128     def __init__ (self, attrs=None):
130 attributes of a Distribution, and then use 'attrs' (a dictionary
133 'attrs' will be assigned to some null value: 0, None, an empty list
229 # Now we'll use the attrs dictionary (ultimately, keyword args from
233 if attrs:
238 options = attrs.get('options')
240 del attrs['options']
246 if 'licence' in attrs:
247 attrs['license'] = attrs['licence']
248 del attrs['licence']
257 for (key, val) in attrs.items():
274 # If attrs['script_args'] wasn't passed, assume false.