Searched refs:T_BOOL (Results 1 – 17 of 17) sorted by relevance
/third_party/python/Lib/test/ |
D | test_structmembers.py | 33 ts.T_BOOL = True 34 self.assertEqual(ts.T_BOOL, True) 35 ts.T_BOOL = False 36 self.assertEqual(ts.T_BOOL, False)
|
/third_party/python/Python/ |
D | structmember.c | 14 case T_BOOL: in PyMember_GetOne() 131 case T_BOOL:{ in PyMember_SetOne()
|
/third_party/python/Include/ |
D | structmember.h | 47 #define T_BOOL 14 macro
|
/third_party/python/Modules/ |
D | _bz2module.c | 742 {"eof", T_BOOL, offsetof(BZ2Decompressor, eof), 746 {"needs_input", T_BOOL, offsetof(BZ2Decompressor, needs_input), READONLY,
|
D | _csv.c | 336 { "skipinitialspace", T_BOOL, D_OFF(skipinitialspace), READONLY }, 337 { "doublequote", T_BOOL, D_OFF(doublequote), READONLY }, 338 { "strict", T_BOOL, D_OFF(strict), READONLY },
|
D | _json.c | 41 {"strict", T_BOOL, offsetof(PyScannerObject, strict), READONLY, "strict"}, 71 {"sort_keys", T_BOOL, offsetof(PyEncoderObject, sort_keys), READONLY, "sort_keys"}, 72 {"skipkeys", T_BOOL, offsetof(PyEncoderObject, skipkeys), READONLY, "skipkeys"},
|
D | _lzmamodule.c | 1335 {"eof", T_BOOL, offsetof(Decompressor, eof), READONLY, 1337 {"needs_input", T_BOOL, offsetof(Decompressor, needs_input), READONLY,
|
D | zlibmodule.c | 1376 {"eof", T_BOOL, COMP_OFF(eof), READONLY},
|
D | _testcapimodule.c | 5931 {"T_BOOL", T_BOOL, offsetof(test_structmembers, structmembers.bool_member), 0, NULL},
|
/third_party/python/Objects/ |
D | frameobject.c | 19 {"f_trace_lines", T_BOOL, OFF(f_trace_lines), 0}, 20 {"f_trace_opcodes", T_BOOL, OFF(f_trace_opcodes), 0},
|
D | genobject.c | 1375 {"ag_running", T_BOOL, offsetof(PyAsyncGenObject, ag_running_async),
|
D | exceptions.c | 375 {"__suppress_context__", T_BOOL,
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 2418 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0}, 2504 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0}, 2675 {"_finalizing", T_BOOL, offsetof(buffered, finalizing), 0},
|
D | textio.c | 3270 {"line_buffering", T_BOOL, offsetof(textio, line_buffering), READONLY}, 3271 {"write_through", T_BOOL, offsetof(textio, write_through), READONLY}, 3272 {"_finalizing", T_BOOL, offsetof(textio, finalizing), 0},
|
D | fileio.c | 1186 {"_finalizing", T_BOOL, offsetof(fileio, finalizing), 0},
|
D | winconsoleio.c | 1108 {"_finalizing", T_BOOL, offsetof(winconsoleio, finalizing), 0},
|
/third_party/python/Doc/c-api/ |
D | structures.rst | 437 T_BOOL char
|