MCPcopy Create free account
hub / github.com/theskumar/python-dotenv / get_marked

Method get_marked

src/dotenv/parser.py:74–78  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

72 self.mark.set(self.position)
73
74 def get_marked(self) -> Original:
75 return Original(
76 string=self.string[self.mark.chars:self.position.chars],
77 line=self.mark.line,
78 )
79
80 def peek(self, count: int) -> str:
81 return self.string[self.position.chars:self.position.chars + count]

Callers 1

parse_bindingFunction · 0.80

Calls 1

OriginalClass · 0.85

Tested by

no test coverage detected