Lines Matching defs:flags
238 unsigned int flags;
329 Type flags (tp_flags)
331 These flags are used to change expected features and behavior for a
338 Most flags were removed as of Python 3.0 to make room for new flags. (Some
339 flags are not for backwards compatibility but to indicate the presence of an
340 optional feature; these flags remain of course.)
412 /* These flags are used to determine if a type is a subclass. */
426 /* NOTE: Some of the following flags reuse lower bits (removed as part of the
429 /* The following flags are kept for compatibility; in previous
436 * Note that older extensions using the stable ABI set these flags,
481 they can have object code that is not dependent on Python compilation flags.
765 unsigned long flags;
768 flags = PyType_GetFlags(type);
770 flags = type->tp_flags;
772 return ((flags & feature) != 0);