MCPcopy Index your code
hub / github.com/RustPython/RustPython / BareQuotedString

Class BareQuotedString

Lib/email/_header_value_parser.py:261–270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

259
260
261class BareQuotedString(QuotedString):
262
263 token_type = 'bare-quoted-string'
264
265 def __str__(self):
266 return quote_string(''.join(str(x) for x in self))
267
268 @property
269 def value(self):
270 return ''.join(str(x) for x in self)
271
272
273class Comment(WhiteSpaceTokenList):

Callers 1

get_bare_quoted_stringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected