summaryrefslogtreecommitdiffstats
path: root/python/iniconfig/README
diff options
context:
space:
mode:
author Isaac Yu <isaacyu1@isaacyu1.com>2022-04-05 14:48:17 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2022-04-09 15:45:44 +0700
commitd61f7d887a5612a078af9a7e7f6b842308413162 (patch)
tree632662bed6438cefc52d420c3dc400f23db5f66c /python/iniconfig/README
parenta1c041020c51dffe83c5b7fefd4f838cddcd7b04 (diff)
downloadslackbuilds-d61f7d887a5612a078af9a7e7f6b842308413162.tar.gz
slackbuilds-d61f7d887a5612a078af9a7e7f6b842308413162.tar.xz
python/iniconfig: Added (INI file parsing).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/iniconfig/README')
-rw-r--r--python/iniconfig/README9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/iniconfig/README b/python/iniconfig/README
new file mode 100644
index 0000000000..c87311dd9e
--- /dev/null
+++ b/python/iniconfig/README
@@ -0,0 +1,9 @@
+iniconfig is a small and simple INI-file parser module having a unique
+set of features:
+
+* maintains order of sections and entries
+* supports multi-line values with or without line-continuations
+* supports "#" comments everywhere
+* raises errors with proper line-numbers
+* no bells and whistles like automatic substitutions
+* iniconfig raises an Error if two sections have the same name.