MCPcopy Index your code
hub / github.com/python/cpython / BareQuotedString

Class BareQuotedString

Lib/email/_header_value_parser.py:268–277  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

266
267
268class BareQuotedString(QuotedString):
269
270 token_type = 'bare-quoted-string'
271
272 def __str__(self):
273 return quote_string(''.join(str(x) for x in self))
274
275 @property
276 def value(self):
277 return ''.join(str(x) for x in self)
278
279
280class Comment(WhiteSpaceTokenList):

Callers 1

get_bare_quoted_stringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…