1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-15 01:24:29 +02:00

doc update

This commit is contained in:
Kelly Brazil
2023-01-03 13:04:13 -08:00
parent 7659ae94bd
commit 6c85abd57b
4 changed files with 10 additions and 10 deletions

View File

@ -36,7 +36,7 @@ Usage (module):
Schema:
ini document converted to a dictionary - see the python configparser
INI document converted to a dictionary - see the python configparser
standard library documentation for more details.
{
@ -96,7 +96,7 @@ Parameters:
Returns:
Dictionary representing the ini file
Dictionary representing the INI file.
### Parser Information
Compatibility: linux, darwin, cygwin, win32, aix, freebsd

View File

@ -26,8 +26,8 @@ Usage (module):
Schema:
key/value document converted to a dictionary - see the configparser standard
library documentation for more details.
Key/Value document converted to a dictionary - see the python configparser
standard library documentation for more details.
{
"key1": string,

View File

@ -31,7 +31,7 @@ Usage (module):
Schema:
ini document converted to a dictionary - see the python configparser
INI document converted to a dictionary - see the python configparser
standard library documentation for more details.
{
@ -101,7 +101,7 @@ def _process(proc_data):
Returns:
Dictionary representing an ini or simple key/value pair document.
Dictionary representing the INI file.
"""
# remove quotation marks from beginning and end of values
for heading in proc_data:
@ -130,7 +130,7 @@ def parse(data, raw=False, quiet=False):
Returns:
Dictionary representing the ini file
Dictionary representing the INI file.
"""
jc.utils.compatibility(__name__, info.compatible, quiet)
jc.utils.input_type_check(data)

View File

@ -21,8 +21,8 @@ Usage (module):
Schema:
key/value document converted to a dictionary - see the configparser standard
library documentation for more details.
Key/Value document converted to a dictionary - see the python configparser
standard library documentation for more details.
{
"key1": string,
@ -78,7 +78,7 @@ def _process(proc_data):
Returns:
Dictionary representing a key/value pair document.
Dictionary representing a Key/Value pair document.
"""
# remove quotation marks from beginning and end of values
for key in proc_data: