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

Method get_marked

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

Source from the content-addressed store, hash-verified

79 self.mark.set(self.position)
80
81 def get_marked(self) -> Original:
82 return Original(
83 string=self.string[self.mark.chars : self.position.chars],
84 line=self.mark.line,
85 )
86
87 def peek(self, count: int) -> str:
88 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