aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/go-ini/ini/ini.go
diff options
context:
space:
mode:
authorGravatar Miek Gieben <miek@miek.nl> 2018-06-30 17:07:33 +0100
committerGravatar Yong Tang <yong.tang.github@outlook.com> 2018-06-30 09:07:33 -0700
commit9d555ab8d2f712a50ec1b7f46de0a7405a28eb9a (patch)
treecd63fcaa57bcd2ca5376dc40c3cd7a04b3909dc0 /vendor/github.com/go-ini/ini/ini.go
parent6fe27d99be622f69ac0b1d402a67a571c6f6166e (diff)
downloadcoredns-9d555ab8d2f712a50ec1b7f46de0a7405a28eb9a.tar.gz
coredns-9d555ab8d2f712a50ec1b7f46de0a7405a28eb9a.tar.zst
coredns-9d555ab8d2f712a50ec1b7f46de0a7405a28eb9a.zip
Dep ensure -update (#1912)
* dep ensure -update Signed-off-by: Miek Gieben <miek@miek.nl> * Add new files Signed-off-by: Miek Gieben <miek@miek.nl>
Diffstat (limited to 'vendor/github.com/go-ini/ini/ini.go')
-rw-r--r--vendor/github.com/go-ini/ini/ini.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/vendor/github.com/go-ini/ini/ini.go b/vendor/github.com/go-ini/ini/ini.go
index d98353229..15ebc8f72 100644
--- a/vendor/github.com/go-ini/ini/ini.go
+++ b/vendor/github.com/go-ini/ini/ini.go
@@ -32,7 +32,7 @@ const (
// Maximum allowed depth when recursively substituing variable names.
_DEPTH_VALUES = 99
- _VERSION = "1.36.0"
+ _VERSION = "1.37.0"
)
// Version returns current package version literal.
@@ -145,6 +145,11 @@ type LoadOptions struct {
// Relevant quote: Values can also span multiple lines, as long as they are indented deeper
// than the first line of the value.
AllowPythonMultilineValues bool
+ // SpaceBeforeInlineComment indicates whether to allow comment symbols (\# and \;) inside value.
+ // Docs: https://docs.python.org/2/library/configparser.html
+ // Quote: Comments may appear on their own in an otherwise empty line, or may be entered in lines holding values or section names.
+ // In the latter case, they need to be preceded by a whitespace character to be recognized as a comment.
+ SpaceBeforeInlineComment bool
// UnescapeValueDoubleQuotes indicates whether to unescape double quotes inside value to regular format
// when value is surrounded by double quotes, e.g. key="a \"value\"" => key=a "value"
UnescapeValueDoubleQuotes bool