Home
last modified time | relevance | path

Searched refs:squotes (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Objects/
Dbytesobject.c1296 Py_ssize_t newsize, squotes, dquotes; in PyBytes_Repr() local
1303 squotes = dquotes = 0; in PyBytes_Repr()
1309 case '\'': squotes++; break; in PyBytes_Repr()
1322 if (smartquotes && squotes && !dquotes) in PyBytes_Repr()
1324 if (squotes && quote == '\'') { in PyBytes_Repr()
1325 if (newsize > PY_SSIZE_T_MAX - squotes) in PyBytes_Repr()
1327 newsize += squotes; in PyBytes_Repr()