Diez B. Roggisch wrote:
> Ilias Lazaridis schrieb:
>> remark: not sure if the term "dictionary" is correct here.
>>
>> I have the following situation:
>>
>> within a setup.cfg, settings are passed this way:
>>
>> settings=project_page=theProjectPage.com
>> myVar=myValue
>>
>> those are acce
Ilias Lazaridis schrieb:
> remark: not sure if the term "dictionary" is correct here.
>
> I have the following situation:
>
> within a setup.cfg, settings are passed this way:
>
> settings=project_page=theProjectPage.com
> myVar=myValue
>
> those are accessible later like this:
>
> set
remark: not sure if the term "dictionary" is correct here.
I have the following situation:
within a setup.cfg, settings are passed this way:
settings=project_page=theProjectPage.com
myVar=myValue
those are accessible later like this:
settings['project_page'] / settings['myValue']
-