-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Description
Value specified as empty string is returned as None by the parser. However the Perl Config::General module keeps the empty string. for example for the below code snippet:
<mytag>
name entry
key_field STRING
prod ''
uat --uat
DEFAULT --uat
</mytag>
Python parser produces following output:
{
"mytag":{
"DEFAULT":"--uat",
"prod":None,
"key_field":"STRING",
"uat":"--uat",
"name":"entry"
}
}
Perl parser produces following output:
{
"mytag":{
"DEFAULT": "--uat",
"prod": "''",
"key_field": "STRING",
"name": "entry",
"uat": "--uat"
}
}
Metadata
Metadata
Assignees
Labels
No labels