MCPcopy Index your code
hub / github.com/theskumar/python-dotenv / parse_unquoted_value

Function parse_unquoted_value

src/dotenv/parser.py:123–125  ·  view source on GitHub ↗
(reader: Reader)

Source from the content-addressed store, hash-verified

121
122
123def parse_unquoted_value(reader: Reader) -> str:
124 (part,) = reader.read_regex(_unquoted_value)
125 return re.sub(r"\s+#.*", "", part).rstrip()
126
127
128def parse_value(reader: Reader) -> str:

Callers 1

parse_valueFunction · 0.85

Calls 1

read_regexMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…