##// END OF EJS Templates
dirs: tag a struct as not being formattable...
Augie Fackler -
r43506:be178b5d default
parent child Browse files
Show More
@@ -27,10 +27,12 b''
27 * We modify Python integers for refcounting, but those integers are
27 * We modify Python integers for refcounting, but those integers are
28 * never visible to Python code.
28 * never visible to Python code.
29 */
29 */
30 /* clang-format off */
30 typedef struct {
31 typedef struct {
31 PyObject_HEAD
32 PyObject_HEAD
32 PyObject *dict;
33 PyObject *dict;
33 } dirsObject;
34 } dirsObject;
35 /* clang-format on */
34
36
35 static inline Py_ssize_t _finddir(const char *path, Py_ssize_t pos)
37 static inline Py_ssize_t _finddir(const char *path, Py_ssize_t pos)
36 {
38 {
General Comments 0
You need to be logged in to leave comments. Login now