The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Violet, reference main (404d10), with Swift 6.0 for Linux on 3 Nov 2024 01:11:30 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

 17 |
 18 |     public let rawValue: UInt16
    :
 40 |     ///
 41 |     /// CPython: `DEF_IMPORT`.
 42 |     public static let defImport = Flags(rawValue: 1 << 4)
    |                       |- warning: static property 'defImport' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defImport' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     /// Name used but not defined in nested block.
 44 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:38:23: warning: static property 'defParam' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 36 |     ///
 37 |     /// CPython: `DEF_PARAM`.
 38 |     public static let defParam = Flags(rawValue: 1 << 3)
    |                       |- warning: static property 'defParam' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defParam' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |     /// Variable defined by using import statement.
 40 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:109:23: warning: static property 'use' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
107 |     /// Name is used.
108 |     /// Used for `referenced` property in `symtable` module.
109 |     public static let use = Flags(rawValue: 1 << 12)
    |                       |- warning: static property 'use' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'use' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |     /// This name is annotated.
111 |     public static let annotated = Flags(rawValue: 1 << 13)
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:81:23: warning: static property 'srcGlobalExplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 79 |     ///
 80 |     /// CPython: `GLOBAL_EXPLICIT`.
 81 |     public static let srcGlobalExplicit = Flags(rawValue: 1 << 8)
    |                       |- warning: static property 'srcGlobalExplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcGlobalExplicit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |     /// Variable source (where the value comes from):
 83 |     /// `free` variable without binding in an enclosing function scope.
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:92:23: warning: static property 'srcFree' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 90 |     ///
 91 |     /// CPython: `FREE`.
 92 |     public static let srcFree = Flags(rawValue: 1 << 10)
    |                       |- warning: static property 'srcFree' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcFree' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |     /// Variable provides binding that is used for `srcFree` variables
 94 |     /// in enclosed blocks (it is a captured).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:57:23: warning: static property 'defBoundMask' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 55 |     ///
 56 |     /// CPython: `DEF_BOUND`.
 57 |     public static let defBoundMask: Flags = [
    |                       |- warning: static property 'defBoundMask' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defBoundMask' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |       .defLocal, .defParam, .defImport
 59 |     ]
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:76:23: warning: static property 'srcLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 74 |     ///
 75 |     /// CPython: `LOCAL`.
 76 |     public static let srcLocal = Flags(rawValue: 1 << 7)
    |                       |- warning: static property 'srcLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcLocal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     /// Variable source (where the value comes from):
 78 |     /// `global` symbol (the one that can be used with `global` statement).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:87:23: warning: static property 'srcGlobalImplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 85 |     ///
 86 |     /// CPython: `GLOBAL_IMPLICIT`.
 87 |     public static let srcGlobalImplicit = Flags(rawValue: 1 << 9)
    |                       |- warning: static property 'srcGlobalImplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcGlobalImplicit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |     /// Variable source (where the value comes from):
 89 |     /// from parent scope (its source is called `cell`).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:97:23: warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 95 |     ///
 96 |     /// CPython: `CELL`.
 97 |     public static let cell = Flags(rawValue: 1 << 11)
    |                       |- warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'cell' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 98 |
 99 |     /// All `src` flags:
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:50:23: warning: static property 'defFreeClass' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 48 |     ///
 49 |     /// CPython: `DEF_FREE_CLASS`.
 50 |     public static let defFreeClass = Flags(rawValue: 1 << 6)
    |                       |- warning: static property 'defFreeClass' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defFreeClass' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     /// Bound in scope.
[275/447] Compiling VioletCompiler SymbolTableBuilderImpl.swift
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:26:23: warning: static property 'defLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 24 |     ///
 25 |     /// CPython: `DEF_LOCAL`.
 26 |     public static let defLocal = Flags(rawValue: 1 << 0)
    |                       |- warning: static property 'defLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defLocal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     /// Variable defined by `global` statement, for example: `global elsa`.
 28 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:30:23: warning: static property 'defGlobal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 28 |     ///
 29 |     /// CPython: `DEF_GLOBAL`.
 30 |     public static let defGlobal = Flags(rawValue: 1 << 1)
    |                       |- warning: static property 'defGlobal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defGlobal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     /// Variable defined by `nonlocal` statement, for example: `nonlocal elsa`
 32 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:34:23: warning: static property 'defNonlocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 32 |     ///
 33 |     /// CPython: `DEF_NONLOCAL`.
 34 |     public static let defNonlocal = Flags(rawValue: 1 << 2)
    |                       |- warning: static property 'defNonlocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defNonlocal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     /// Variable defined by formal function parameter.
 36 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:111:23: warning: static property 'annotated' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
109 |     public static let use = Flags(rawValue: 1 << 12)
110 |     /// This name is annotated.
111 |     public static let annotated = Flags(rawValue: 1 << 13)
    |                       |- warning: static property 'annotated' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'annotated' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |
113 |     // MARK: - Description
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:42:23: warning: static property 'defImport' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 40 |     ///
 41 |     /// CPython: `DEF_IMPORT`.
 42 |     public static let defImport = Flags(rawValue: 1 << 4)
    |                       |- warning: static property 'defImport' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defImport' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     /// Name used but not defined in nested block.
 44 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:38:23: warning: static property 'defParam' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 36 |     ///
 37 |     /// CPython: `DEF_PARAM`.
 38 |     public static let defParam = Flags(rawValue: 1 << 3)
    |                       |- warning: static property 'defParam' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defParam' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |     /// Variable defined by using import statement.
 40 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:109:23: warning: static property 'use' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
107 |     /// Name is used.
108 |     /// Used for `referenced` property in `symtable` module.
109 |     public static let use = Flags(rawValue: 1 << 12)
    |                       |- warning: static property 'use' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'use' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |     /// This name is annotated.
111 |     public static let annotated = Flags(rawValue: 1 << 13)
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:81:23: warning: static property 'srcGlobalExplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 79 |     ///
 80 |     /// CPython: `GLOBAL_EXPLICIT`.
 81 |     public static let srcGlobalExplicit = Flags(rawValue: 1 << 8)
    |                       |- warning: static property 'srcGlobalExplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcGlobalExplicit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |     /// Variable source (where the value comes from):
 83 |     /// `free` variable without binding in an enclosing function scope.
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:92:23: warning: static property 'srcFree' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 90 |     ///
 91 |     /// CPython: `FREE`.
 92 |     public static let srcFree = Flags(rawValue: 1 << 10)
    |                       |- warning: static property 'srcFree' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcFree' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |     /// Variable provides binding that is used for `srcFree` variables
 94 |     /// in enclosed blocks (it is a captured).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:57:23: warning: static property 'defBoundMask' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 55 |     ///
 56 |     /// CPython: `DEF_BOUND`.
 57 |     public static let defBoundMask: Flags = [
    |                       |- warning: static property 'defBoundMask' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defBoundMask' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |       .defLocal, .defParam, .defImport
 59 |     ]
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:76:23: warning: static property 'srcLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 74 |     ///
 75 |     /// CPython: `LOCAL`.
 76 |     public static let srcLocal = Flags(rawValue: 1 << 7)
    |                       |- warning: static property 'srcLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcLocal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     /// Variable source (where the value comes from):
 78 |     /// `global` symbol (the one that can be used with `global` statement).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:87:23: warning: static property 'srcGlobalImplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 85 |     ///
 86 |     /// CPython: `GLOBAL_IMPLICIT`.
 87 |     public static let srcGlobalImplicit = Flags(rawValue: 1 << 9)
    |                       |- warning: static property 'srcGlobalImplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcGlobalImplicit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |     /// Variable source (where the value comes from):
 89 |     /// from parent scope (its source is called `cell`).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:97:23: warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 95 |     ///
 96 |     /// CPython: `CELL`.
 97 |     public static let cell = Flags(rawValue: 1 << 11)
    |                       |- warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'cell' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 98 |
 99 |     /// All `src` flags:
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:50:23: warning: static property 'defFreeClass' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 48 |     ///
 49 |     /// CPython: `DEF_FREE_CLASS`.
 50 |     public static let defFreeClass = Flags(rawValue: 1 << 6)
    |                       |- warning: static property 'defFreeClass' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defFreeClass' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     /// Bound in scope.
