MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / _quote_escape_attrib

Function _quote_escape_attrib

lib/matplotlib/backends/backend_svg.py:93–96  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

91
92
93def _quote_escape_attrib(s):
94 return ('"' + _escape_cdata(s) + '"' if '"' not in s else
95 "'" + _escape_cdata(s) + "'" if "'" not in s else
96 '"' + _escape_attrib(s) + '"')
97
98
99def _short_float_fmt(x):

Callers 1

startMethod · 0.85

Calls 2

_escape_cdataFunction · 0.85
_escape_attribFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…