Lines Matching defs:dot
1633 Py_ssize_t dot;
1639 dot = PyUnicode_FindChar(package, '.',
1641 if (dot == -2) {
1644 else if (dot == -1) {
1647 PyObject *substr = PyUnicode_Substring(package, 0, dot);
1850 Py_ssize_t dot;
1852 dot = PyUnicode_FindChar(name, '.', 0, len, 1);
1853 if (dot == -2) {
1857 if (dot == -1) {
1858 /* No dot in module name, simple exit */
1865 PyObject *front = PyUnicode_Substring(name, 0, dot);
1874 Py_ssize_t cut_off = len - dot;