[276/447] Compiling VioletCompiler SymbolTableVariableSourcePass.swift
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:26:23: warning: static property 'defLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 24 |     ///
 25 |     /// CPython: `DEF_LOCAL`.
 26 |     public static let defLocal = Flags(rawValue: 1 << 0)
    |                       |- warning: static property 'defLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defLocal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |     /// Variable defined by `global` statement, for example: `global elsa`.
 28 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:30:23: warning: static property 'defGlobal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 28 |     ///
 29 |     /// CPython: `DEF_GLOBAL`.
 30 |     public static let defGlobal = Flags(rawValue: 1 << 1)
    |                       |- warning: static property 'defGlobal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defGlobal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |     /// Variable defined by `nonlocal` statement, for example: `nonlocal elsa`
 32 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:34:23: warning: static property 'defNonlocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 32 |     ///
 33 |     /// CPython: `DEF_NONLOCAL`.
 34 |     public static let defNonlocal = Flags(rawValue: 1 << 2)
    |                       |- warning: static property 'defNonlocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defNonlocal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |     /// Variable defined by formal function parameter.
 36 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:111:23: warning: static property 'annotated' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
109 |     public static let use = Flags(rawValue: 1 << 12)
110 |     /// This name is annotated.
111 |     public static let annotated = Flags(rawValue: 1 << 13)
    |                       |- warning: static property 'annotated' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'annotated' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |
113 |     // MARK: - Description
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:42:23: warning: static property 'defImport' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 40 |     ///
 41 |     /// CPython: `DEF_IMPORT`.
 42 |     public static let defImport = Flags(rawValue: 1 << 4)
    |                       |- warning: static property 'defImport' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defImport' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     /// Name used but not defined in nested block.
 44 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:38:23: warning: static property 'defParam' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 36 |     ///
 37 |     /// CPython: `DEF_PARAM`.
 38 |     public static let defParam = Flags(rawValue: 1 << 3)
    |                       |- warning: static property 'defParam' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defParam' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |     /// Variable defined by using import statement.
 40 |     ///
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:109:23: warning: static property 'use' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
107 |     /// Name is used.
108 |     /// Used for `referenced` property in `symtable` module.
109 |     public static let use = Flags(rawValue: 1 << 12)
    |                       |- warning: static property 'use' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'use' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |     /// This name is annotated.
111 |     public static let annotated = Flags(rawValue: 1 << 13)
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:81:23: warning: static property 'srcGlobalExplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 79 |     ///
 80 |     /// CPython: `GLOBAL_EXPLICIT`.
 81 |     public static let srcGlobalExplicit = Flags(rawValue: 1 << 8)
    |                       |- warning: static property 'srcGlobalExplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcGlobalExplicit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 82 |     /// Variable source (where the value comes from):
 83 |     /// `free` variable without binding in an enclosing function scope.
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:92:23: warning: static property 'srcFree' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 90 |     ///
 91 |     /// CPython: `FREE`.
 92 |     public static let srcFree = Flags(rawValue: 1 << 10)
    |                       |- warning: static property 'srcFree' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcFree' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |     /// Variable provides binding that is used for `srcFree` variables
 94 |     /// in enclosed blocks (it is a captured).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:57:23: warning: static property 'defBoundMask' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 55 |     ///
 56 |     /// CPython: `DEF_BOUND`.
 57 |     public static let defBoundMask: Flags = [
    |                       |- warning: static property 'defBoundMask' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defBoundMask' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 58 |       .defLocal, .defParam, .defImport
 59 |     ]
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:76:23: warning: static property 'srcLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 74 |     ///
 75 |     /// CPython: `LOCAL`.
 76 |     public static let srcLocal = Flags(rawValue: 1 << 7)
    |                       |- warning: static property 'srcLocal' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcLocal' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |     /// Variable source (where the value comes from):
 78 |     /// `global` symbol (the one that can be used with `global` statement).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:87:23: warning: static property 'srcGlobalImplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 85 |     ///
 86 |     /// CPython: `GLOBAL_IMPLICIT`.
 87 |     public static let srcGlobalImplicit = Flags(rawValue: 1 << 9)
    |                       |- warning: static property 'srcGlobalImplicit' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'srcGlobalImplicit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 88 |     /// Variable source (where the value comes from):
 89 |     /// from parent scope (its source is called `cell`).
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:97:23: warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 95 |     ///
 96 |     /// CPython: `CELL`.
 97 |     public static let cell = Flags(rawValue: 1 << 11)
    |                       |- warning: static property 'cell' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'cell' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 98 |
 99 |     /// All `src` flags:
/host/spi-builder-workspace/Sources/Compiler/Symbol table/SymbolInfo.swift:50:23: warning: static property 'defFreeClass' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |   // MARK: - Flags
 15 |
 16 |   public struct Flags: OptionSet, Equatable, CustomStringConvertible {
    |                 `- note: consider making struct 'Flags' conform to the 'Sendable' protocol
 17 |
 18 |     public let rawValue: UInt16
    :
 48 |     ///
 49 |     /// CPython: `DEF_FREE_CLASS`.
 50 |     public static let defFreeClass = Flags(rawValue: 1 << 6)
    |                       |- warning: static property 'defFreeClass' is not concurrency-safe because non-'Sendable' type 'SymbolInfo.Flags' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'defFreeClass' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |
 52 |     /// Bound in scope.
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:146:21: warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
144 |   public static let mro = IdString(index: 115)
145 |   public static let name = IdString(index: 116)
146 |   public static let object = IdString(index: 117)
    |                     |- warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'object' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
147 |   public static let origin = IdString(index: 118)
148 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:141:21: warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
139 |   public static let _handle_fromlist = IdString(index: 110)
140 |   public static let builtins = IdString(index: 111)
141 |   public static let encoding = IdString(index: 112)
    |                     |- warning: static property 'encoding' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'encoding' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
142 |   public static let keys = IdString(index: 113)
143 |   public static let metaclass = IdString(index: 114)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Exec+Eval.swift:174:28: warning: static property 'parserMode' is not concurrency-safe because non-'Sendable' type 'Py.ParserMode' may have shared mutable state; this is an error in the Swift 6 language mode
172 |
173 |     fileprivate static let filename = "exec"
174 |     fileprivate static let parserMode = Py.ParserMode.fileInput
    |                            |- warning: static property 'parserMode' is not concurrency-safe because non-'Sendable' type 'Py.ParserMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'parserMode' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 |
176 |     fileprivate static func createLocalsNotDictError(type: String) -> String {
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Compile.swift:22:15: note: consider making enum 'ParserMode' conform to the 'Sendable' protocol
 20 |   ///
 21 |   /// What is the meaning of life? 42?
 22 |   public enum ParserMode {
    |               `- note: consider making enum 'ParserMode' conform to the 'Sendable' protocol
 23 |     /// Used for input in interactive mode.
 24 |     case interactive
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Exec+Eval.swift:215:28: warning: static property 'parserMode' is not concurrency-safe because non-'Sendable' type 'Py.ParserMode' may have shared mutable state; this is an error in the Swift 6 language mode
213 |
214 |     fileprivate static let filename = "eval"
215 |     fileprivate static let parserMode = Py.ParserMode.eval
    |                            |- warning: static property 'parserMode' is not concurrency-safe because non-'Sendable' type 'Py.ParserMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: annotate 'parserMode' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
216 |
217 |     fileprivate static func createLocalsNotDictError(type: String) -> String {
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Compile.swift:22:15: note: consider making enum 'ParserMode' conform to the 'Sendable' protocol
 20 |   ///
 21 |   /// What is the meaning of life? 42?
 22 |   public enum ParserMode {
    |               `- note: consider making enum 'ParserMode' conform to the 'Sendable' protocol
 23 |     /// Used for input in interactive mode.
 24 |     case interactive
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:36:21: warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 34 |   public static let __bool__ = IdString(index: 5)
 35 |   public static let __build_class__ = IdString(index: 6)
 36 |   public static let __builtins__ = IdString(index: 7)
    |                     |- warning: static property '__builtins__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__builtins__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 |   public static let __call__ = IdString(index: 8)
 38 |   public static let __class__ = IdString(index: 9)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:62:21: warning: static property '__hash__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 60 |   public static let __getitem__ = IdString(index: 31)
 61 |   public static let __gt__ = IdString(index: 32)
 62 |   public static let __hash__ = IdString(index: 33)
    |                     |- warning: static property '__hash__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__hash__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 63 |   public static let __iadd__ = IdString(index: 34)
 64 |   public static let __iand__ = IdString(index: 35)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:70:21: warning: static property '__import__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 68 |   public static let __imatmul__ = IdString(index: 39)
 69 |   public static let __imod__ = IdString(index: 40)
 70 |   public static let __import__ = IdString(index: 41)
    |                     |- warning: static property '__import__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__import__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |   public static let __imul__ = IdString(index: 42)
 72 |   public static let __index__ = IdString(index: 43)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:102:21: warning: static property '__package__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
100 |   public static let __next__ = IdString(index: 71)
101 |   public static let __or__ = IdString(index: 72)
102 |   public static let __package__ = IdString(index: 73)
    |                     |- warning: static property '__package__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__package__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |   public static let __path__ = IdString(index: 74)
104 |   public static let __pos__ = IdString(index: 75)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:130:21: warning: static property '__spec__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
128 |   public static let __setattr__ = IdString(index: 99)
129 |   public static let __setitem__ = IdString(index: 100)
130 |   public static let __spec__ = IdString(index: 101)
    |                     |- warning: static property '__spec__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__spec__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
131 |   public static let __str__ = IdString(index: 102)
132 |   public static let __sub__ = IdString(index: 103)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:103:21: warning: static property '__path__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
101 |   public static let __or__ = IdString(index: 72)
102 |   public static let __package__ = IdString(index: 73)
103 |   public static let __path__ = IdString(index: 74)
    |                     |- warning: static property '__path__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__path__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
104 |   public static let __pos__ = IdString(index: 75)
105 |   public static let __pow__ = IdString(index: 76)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:96:21: warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 94 |   public static let __module__ = IdString(index: 65)
 95 |   public static let __mul__ = IdString(index: 66)
 96 |   public static let __name__ = IdString(index: 67)
    |                     |- warning: static property '__name__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__name__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 97 |   public static let __ne__ = IdString(index: 68)
 98 |   public static let __neg__ = IdString(index: 69)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:138:21: warning: static property '_find_and_load' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
136 |   public static let __warningregistry__ = IdString(index: 107)
137 |   public static let __xor__ = IdString(index: 108)
138 |   public static let _find_and_load = IdString(index: 109)
    |                     |- warning: static property '_find_and_load' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_find_and_load' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 |   public static let _handle_fromlist = IdString(index: 110)
140 |   public static let builtins = IdString(index: 111)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:139:21: warning: static property '_handle_fromlist' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
137 |   public static let __xor__ = IdString(index: 108)
138 |   public static let _find_and_load = IdString(index: 109)
139 |   public static let _handle_fromlist = IdString(index: 110)
    |                     |- warning: static property '_handle_fromlist' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '_handle_fromlist' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 |   public static let builtins = IdString(index: 111)
141 |   public static let encoding = IdString(index: 112)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:53:21: warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 51 |   public static let __eq__ = IdString(index: 22)
 52 |   public static let __exit__ = IdString(index: 23)
 53 |   public static let __file__ = IdString(index: 24)
    |                     |- warning: static property '__file__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__file__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Min+Max.swift:159:26: warning: static property 'fnName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
157 | private enum MinImpl: MinMaxImpl {
158 |
159 |   fileprivate static var fnName = "min"
    |                          |- warning: static property 'fnName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: convert 'fnName' to a 'let' constant to make 'Sendable' shared state immutable
    |                          |- note: annotate 'fnName' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
160 |   fileprivate static var argumentParser = Self.createParser()
161 |
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Min+Max.swift:160:26: warning: static property 'argumentParser' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
158 |
159 |   fileprivate static var fnName = "min"
160 |   fileprivate static var argumentParser = Self.createParser()
    |                          |- warning: static property 'argumentParser' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: convert 'argumentParser' to a 'let' constant to make 'Sendable' shared state immutable
    |                          |- note: annotate 'argumentParser' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
161 |
162 |   fileprivate static func compare(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Min+Max.swift:186:26: warning: static property 'fnName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
184 | private enum MaxImpl: MinMaxImpl {
185 |
186 |   fileprivate static var fnName = "max"
    |                          |- warning: static property 'fnName' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: convert 'fnName' to a 'let' constant to make 'Sendable' shared state immutable
    |                          |- note: annotate 'fnName' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 |   fileprivate static var argumentParser = Self.createParser()
188 |
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Min+Max.swift:187:26: warning: static property 'argumentParser' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
185 |
186 |   fileprivate static var fnName = "max"
187 |   fileprivate static var argumentParser = Self.createParser()
    |                          |- warning: static property 'argumentParser' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: convert 'argumentParser' to a 'let' constant to make 'Sendable' shared state immutable
    |                          |- note: annotate 'argumentParser' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
188 |
189 |   fileprivate static func compare(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:100:21: warning: static property '__next__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 98 |   public static let __neg__ = IdString(index: 69)
 99 |   public static let __new__ = IdString(index: 70)
100 |   public static let __next__ = IdString(index: 71)
    |                     |- warning: static property '__next__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__next__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |   public static let __or__ = IdString(index: 72)
102 |   public static let __package__ = IdString(index: 73)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:83:21: warning: static property '__iter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 81 |   public static let __isabstractmethod__ = IdString(index: 52)
 82 |   public static let __isub__ = IdString(index: 53)
 83 |   public static let __iter__ = IdString(index: 54)
    |                     |- warning: static property '__iter__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__iter__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 84 |   public static let __itruediv__ = IdString(index: 55)
 85 |   public static let __ixor__ = IdString(index: 56)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:60:21: warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 58 |   public static let __getattr__ = IdString(index: 29)
 59 |   public static let __getattribute__ = IdString(index: 30)
 60 |   public static let __getitem__ = IdString(index: 31)
    |                     |- warning: static property '__getitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__getitem__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |   public static let __gt__ = IdString(index: 32)
 62 |   public static let __hash__ = IdString(index: 33)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:119:21: warning: static property '__round__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
117 |   public static let __rmul__ = IdString(index: 88)
118 |   public static let __ror__ = IdString(index: 89)
119 |   public static let __round__ = IdString(index: 90)
    |                     |- warning: static property '__round__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__round__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
120 |   public static let __rpow__ = IdString(index: 91)
121 |   public static let __rrshift__ = IdString(index: 92)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:275:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
273 |   fileprivate static let op = "+"
274 |   fileprivate static let inPlaceOp = "+="
275 |   fileprivate static let selector = IdString.__add__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
276 |   fileprivate static let reflectedSelector = IdString.__radd__
277 |   fileprivate static let inPlaceSelector = IdString.__iadd__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:30:21: warning: static property '__add__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 28 |
 29 |   public static let __abs__ = IdString(index: 0)
 30 |   public static let __add__ = IdString(index: 1)
    |                     |- warning: static property '__add__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__add__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:276:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
274 |   fileprivate static let inPlaceOp = "+="
275 |   fileprivate static let selector = IdString.__add__
276 |   fileprivate static let reflectedSelector = IdString.__radd__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
277 |   fileprivate static let inPlaceSelector = IdString.__iadd__
278 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:108:21: warning: static property '__radd__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
106 |   public static let __prepare__ = IdString(index: 77)
107 |   public static let __qualname__ = IdString(index: 78)
108 |   public static let __radd__ = IdString(index: 79)
    |                     |- warning: static property '__radd__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__radd__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |   public static let __rand__ = IdString(index: 80)
110 |   public static let __rdivmod__ = IdString(index: 81)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:277:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
275 |   fileprivate static let selector = IdString.__add__
276 |   fileprivate static let reflectedSelector = IdString.__radd__
277 |   fileprivate static let inPlaceSelector = IdString.__iadd__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
278 |
279 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:63:21: warning: static property '__iadd__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 61 |   public static let __gt__ = IdString(index: 32)
 62 |   public static let __hash__ = IdString(index: 33)
 63 |   public static let __iadd__ = IdString(index: 34)
    |                     |- warning: static property '__iadd__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__iadd__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |   public static let __iand__ = IdString(index: 35)
 65 |   public static let __idivmod__ = IdString(index: 36)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:318:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
316 |   fileprivate static let op = "-"
317 |   fileprivate static let inPlaceOp = "-="
318 |   fileprivate static let selector = IdString.__sub__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
319 |   fileprivate static let reflectedSelector = IdString.__rsub__
320 |   fileprivate static let inPlaceSelector = IdString.__isub__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:132:21: warning: static property '__sub__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
130 |   public static let __spec__ = IdString(index: 101)
131 |   public static let __str__ = IdString(index: 102)
132 |   public static let __sub__ = IdString(index: 103)
    |                     |- warning: static property '__sub__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__sub__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
133 |   public static let __subclasscheck__ = IdString(index: 104)
134 |   public static let __truediv__ = IdString(index: 105)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:319:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
317 |   fileprivate static let inPlaceOp = "-="
318 |   fileprivate static let selector = IdString.__sub__
319 |   fileprivate static let reflectedSelector = IdString.__rsub__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
320 |   fileprivate static let inPlaceSelector = IdString.__isub__
321 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:123:21: warning: static property '__rsub__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
121 |   public static let __rrshift__ = IdString(index: 92)
122 |   public static let __rshift__ = IdString(index: 93)
123 |   public static let __rsub__ = IdString(index: 94)
    |                     |- warning: static property '__rsub__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rsub__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
124 |   public static let __rtruediv__ = IdString(index: 95)
125 |   public static let __rxor__ = IdString(index: 96)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:320:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
318 |   fileprivate static let selector = IdString.__sub__
319 |   fileprivate static let reflectedSelector = IdString.__rsub__
320 |   fileprivate static let inPlaceSelector = IdString.__isub__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
321 |
322 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:82:21: warning: static property '__isub__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 80 |   public static let __irshift__ = IdString(index: 51)
 81 |   public static let __isabstractmethod__ = IdString(index: 52)
 82 |   public static let __isub__ = IdString(index: 53)
    |                     |- warning: static property '__isub__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__isub__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |   public static let __iter__ = IdString(index: 54)
 84 |   public static let __itruediv__ = IdString(index: 55)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:361:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
359 |   fileprivate static let op = "*"
360 |   fileprivate static let inPlaceOp = "*="
361 |   fileprivate static let selector = IdString.__mul__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
362 |   fileprivate static let reflectedSelector = IdString.__rmul__
363 |   fileprivate static let inPlaceSelector = IdString.__imul__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:95:21: warning: static property '__mul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 93 |   public static let __mod__ = IdString(index: 64)
 94 |   public static let __module__ = IdString(index: 65)
 95 |   public static let __mul__ = IdString(index: 66)
    |                     |- warning: static property '__mul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__mul__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |   public static let __name__ = IdString(index: 67)
 97 |   public static let __ne__ = IdString(index: 68)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:362:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
360 |   fileprivate static let inPlaceOp = "*="
361 |   fileprivate static let selector = IdString.__mul__
362 |   fileprivate static let reflectedSelector = IdString.__rmul__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
363 |   fileprivate static let inPlaceSelector = IdString.__imul__
364 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:117:21: warning: static property '__rmul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
115 |   public static let __rmatmul__ = IdString(index: 86)
116 |   public static let __rmod__ = IdString(index: 87)
117 |   public static let __rmul__ = IdString(index: 88)
    |                     |- warning: static property '__rmul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rmul__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 |   public static let __ror__ = IdString(index: 89)
119 |   public static let __round__ = IdString(index: 90)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:363:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
361 |   fileprivate static let selector = IdString.__mul__
362 |   fileprivate static let reflectedSelector = IdString.__rmul__
363 |   fileprivate static let inPlaceSelector = IdString.__imul__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
364 |
365 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:71:21: warning: static property '__imul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 69 |   public static let __imod__ = IdString(index: 40)
 70 |   public static let __import__ = IdString(index: 41)
 71 |   public static let __imul__ = IdString(index: 42)
    |                     |- warning: static property '__imul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__imul__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 |   public static let __index__ = IdString(index: 43)
 73 |   public static let __init__ = IdString(index: 44)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:404:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
402 |   fileprivate static let op = "@"
403 |   fileprivate static let inPlaceOp = "@="
404 |   fileprivate static let selector = IdString.__matmul__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 |   fileprivate static let reflectedSelector = IdString.__rmatmul__
406 |   fileprivate static let inPlaceSelector = IdString.__imatmul__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:91:21: warning: static property '__matmul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 89 |   public static let __lshift__ = IdString(index: 60)
 90 |   public static let __lt__ = IdString(index: 61)
 91 |   public static let __matmul__ = IdString(index: 62)
    |                     |- warning: static property '__matmul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__matmul__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 92 |   public static let __missing__ = IdString(index: 63)
 93 |   public static let __mod__ = IdString(index: 64)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:405:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
403 |   fileprivate static let inPlaceOp = "@="
404 |   fileprivate static let selector = IdString.__matmul__
405 |   fileprivate static let reflectedSelector = IdString.__rmatmul__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 |   fileprivate static let inPlaceSelector = IdString.__imatmul__
407 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:115:21: warning: static property '__rmatmul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
113 |   public static let __rfloordiv__ = IdString(index: 84)
114 |   public static let __rlshift__ = IdString(index: 85)
115 |   public static let __rmatmul__ = IdString(index: 86)
    |                     |- warning: static property '__rmatmul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rmatmul__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
116 |   public static let __rmod__ = IdString(index: 87)
117 |   public static let __rmul__ = IdString(index: 88)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:406:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
404 |   fileprivate static let selector = IdString.__matmul__
405 |   fileprivate static let reflectedSelector = IdString.__rmatmul__
406 |   fileprivate static let inPlaceSelector = IdString.__imatmul__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 |
408 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:68:21: warning: static property '__imatmul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 66 |   public static let __ifloordiv__ = IdString(index: 37)
 67 |   public static let __ilshift__ = IdString(index: 38)
 68 |   public static let __imatmul__ = IdString(index: 39)
    |                     |- warning: static property '__imatmul__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__imatmul__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |   public static let __imod__ = IdString(index: 40)
 70 |   public static let __import__ = IdString(index: 41)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:447:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
445 |   fileprivate static let op = "/"
446 |   fileprivate static let inPlaceOp = "/="
447 |   fileprivate static let selector = IdString.__truediv__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
448 |   fileprivate static let reflectedSelector = IdString.__rtruediv__
449 |   fileprivate static let inPlaceSelector = IdString.__itruediv__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:134:21: warning: static property '__truediv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
132 |   public static let __sub__ = IdString(index: 103)
133 |   public static let __subclasscheck__ = IdString(index: 104)
134 |   public static let __truediv__ = IdString(index: 105)
    |                     |- warning: static property '__truediv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__truediv__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
135 |   public static let __trunc__ = IdString(index: 106)
136 |   public static let __warningregistry__ = IdString(index: 107)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:448:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
446 |   fileprivate static let inPlaceOp = "/="
447 |   fileprivate static let selector = IdString.__truediv__
448 |   fileprivate static let reflectedSelector = IdString.__rtruediv__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 |   fileprivate static let inPlaceSelector = IdString.__itruediv__
450 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:124:21: warning: static property '__rtruediv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
122 |   public static let __rshift__ = IdString(index: 93)
123 |   public static let __rsub__ = IdString(index: 94)
124 |   public static let __rtruediv__ = IdString(index: 95)
    |                     |- warning: static property '__rtruediv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rtruediv__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |   public static let __rxor__ = IdString(index: 96)
126 |   public static let __set__ = IdString(index: 97)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:449:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
447 |   fileprivate static let selector = IdString.__truediv__
448 |   fileprivate static let reflectedSelector = IdString.__rtruediv__
449 |   fileprivate static let inPlaceSelector = IdString.__itruediv__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
450 |
451 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:84:21: warning: static property '__itruediv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 82 |   public static let __isub__ = IdString(index: 53)
 83 |   public static let __iter__ = IdString(index: 54)
 84 |   public static let __itruediv__ = IdString(index: 55)
    |                     |- warning: static property '__itruediv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__itruediv__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |   public static let __ixor__ = IdString(index: 56)
 86 |   public static let __le__ = IdString(index: 57)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:490:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
488 |   fileprivate static let op = "//"
489 |   fileprivate static let inPlaceOp = "//="
490 |   fileprivate static let selector = IdString.__floordiv__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
491 |   fileprivate static let reflectedSelector = IdString.__rfloordiv__
492 |   fileprivate static let inPlaceSelector = IdString.__ifloordiv__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:55:21: warning: static property '__floordiv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 53 |   public static let __file__ = IdString(index: 24)
 54 |   public static let __float__ = IdString(index: 25)
 55 |   public static let __floordiv__ = IdString(index: 26)
    |                     |- warning: static property '__floordiv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__floordiv__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |   public static let __ge__ = IdString(index: 27)
 57 |   public static let __get__ = IdString(index: 28)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:491:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
489 |   fileprivate static let inPlaceOp = "//="
490 |   fileprivate static let selector = IdString.__floordiv__
491 |   fileprivate static let reflectedSelector = IdString.__rfloordiv__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
492 |   fileprivate static let inPlaceSelector = IdString.__ifloordiv__
493 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:113:21: warning: static property '__rfloordiv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
111 |   public static let __repr__ = IdString(index: 82)
112 |   public static let __reversed__ = IdString(index: 83)
113 |   public static let __rfloordiv__ = IdString(index: 84)
    |                     |- warning: static property '__rfloordiv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rfloordiv__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
114 |   public static let __rlshift__ = IdString(index: 85)
115 |   public static let __rmatmul__ = IdString(index: 86)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:492:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
490 |   fileprivate static let selector = IdString.__floordiv__
491 |   fileprivate static let reflectedSelector = IdString.__rfloordiv__
492 |   fileprivate static let inPlaceSelector = IdString.__ifloordiv__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
493 |
494 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:66:21: warning: static property '__ifloordiv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 64 |   public static let __iand__ = IdString(index: 35)
 65 |   public static let __idivmod__ = IdString(index: 36)
 66 |   public static let __ifloordiv__ = IdString(index: 37)
    |                     |- warning: static property '__ifloordiv__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__ifloordiv__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 |   public static let __ilshift__ = IdString(index: 38)
 68 |   public static let __imatmul__ = IdString(index: 39)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:533:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
531 |   fileprivate static let op = "%"
532 |   fileprivate static let inPlaceOp = "%="
533 |   fileprivate static let selector = IdString.__mod__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
534 |   fileprivate static let reflectedSelector = IdString.__rmod__
535 |   fileprivate static let inPlaceSelector = IdString.__imod__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:93:21: warning: static property '__mod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 91 |   public static let __matmul__ = IdString(index: 62)
 92 |   public static let __missing__ = IdString(index: 63)
 93 |   public static let __mod__ = IdString(index: 64)
    |                     |- warning: static property '__mod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__mod__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 94 |   public static let __module__ = IdString(index: 65)
 95 |   public static let __mul__ = IdString(index: 66)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:534:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
532 |   fileprivate static let inPlaceOp = "%="
533 |   fileprivate static let selector = IdString.__mod__
534 |   fileprivate static let reflectedSelector = IdString.__rmod__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
535 |   fileprivate static let inPlaceSelector = IdString.__imod__
536 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:116:21: warning: static property '__rmod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
114 |   public static let __rlshift__ = IdString(index: 85)
115 |   public static let __rmatmul__ = IdString(index: 86)
116 |   public static let __rmod__ = IdString(index: 87)
    |                     |- warning: static property '__rmod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rmod__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |   public static let __rmul__ = IdString(index: 88)
118 |   public static let __ror__ = IdString(index: 89)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:535:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
533 |   fileprivate static let selector = IdString.__mod__
534 |   fileprivate static let reflectedSelector = IdString.__rmod__
535 |   fileprivate static let inPlaceSelector = IdString.__imod__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
536 |
537 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:69:21: warning: static property '__imod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 67 |   public static let __ilshift__ = IdString(index: 38)
 68 |   public static let __imatmul__ = IdString(index: 39)
 69 |   public static let __imod__ = IdString(index: 40)
    |                     |- warning: static property '__imod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__imod__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 70 |   public static let __import__ = IdString(index: 41)
 71 |   public static let __imul__ = IdString(index: 42)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:576:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
574 |   fileprivate static let op = "divmod()"
575 |   fileprivate static let inPlaceOp = "divmod()="
576 |   fileprivate static let selector = IdString.__divmod__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
577 |   fileprivate static let reflectedSelector = IdString.__rdivmod__
578 |   fileprivate static let inPlaceSelector = IdString.__idivmod__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:48:21: warning: static property '__divmod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 46 |   public static let __dict__ = IdString(index: 17)
 47 |   public static let __dir__ = IdString(index: 18)
 48 |   public static let __divmod__ = IdString(index: 19)
    |                     |- warning: static property '__divmod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__divmod__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |   public static let __doc__ = IdString(index: 20)
 50 |   public static let __enter__ = IdString(index: 21)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:577:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
575 |   fileprivate static let inPlaceOp = "divmod()="
576 |   fileprivate static let selector = IdString.__divmod__
577 |   fileprivate static let reflectedSelector = IdString.__rdivmod__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
578 |   fileprivate static let inPlaceSelector = IdString.__idivmod__
579 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:110:21: warning: static property '__rdivmod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
108 |   public static let __radd__ = IdString(index: 79)
109 |   public static let __rand__ = IdString(index: 80)
110 |   public static let __rdivmod__ = IdString(index: 81)
    |                     |- warning: static property '__rdivmod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rdivmod__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
111 |   public static let __repr__ = IdString(index: 82)
112 |   public static let __reversed__ = IdString(index: 83)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:578:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
576 |   fileprivate static let selector = IdString.__divmod__
577 |   fileprivate static let reflectedSelector = IdString.__rdivmod__
578 |   fileprivate static let inPlaceSelector = IdString.__idivmod__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
579 |
580 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:65:21: warning: static property '__idivmod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 63 |   public static let __iadd__ = IdString(index: 34)
 64 |   public static let __iand__ = IdString(index: 35)
 65 |   public static let __idivmod__ = IdString(index: 36)
    |                     |- warning: static property '__idivmod__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__idivmod__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 66 |   public static let __ifloordiv__ = IdString(index: 37)
 67 |   public static let __ilshift__ = IdString(index: 38)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:619:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
617 |   fileprivate static let op = "<<"
618 |   fileprivate static let inPlaceOp = "<<="
619 |   fileprivate static let selector = IdString.__lshift__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
620 |   fileprivate static let reflectedSelector = IdString.__rlshift__
621 |   fileprivate static let inPlaceSelector = IdString.__ilshift__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:89:21: warning: static property '__lshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 87 |   public static let __len__ = IdString(index: 58)
 88 |   public static let __loader__ = IdString(index: 59)
 89 |   public static let __lshift__ = IdString(index: 60)
    |                     |- warning: static property '__lshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__lshift__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 90 |   public static let __lt__ = IdString(index: 61)
 91 |   public static let __matmul__ = IdString(index: 62)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:620:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
618 |   fileprivate static let inPlaceOp = "<<="
619 |   fileprivate static let selector = IdString.__lshift__
620 |   fileprivate static let reflectedSelector = IdString.__rlshift__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
621 |   fileprivate static let inPlaceSelector = IdString.__ilshift__
622 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:114:21: warning: static property '__rlshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
112 |   public static let __reversed__ = IdString(index: 83)
113 |   public static let __rfloordiv__ = IdString(index: 84)
114 |   public static let __rlshift__ = IdString(index: 85)
    |                     |- warning: static property '__rlshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rlshift__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |   public static let __rmatmul__ = IdString(index: 86)
116 |   public static let __rmod__ = IdString(index: 87)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:621:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
619 |   fileprivate static let selector = IdString.__lshift__
620 |   fileprivate static let reflectedSelector = IdString.__rlshift__
621 |   fileprivate static let inPlaceSelector = IdString.__ilshift__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
622 |
623 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:67:21: warning: static property '__ilshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 65 |   public static let __idivmod__ = IdString(index: 36)
 66 |   public static let __ifloordiv__ = IdString(index: 37)
 67 |   public static let __ilshift__ = IdString(index: 38)
    |                     |- warning: static property '__ilshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__ilshift__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |   public static let __imatmul__ = IdString(index: 39)
 69 |   public static let __imod__ = IdString(index: 40)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:662:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
660 |   fileprivate static let op = ">>"
661 |   fileprivate static let inPlaceOp = ">>="
662 |   fileprivate static let selector = IdString.__rshift__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
663 |   fileprivate static let reflectedSelector = IdString.__rrshift__
664 |   fileprivate static let inPlaceSelector = IdString.__irshift__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:122:21: warning: static property '__rshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
120 |   public static let __rpow__ = IdString(index: 91)
121 |   public static let __rrshift__ = IdString(index: 92)
122 |   public static let __rshift__ = IdString(index: 93)
    |                     |- warning: static property '__rshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rshift__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
123 |   public static let __rsub__ = IdString(index: 94)
124 |   public static let __rtruediv__ = IdString(index: 95)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:663:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
661 |   fileprivate static let inPlaceOp = ">>="
662 |   fileprivate static let selector = IdString.__rshift__
663 |   fileprivate static let reflectedSelector = IdString.__rrshift__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
664 |   fileprivate static let inPlaceSelector = IdString.__irshift__
665 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:121:21: warning: static property '__rrshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
119 |   public static let __round__ = IdString(index: 90)
120 |   public static let __rpow__ = IdString(index: 91)
121 |   public static let __rrshift__ = IdString(index: 92)
    |                     |- warning: static property '__rrshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rrshift__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
122 |   public static let __rshift__ = IdString(index: 93)
123 |   public static let __rsub__ = IdString(index: 94)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:664:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
662 |   fileprivate static let selector = IdString.__rshift__
663 |   fileprivate static let reflectedSelector = IdString.__rrshift__
664 |   fileprivate static let inPlaceSelector = IdString.__irshift__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
665 |
666 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:80:21: warning: static property '__irshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 78 |   public static let __ior__ = IdString(index: 49)
 79 |   public static let __ipow__ = IdString(index: 50)
 80 |   public static let __irshift__ = IdString(index: 51)
    |                     |- warning: static property '__irshift__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__irshift__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 81 |   public static let __isabstractmethod__ = IdString(index: 52)
 82 |   public static let __isub__ = IdString(index: 53)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:705:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
703 |   fileprivate static let op = "&"
704 |   fileprivate static let inPlaceOp = "&="
705 |   fileprivate static let selector = IdString.__and__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
706 |   fileprivate static let reflectedSelector = IdString.__rand__
707 |   fileprivate static let inPlaceSelector = IdString.__iand__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:32:21: warning: static property '__and__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 30 |   public static let __add__ = IdString(index: 1)
 31 |   public static let __all__ = IdString(index: 2)
 32 |   public static let __and__ = IdString(index: 3)
    |                     |- warning: static property '__and__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__and__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |   public static let __annotations__ = IdString(index: 4)
 34 |   public static let __bool__ = IdString(index: 5)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:706:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
704 |   fileprivate static let inPlaceOp = "&="
705 |   fileprivate static let selector = IdString.__and__
706 |   fileprivate static let reflectedSelector = IdString.__rand__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
707 |   fileprivate static let inPlaceSelector = IdString.__iand__
708 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:109:21: warning: static property '__rand__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
107 |   public static let __qualname__ = IdString(index: 78)
108 |   public static let __radd__ = IdString(index: 79)
109 |   public static let __rand__ = IdString(index: 80)
    |                     |- warning: static property '__rand__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rand__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |   public static let __rdivmod__ = IdString(index: 81)
111 |   public static let __repr__ = IdString(index: 82)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:707:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
705 |   fileprivate static let selector = IdString.__and__
706 |   fileprivate static let reflectedSelector = IdString.__rand__
707 |   fileprivate static let inPlaceSelector = IdString.__iand__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
708 |
709 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:64:21: warning: static property '__iand__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 62 |   public static let __hash__ = IdString(index: 33)
 63 |   public static let __iadd__ = IdString(index: 34)
 64 |   public static let __iand__ = IdString(index: 35)
    |                     |- warning: static property '__iand__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__iand__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |   public static let __idivmod__ = IdString(index: 36)
 66 |   public static let __ifloordiv__ = IdString(index: 37)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:748:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
746 |   fileprivate static let op = "|"
747 |   fileprivate static let inPlaceOp = "|="
748 |   fileprivate static let selector = IdString.__or__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
749 |   fileprivate static let reflectedSelector = IdString.__ror__
750 |   fileprivate static let inPlaceSelector = IdString.__ior__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:101:21: warning: static property '__or__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 99 |   public static let __new__ = IdString(index: 70)
100 |   public static let __next__ = IdString(index: 71)
101 |   public static let __or__ = IdString(index: 72)
    |                     |- warning: static property '__or__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__or__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 |   public static let __package__ = IdString(index: 73)
103 |   public static let __path__ = IdString(index: 74)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:749:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
747 |   fileprivate static let inPlaceOp = "|="
748 |   fileprivate static let selector = IdString.__or__
749 |   fileprivate static let reflectedSelector = IdString.__ror__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
750 |   fileprivate static let inPlaceSelector = IdString.__ior__
751 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:118:21: warning: static property '__ror__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
116 |   public static let __rmod__ = IdString(index: 87)
117 |   public static let __rmul__ = IdString(index: 88)
118 |   public static let __ror__ = IdString(index: 89)
    |                     |- warning: static property '__ror__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__ror__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
119 |   public static let __round__ = IdString(index: 90)
120 |   public static let __rpow__ = IdString(index: 91)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:750:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
748 |   fileprivate static let selector = IdString.__or__
749 |   fileprivate static let reflectedSelector = IdString.__ror__
750 |   fileprivate static let inPlaceSelector = IdString.__ior__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
751 |
752 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:78:21: warning: static property '__ior__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 76 |   public static let __int__ = IdString(index: 47)
 77 |   public static let __invert__ = IdString(index: 48)
 78 |   public static let __ior__ = IdString(index: 49)
    |                     |- warning: static property '__ior__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__ior__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |   public static let __ipow__ = IdString(index: 50)
 80 |   public static let __irshift__ = IdString(index: 51)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:791:26: warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
789 |   fileprivate static let op = "^"
790 |   fileprivate static let inPlaceOp = "^="
791 |   fileprivate static let selector = IdString.__xor__
    |                          |- warning: static property 'selector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'selector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
792 |   fileprivate static let reflectedSelector = IdString.__rxor__
793 |   fileprivate static let inPlaceSelector = IdString.__ixor__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:137:21: warning: static property '__xor__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
135 |   public static let __trunc__ = IdString(index: 106)
136 |   public static let __warningregistry__ = IdString(index: 107)
137 |   public static let __xor__ = IdString(index: 108)
    |                     |- warning: static property '__xor__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__xor__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
138 |   public static let _find_and_load = IdString(index: 109)
139 |   public static let _handle_fromlist = IdString(index: 110)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:792:26: warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
790 |   fileprivate static let inPlaceOp = "^="
791 |   fileprivate static let selector = IdString.__xor__
792 |   fileprivate static let reflectedSelector = IdString.__rxor__
    |                          |- warning: static property 'reflectedSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'reflectedSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
793 |   fileprivate static let inPlaceSelector = IdString.__ixor__
794 |
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:125:21: warning: static property '__rxor__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
123 |   public static let __rsub__ = IdString(index: 94)
124 |   public static let __rtruediv__ = IdString(index: 95)
125 |   public static let __rxor__ = IdString(index: 96)
    |                     |- warning: static property '__rxor__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rxor__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |   public static let __set__ = IdString(index: 97)
127 |   public static let __set_name__ = IdString(index: 98)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+NumericBinary.swift:793:26: warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
791 |   fileprivate static let selector = IdString.__xor__
792 |   fileprivate static let reflectedSelector = IdString.__rxor__
793 |   fileprivate static let inPlaceSelector = IdString.__ixor__
    |                          |- warning: static property 'inPlaceSelector' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: annotate 'inPlaceSelector' with '@MainActor' if property should only be accessed from the main actor
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
794 |
795 |   fileprivate static func callStatic(_ py: Py,
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:21:15: note: consider making struct 'IdString' conform to the 'Sendable' protocol
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:85:21: warning: static property '__ixor__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 83 |   public static let __iter__ = IdString(index: 54)
 84 |   public static let __itruediv__ = IdString(index: 55)
 85 |   public static let __ixor__ = IdString(index: 56)
    |                     |- warning: static property '__ixor__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__ixor__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |   public static let __le__ = IdString(index: 57)
 87 |   public static let __len__ = IdString(index: 58)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:105:21: warning: static property '__pow__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
103 |   public static let __path__ = IdString(index: 74)
104 |   public static let __pos__ = IdString(index: 75)
105 |   public static let __pow__ = IdString(index: 76)
    |                     |- warning: static property '__pow__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__pow__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |   public static let __prepare__ = IdString(index: 77)
107 |   public static let __qualname__ = IdString(index: 78)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:120:21: warning: static property '__rpow__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
118 |   public static let __ror__ = IdString(index: 89)
119 |   public static let __round__ = IdString(index: 90)
120 |   public static let __rpow__ = IdString(index: 91)
    |                     |- warning: static property '__rpow__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__rpow__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 |   public static let __rrshift__ = IdString(index: 92)
122 |   public static let __rshift__ = IdString(index: 93)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:79:21: warning: static property '__ipow__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 77 |   public static let __invert__ = IdString(index: 48)
 78 |   public static let __ior__ = IdString(index: 49)
 79 |   public static let __ipow__ = IdString(index: 50)
    |                     |- warning: static property '__ipow__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__ipow__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |   public static let __irshift__ = IdString(index: 51)
 81 |   public static let __isabstractmethod__ = IdString(index: 52)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:104:21: warning: static property '__pos__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
102 |   public static let __package__ = IdString(index: 73)
103 |   public static let __path__ = IdString(index: 74)
104 |   public static let __pos__ = IdString(index: 75)
    |                     |- warning: static property '__pos__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__pos__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 |   public static let __pow__ = IdString(index: 76)
106 |   public static let __prepare__ = IdString(index: 77)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:98:21: warning: static property '__neg__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 96 |   public static let __name__ = IdString(index: 67)
 97 |   public static let __ne__ = IdString(index: 68)
 98 |   public static let __neg__ = IdString(index: 69)
    |                     |- warning: static property '__neg__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__neg__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 99 |   public static let __new__ = IdString(index: 70)
100 |   public static let __next__ = IdString(index: 71)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:77:21: warning: static property '__invert__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 75 |   public static let __instancecheck__ = IdString(index: 46)
 76 |   public static let __int__ = IdString(index: 47)
 77 |   public static let __invert__ = IdString(index: 48)
    |                     |- warning: static property '__invert__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__invert__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |   public static let __ior__ = IdString(index: 49)
 79 |   public static let __ipow__ = IdString(index: 50)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:29:21: warning: static property '__abs__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 27 |   }
 28 |
 29 |   public static let __abs__ = IdString(index: 0)
    |                     |- warning: static property '__abs__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__abs__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 |   public static let __add__ = IdString(index: 1)
 31 |   public static let __all__ = IdString(index: 2)
/host/spi-builder-workspace/Sources/Objects/Types - io/FileMode.swift:14:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileMode' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// What are we going to do with file?
 2 | public enum FileMode: CustomStringConvertible {
   |             `- note: consider making enum 'FileMode' conform to the 'Sendable' protocol
 3 |   /// `r` - open for reading (default)
 4 |   case read
   :
12 |   case update
13 |
14 |   internal static let `default` = FileMode.read
   |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'FileMode' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |   public var description: String {
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:47:21: warning: static property '__dir__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 45 |   public static let __delitem__ = IdString(index: 16)
 46 |   public static let __dict__ = IdString(index: 17)
 47 |   public static let __dir__ = IdString(index: 18)
    |                     |- warning: static property '__dir__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__dir__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |   public static let __divmod__ = IdString(index: 19)
 49 |   public static let __doc__ = IdString(index: 20)
/host/spi-builder-workspace/Sources/Objects/Py+Thingies/Py+Print.swift:12:13: warning: let 'defaultStream' is not concurrency-safe because non-'Sendable' type 'Sys.OutputStream' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | // https://docs.python.org/3.7/library/io.html
 11 |
 12 | private let defaultStream = Sys.OutputStream.stdout
    |             |- warning: let 'defaultStream' is not concurrency-safe because non-'Sendable' type 'Sys.OutputStream' may have shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: annotate 'defaultStream' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |
 14 | extension Py {
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys+Streams.swift:124:15: note: consider making enum 'OutputStream' conform to the 'Sendable' protocol
122 |   }
123 |
124 |   public enum OutputStream {
    |               `- note: consider making enum 'OutputStream' conform to the 'Sendable' protocol
125 |     /// `sys.__stdout__`
126 |     case __stdout__
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:111:21: warning: static property '__repr__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
109 |   public static let __rand__ = IdString(index: 80)
110 |   public static let __rdivmod__ = IdString(index: 81)
111 |   public static let __repr__ = IdString(index: 82)
    |                     |- warning: static property '__repr__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__repr__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |   public static let __reversed__ = IdString(index: 83)
113 |   public static let __rfloordiv__ = IdString(index: 84)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:131:21: warning: static property '__str__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
129 |   public static let __setitem__ = IdString(index: 100)
130 |   public static let __spec__ = IdString(index: 101)
131 |   public static let __str__ = IdString(index: 102)
    |                     |- warning: static property '__str__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__str__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
132 |   public static let __sub__ = IdString(index: 103)
133 |   public static let __subclasscheck__ = IdString(index: 104)
/host/spi-builder-workspace/Sources/Objects/Modules - sys/Sys.swift:125:21: warning: static property 'defaultEncoding' is not concurrency-safe because non-'Sendable' type 'PyString.Encoding' may have shared mutable state; this is an error in the Swift 6 language mode
123 |   /// const char *
124 |   /// PyUnicode_GetDefaultEncoding(void)
125 |   public static let defaultEncoding = PyString.Encoding.utf8
    |                     |- warning: static property 'defaultEncoding' is not concurrency-safe because non-'Sendable' type 'PyString.Encoding' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'defaultEncoding' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
126 |
127 |   // MARK: - Properties
/host/spi-builder-workspace/Sources/Objects/Types - string/PyString+Encoding.swift:6:15: note: consider making enum 'Encoding' conform to the 'Sendable' protocol
  4 |
  5 |   /// https://docs.python.org/3.7/library/codecs.html#standard-encodings
  6 |   public enum Encoding: CustomStringConvertible {
    |               `- note: consider making enum 'Encoding' conform to the 'Sendable' protocol
  7 |
  8 |     /// ascii, 646, us-ascii; English
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:129:21: warning: static property '__setitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
127 |   public static let __set_name__ = IdString(index: 98)
128 |   public static let __setattr__ = IdString(index: 99)
129 |   public static let __setitem__ = IdString(index: 100)
    |                     |- warning: static property '__setitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__setitem__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |   public static let __spec__ = IdString(index: 101)
131 |   public static let __str__ = IdString(index: 102)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:45:21: warning: static property '__delitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 43 |   public static let __del__ = IdString(index: 14)
 44 |   public static let __delattr__ = IdString(index: 15)
 45 |   public static let __delitem__ = IdString(index: 16)
    |                     |- warning: static property '__delitem__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__delitem__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |   public static let __dict__ = IdString(index: 17)
 47 |   public static let __dir__ = IdString(index: 18)
/host/spi-builder-workspace/Sources/Objects/Generated/IdStrings.swift:75:21: warning: static property '__instancecheck__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
 19 | ///
 20 | /// Use `py.resolve(id:)` to convert to `PyString`.
 21 | public struct IdString: CustomStringConvertible {
    |               `- note: consider making struct 'IdString' conform to the 'Sendable' protocol
 22 |
 23 |   private let index: Int
    :
 73 |   public static let __init__ = IdString(index: 44)
 74 |   public static let __init_subclass__ = IdString(index: 45)
 75 |   public static let __instancecheck__ = IdString(index: 46)
    |                     |- warning: static property '__instancecheck__' is not concurrency-safe because non-'Sendable' type 'IdString' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate '__instancecheck__' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 76 |   public static let __int__ = IdString(index: 47)
 77 |   public static let __invert__ = IdString(index: 48)
BUILD FAILURE 6.0 linux