pytron-kit 0.3.12__py3-none-macosx_11_0_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pytron/__init__.py +112 -0
- pytron/application.py +562 -0
- pytron/apputils/__init__.py +0 -0
- pytron/apputils/chrome_ipc.py +203 -0
- pytron/apputils/codegen.py +261 -0
- pytron/apputils/config.py +303 -0
- pytron/apputils/deadmansswitch.py +47 -0
- pytron/apputils/extras.py +76 -0
- pytron/apputils/native.py +148 -0
- pytron/apputils/shell.py +73 -0
- pytron/apputils/windows.py +286 -0
- pytron/cli.py +384 -0
- pytron/commands/__init__.py +0 -0
- pytron/commands/android.py +28 -0
- pytron/commands/build.py +26 -0
- pytron/commands/doctor.py +221 -0
- pytron/commands/engine.py +23 -0
- pytron/commands/frontend.py +60 -0
- pytron/commands/harvest.py +112 -0
- pytron/commands/helpers.py +239 -0
- pytron/commands/info.py +50 -0
- pytron/commands/init.py +521 -0
- pytron/commands/install.py +294 -0
- pytron/commands/login.py +130 -0
- pytron/commands/package.py +228 -0
- pytron/commands/plugin.py +442 -0
- pytron/commands/run.py +312 -0
- pytron/commands/scan.py +210 -0
- pytron/commands/show.py +23 -0
- pytron/commands/uninstall.py +150 -0
- pytron/commands/utils.py +42 -0
- pytron/commands/workflow.py +95 -0
- pytron/console.py +133 -0
- pytron/core.py +18 -0
- pytron/dependencies/WebView2Loader.dll +0 -0
- pytron/dependencies/__init__.py +1 -0
- pytron/dependencies/pytron_native.so +0 -0
- pytron/engines/chrome/adapter.py +445 -0
- pytron/engines/chrome/engine.py +576 -0
- pytron/engines/chrome/forge.py +147 -0
- pytron/engines/chrome/shell/package.json +8 -0
- pytron/engines/chrome/shell/preload.js +12 -0
- pytron/engines/chrome/shell/shell.js +534 -0
- pytron/exceptions.py +36 -0
- pytron/inspector.py +201 -0
- pytron/inspector_ui.py +512 -0
- pytron/installer/Installation.nsi +236 -0
- pytron/installer/header.bmp +0 -0
- pytron/installer/pytron.ico +0 -0
- pytron/installer/sidebar.bmp +0 -0
- pytron/llms.md +98 -0
- pytron/manifests/README.md +29 -0
- pytron/manifests/windows-utf8.manifest +44 -0
- pytron/menu.py +128 -0
- pytron/nsis-setup.exe +0 -0
- pytron/pack/__init__.py +0 -0
- pytron/pack/assets.py +131 -0
- pytron/pack/compilers.py +289 -0
- pytron/pack/crystal.py +297 -0
- pytron/pack/graph.py +377 -0
- pytron/pack/inference.py +157 -0
- pytron/pack/installers.py +402 -0
- pytron/pack/introspect.py +357 -0
- pytron/pack/metadata.py +213 -0
- pytron/pack/modules.py +618 -0
- pytron/pack/nuitka.py +108 -0
- pytron/pack/pipeline.py +107 -0
- pytron/pack/pyinstaller.py +176 -0
- pytron/pack/rust_engine.py +273 -0
- pytron/pack/secure.py +309 -0
- pytron/pack/secure_loader/bin/pytron_rust_bootloader +0 -0
- pytron/pack/secure_loader/icon.ico +0 -0
- pytron/pack/utils.py +110 -0
- pytron/pack/virtual_root.py +124 -0
- pytron/platforms/__init__.py +0 -0
- pytron/platforms/android/__init__.py +3 -0
- pytron/platforms/android/android.py +103 -0
- pytron/platforms/android/builder.py +736 -0
- pytron/platforms/android/ops/build.py +79 -0
- pytron/platforms/android/ops/init.py +63 -0
- pytron/platforms/android/ops/run.py +79 -0
- pytron/platforms/android/ops/sync.py +770 -0
- pytron/platforms/android/ops/utils.py +8 -0
- pytron/platforms/android/shell/README.md +30 -0
- pytron/platforms/android/shell/app/build.gradle +64 -0
- pytron/platforms/android/shell/app/src/main/AndroidManifest.xml +29 -0
- pytron/platforms/android/shell/app/src/main/assets/python/main.py +86 -0
- pytron/platforms/android/shell/app/src/main/assets/python/python314.zip +0 -0
- pytron/platforms/android/shell/app/src/main/cpp/CMakeLists.txt +25 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/Python.h +155 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/abstract.h +915 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/audit.h +30 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/bltinmodule.h +14 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/boolobject.h +54 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/bytearrayobject.h +44 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/bytesobject.h +66 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/ceval.h +145 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/codecs.h +176 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/compile.h +22 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/complexobject.h +30 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/abstract.h +104 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/audit.h +8 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytearrayobject.h +38 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/bytesobject.h +42 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/cellobject.h +50 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/ceval.h +43 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/classobject.h +71 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/code.h +340 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/compile.h +50 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/complexobject.h +33 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/context.h +107 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/critical_section.h +154 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/descrobject.h +62 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/dictobject.h +105 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileobject.h +16 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/fileutils.h +16 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/floatobject.h +27 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/frameobject.h +35 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/funcobject.h +185 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/genobject.h +56 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/import.h +30 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/initconfig.h +334 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/listobject.h +53 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/lock.h +74 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longintrepr.h +184 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/longobject.h +89 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/memoryobject.h +50 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/methodobject.h +66 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/modsupport.h +26 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/monitoring.h +269 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/object.h +493 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/objimpl.h +104 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/odictobject.h +43 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/picklebufobject.h +31 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pthread_stubs.h +105 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic.h +614 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_gcc.h +615 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_msc.h +1197 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyatomic_std.h +1112 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyctype.h +39 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pydebug.h +38 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyerrors.h +132 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyfpe.h +15 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyframe.h +45 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pyhash.h +54 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pylifecycle.h +89 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pymem.h +84 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystate.h +275 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pystats.h +194 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythonrun.h +96 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pythread.h +43 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/pytime.h +27 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/setobject.h +71 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/traceback.h +13 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tracemalloc.h +32 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/tupleobject.h +40 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/unicodeobject.h +773 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/warnings.h +20 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/cpython/weakrefobject.h +66 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/critical_section.h +16 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/datetime.h +267 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/descrobject.h +100 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/dictobject.h +108 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/dynamic_annotations.h +499 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/enumobject.h +17 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/errcode.h +45 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/exports.h +105 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/fileobject.h +41 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/fileutils.h +62 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/floatobject.h +54 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/frameobject.h +20 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/genericaliasobject.h +14 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/import.h +103 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/atomic.h +392 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/internal.h +969 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/prim.h +329 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/track.h +147 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc/types.h +721 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/mimalloc/mimalloc.h +565 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_abstract.h +61 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_asdl.h +112 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast.h +945 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ast_state.h +271 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_atexit.h +31 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_audit.h +35 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_backoff.h +133 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bitutils.h +186 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_blocks_output_buffer.h +321 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_brc.h +73 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytes_methods.h +82 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_bytesobject.h +149 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_c_array.h +39 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_call.h +206 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_capsule.h +17 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_cell.h +75 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval.h +390 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ceval_state.h +48 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_code.h +671 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_codecs.h +76 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_compile.h +230 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_complexobject.h +34 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_condvar.h +93 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_context.h +59 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_critical_section.h +237 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp.h +406 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_crossinterp_data_registry.h +41 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_debug_offsets.h +379 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_descrobject.h +28 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict.h +410 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dict_state.h +28 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_dtoa.h +40 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_signal.h +30 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_emscripten_trampoline.h +70 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_exceptions.h +40 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_faulthandler.h +100 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils.h +320 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_fileutils_windows.h +98 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_floatobject.h +49 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_flowgraph.h +47 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_format.h +27 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_frame.h +61 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist.h +111 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_freelist_state.h +70 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_function.h +53 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gc.h +378 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_genobject.h +43 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_getopt.h +22 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_gil.h +66 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects.h +34 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_objects_fini_generated.h +1592 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_global_strings.h +854 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hamt.h +113 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_hashtable.h +150 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_import.h +141 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_importdl.h +139 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_index_pool.h +36 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_initconfig.h +197 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruction_sequence.h +83 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_instruments.h +127 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp.h +109 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interp_structs.h +977 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe.h +401 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpframe_structs.h +95 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_interpolation.h +26 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_intrinsics.h +51 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_jit.h +29 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_list.h +81 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_llist.h +106 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_lock.h +236 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_long.h +319 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_magic_number.h +305 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_memoryobject.h +20 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_mimalloc.h +69 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_modsupport.h +99 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_moduleobject.h +62 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_namespace.h +21 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object.h +1029 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_alloc.h +71 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_deferred.h +32 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_stack.h +95 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_object_state.h +49 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc.h +702 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_obmalloc_init.h +66 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_metadata.h +2117 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_opcode_utils.h +90 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_optimizer.h +318 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parking_lot.h +97 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_parser.h +78 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pathconfig.h +26 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyarena.h +68 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyatomic_ft_wrappers.h +174 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pybuffer.h +21 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyerrors.h +213 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pyhash.h +91 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pylifecycle.h +136 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymath.h +205 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem.h +145 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pymem_init.h +103 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystate.h +339 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pystats.h +21 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythonrun.h +68 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_pythread.h +172 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_qsbr.h +172 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_range.h +21 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime.h +63 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init.h +239 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_init_generated.h +1589 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_runtime_structs.h +310 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_semaphore.h +67 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_setobject.h +41 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_signal.h +108 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sliceobject.h +20 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stackref.h +791 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_stats.h +97 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_strhex.h +39 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structs.h +88 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_structseq.h +40 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_symtable.h +201 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_sysmodule.h +32 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_template.h +26 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_time.h +334 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_token.h +110 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_traceback.h +111 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tracemalloc.h +164 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tstate.h +88 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_tuple.h +75 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typedefs.h +18 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typeobject.h +155 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_typevarobject.h +28 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_ucnhash.h +36 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject.h +308 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject_generated.h +3132 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unionobject.h +26 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uniqueid.h +57 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_ids.h +335 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_uop_metadata.h +1204 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_warnings.h +21 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_weakref.h +133 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/intrcheck.h +23 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/iterobject.h +24 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/listobject.h +55 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/lock.h +16 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/longobject.h +178 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/marshal.h +31 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/memoryobject.h +34 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/methodobject.h +146 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/modsupport.h +146 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/moduleobject.h +122 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/monitoring.h +18 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/object.h +828 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/objimpl.h +211 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/opcode.h +43 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/opcode_ids.h +259 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/osdefs.h +57 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/osmodule.h +17 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/patchlevel.h +49 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/py_curses.h +117 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pyatomic.h +16 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pybuffer.h +145 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pycapsule.h +58 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pyconfig.h +2088 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pydtrace.h +59 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pyerrors.h +335 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pyexpat.h +62 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pyframe.h +26 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pyhash.h +59 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pylifecycle.h +80 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pymacconfig.h +91 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pymacro.h +243 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pymath.h +65 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pymem.h +110 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pyport.h +710 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pystate.h +132 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pystats.h +28 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pystrcmp.h +23 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pystrtod.h +37 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pythonrun.h +42 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pythread.h +131 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/pytypedefs.h +30 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/rangeobject.h +27 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/refcount.h +555 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/setobject.h +49 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/sliceobject.h +69 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/structmember.h +56 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/structseq.h +46 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/sysmodule.h +27 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/traceback.h +26 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/tupleobject.h +46 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/typeslots.h +96 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/unicodeobject.h +1029 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/warnings.h +45 -0
- pytron/platforms/android/shell/app/src/main/cpp/include/weakrefobject.h +46 -0
- pytron/platforms/android/shell/app/src/main/cpp/pytron_bridge.cpp +224 -0
- pytron/platforms/android/shell/app/src/main/java/com/pytron/shell/MainActivity.kt +208 -0
- pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- pytron/platforms/android/shell/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- pytron/platforms/android/shell/build.gradle +11 -0
- pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.jar +0 -0
- pytron/platforms/android/shell/gradle/wrapper/gradle-wrapper.properties +5 -0
- pytron/platforms/android/shell/gradle.properties +2 -0
- pytron/platforms/android/shell/gradlew.bat +85 -0
- pytron/platforms/android/shell/settings.gradle +16 -0
- pytron/platforms/darwin.py +82 -0
- pytron/platforms/darwin_ops/libs.py +31 -0
- pytron/platforms/darwin_ops/system.py +182 -0
- pytron/platforms/darwin_ops/utils.py +85 -0
- pytron/platforms/darwin_ops/webview.py +5 -0
- pytron/platforms/darwin_ops/window.py +102 -0
- pytron/platforms/interface.py +152 -0
- pytron/platforms/linux.py +82 -0
- pytron/platforms/linux_ops/libs.py +49 -0
- pytron/platforms/linux_ops/system.py +316 -0
- pytron/platforms/linux_ops/utils.py +19 -0
- pytron/platforms/linux_ops/webview.py +5 -0
- pytron/platforms/linux_ops/window.py +115 -0
- pytron/platforms/windows.py +136 -0
- pytron/platforms/windows_ops/__init__.py +0 -0
- pytron/platforms/windows_ops/constants.py +126 -0
- pytron/platforms/windows_ops/system.py +518 -0
- pytron/platforms/windows_ops/utils.py +3 -0
- pytron/platforms/windows_ops/webview.py +5 -0
- pytron/platforms/windows_ops/window.py +361 -0
- pytron/plugin.py +467 -0
- pytron/rcedit-x64.exe +0 -0
- pytron/router.py +146 -0
- pytron/serializer.py +240 -0
- pytron/shortcuts.py +279 -0
- pytron/state.py +76 -0
- pytron/tray.py +399 -0
- pytron/updater.py +181 -0
- pytron/utf8_hook.py +112 -0
- pytron/utils.py +44 -0
- pytron/webview.py +722 -0
- pytron_kit-0.3.12.dist-info/METADATA +131 -0
- pytron_kit-0.3.12.dist-info/RECORD +419 -0
- pytron_kit-0.3.12.dist-info/WHEEL +5 -0
- pytron_kit-0.3.12.dist-info/entry_points.txt +2 -0
- pytron_kit-0.3.12.dist-info/licenses/LICENSE +201 -0
- pytron_kit-0.3.12.dist-info/top_level.txt +1 -0
pytron/platforms/android/shell/app/src/main/cpp/include/internal/pycore_unicodeobject_generated.h
ADDED
|
@@ -0,0 +1,3132 @@
|
|
|
1
|
+
#ifndef Py_INTERNAL_UNICODEOBJECT_GENERATED_H
|
|
2
|
+
#define Py_INTERNAL_UNICODEOBJECT_GENERATED_H
|
|
3
|
+
#ifdef __cplusplus
|
|
4
|
+
extern "C" {
|
|
5
|
+
#endif
|
|
6
|
+
|
|
7
|
+
#ifndef Py_BUILD_CORE
|
|
8
|
+
# error "this header requires Py_BUILD_CORE define"
|
|
9
|
+
#endif
|
|
10
|
+
|
|
11
|
+
/* The following is auto-generated by Tools/build/generate_global_objects.py. */
|
|
12
|
+
static inline void
|
|
13
|
+
_PyUnicode_InitStaticStrings(PyInterpreterState *interp) {
|
|
14
|
+
PyObject *string;
|
|
15
|
+
string = &_Py_ID(CANCELLED);
|
|
16
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
17
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
18
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
19
|
+
string = &_Py_ID(FINISHED);
|
|
20
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
21
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
22
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
23
|
+
string = &_Py_ID(False);
|
|
24
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
25
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
26
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
27
|
+
string = &_Py_ID(JSONDecodeError);
|
|
28
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
29
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
30
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
31
|
+
string = &_Py_ID(PENDING);
|
|
32
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
33
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
34
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
35
|
+
string = &_Py_ID(Py_Repr);
|
|
36
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
37
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
38
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
39
|
+
string = &_Py_ID(TextIOWrapper);
|
|
40
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
41
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
42
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
43
|
+
string = &_Py_ID(True);
|
|
44
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
45
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
46
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
47
|
+
string = &_Py_ID(WarningMessage);
|
|
48
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
49
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
50
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
51
|
+
string = &_Py_ID(_WindowsConsoleIO);
|
|
52
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
53
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
54
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
55
|
+
string = &_Py_ID(__IOBase_closed);
|
|
56
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
57
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
58
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
59
|
+
string = &_Py_ID(__abc_tpflags__);
|
|
60
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
61
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
62
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
63
|
+
string = &_Py_ID(__abs__);
|
|
64
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
65
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
66
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
67
|
+
string = &_Py_ID(__abstractmethods__);
|
|
68
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
69
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
70
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
71
|
+
string = &_Py_ID(__add__);
|
|
72
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
73
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
74
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
75
|
+
string = &_Py_ID(__aenter__);
|
|
76
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
77
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
78
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
79
|
+
string = &_Py_ID(__aexit__);
|
|
80
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
81
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
82
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
83
|
+
string = &_Py_ID(__aiter__);
|
|
84
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
85
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
86
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
87
|
+
string = &_Py_ID(__all__);
|
|
88
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
89
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
90
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
91
|
+
string = &_Py_ID(__and__);
|
|
92
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
93
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
94
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
95
|
+
string = &_Py_ID(__anext__);
|
|
96
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
97
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
98
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
99
|
+
string = &_Py_ID(__annotate__);
|
|
100
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
101
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
102
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
103
|
+
string = &_Py_ID(__annotate_func__);
|
|
104
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
105
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
106
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
107
|
+
string = &_Py_ID(__annotations__);
|
|
108
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
109
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
110
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
111
|
+
string = &_Py_ID(__annotations_cache__);
|
|
112
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
113
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
114
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
115
|
+
string = &_Py_ID(__args__);
|
|
116
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
117
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
118
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
119
|
+
string = &_Py_ID(__await__);
|
|
120
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
121
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
122
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
123
|
+
string = &_Py_ID(__bases__);
|
|
124
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
125
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
126
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
127
|
+
string = &_Py_ID(__bool__);
|
|
128
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
129
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
130
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
131
|
+
string = &_Py_ID(__buffer__);
|
|
132
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
133
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
134
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
135
|
+
string = &_Py_ID(__build_class__);
|
|
136
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
137
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
138
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
139
|
+
string = &_Py_ID(__builtins__);
|
|
140
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
141
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
142
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
143
|
+
string = &_Py_ID(__bytes__);
|
|
144
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
145
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
146
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
147
|
+
string = &_Py_ID(__call__);
|
|
148
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
149
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
150
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
151
|
+
string = &_Py_ID(__cantrace__);
|
|
152
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
153
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
154
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
155
|
+
string = &_Py_ID(__ceil__);
|
|
156
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
157
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
158
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
159
|
+
string = &_Py_ID(__class__);
|
|
160
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
161
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
162
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
163
|
+
string = &_Py_ID(__class_getitem__);
|
|
164
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
165
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
166
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
167
|
+
string = &_Py_ID(__classcell__);
|
|
168
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
169
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
170
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
171
|
+
string = &_Py_ID(__classdict__);
|
|
172
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
173
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
174
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
175
|
+
string = &_Py_ID(__classdictcell__);
|
|
176
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
177
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
178
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
179
|
+
string = &_Py_ID(__complex__);
|
|
180
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
181
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
182
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
183
|
+
string = &_Py_ID(__conditional_annotations__);
|
|
184
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
185
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
186
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
187
|
+
string = &_Py_ID(__contains__);
|
|
188
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
189
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
190
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
191
|
+
string = &_Py_ID(__ctypes_from_outparam__);
|
|
192
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
193
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
194
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
195
|
+
string = &_Py_ID(__del__);
|
|
196
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
197
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
198
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
199
|
+
string = &_Py_ID(__delattr__);
|
|
200
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
201
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
202
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
203
|
+
string = &_Py_ID(__delete__);
|
|
204
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
205
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
206
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
207
|
+
string = &_Py_ID(__delitem__);
|
|
208
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
209
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
210
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
211
|
+
string = &_Py_ID(__dict__);
|
|
212
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
213
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
214
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
215
|
+
string = &_Py_ID(__dictoffset__);
|
|
216
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
217
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
218
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
219
|
+
string = &_Py_ID(__dir__);
|
|
220
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
221
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
222
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
223
|
+
string = &_Py_ID(__divmod__);
|
|
224
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
225
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
226
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
227
|
+
string = &_Py_ID(__doc__);
|
|
228
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
229
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
230
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
231
|
+
string = &_Py_ID(__enter__);
|
|
232
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
233
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
234
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
235
|
+
string = &_Py_ID(__eq__);
|
|
236
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
237
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
238
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
239
|
+
string = &_Py_ID(__exit__);
|
|
240
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
241
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
242
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
243
|
+
string = &_Py_ID(__file__);
|
|
244
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
245
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
246
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
247
|
+
string = &_Py_ID(__firstlineno__);
|
|
248
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
249
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
250
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
251
|
+
string = &_Py_ID(__float__);
|
|
252
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
253
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
254
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
255
|
+
string = &_Py_ID(__floor__);
|
|
256
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
257
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
258
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
259
|
+
string = &_Py_ID(__floordiv__);
|
|
260
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
261
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
262
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
263
|
+
string = &_Py_ID(__format__);
|
|
264
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
265
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
266
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
267
|
+
string = &_Py_ID(__fspath__);
|
|
268
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
269
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
270
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
271
|
+
string = &_Py_ID(__ge__);
|
|
272
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
273
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
274
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
275
|
+
string = &_Py_ID(__get__);
|
|
276
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
277
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
278
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
279
|
+
string = &_Py_ID(__getattr__);
|
|
280
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
281
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
282
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
283
|
+
string = &_Py_ID(__getattribute__);
|
|
284
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
285
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
286
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
287
|
+
string = &_Py_ID(__getinitargs__);
|
|
288
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
289
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
290
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
291
|
+
string = &_Py_ID(__getitem__);
|
|
292
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
293
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
294
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
295
|
+
string = &_Py_ID(__getnewargs__);
|
|
296
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
297
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
298
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
299
|
+
string = &_Py_ID(__getnewargs_ex__);
|
|
300
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
301
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
302
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
303
|
+
string = &_Py_ID(__getstate__);
|
|
304
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
305
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
306
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
307
|
+
string = &_Py_ID(__gt__);
|
|
308
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
309
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
310
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
311
|
+
string = &_Py_ID(__hash__);
|
|
312
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
313
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
314
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
315
|
+
string = &_Py_ID(__iadd__);
|
|
316
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
317
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
318
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
319
|
+
string = &_Py_ID(__iand__);
|
|
320
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
321
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
322
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
323
|
+
string = &_Py_ID(__ifloordiv__);
|
|
324
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
325
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
326
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
327
|
+
string = &_Py_ID(__ilshift__);
|
|
328
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
329
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
330
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
331
|
+
string = &_Py_ID(__imatmul__);
|
|
332
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
333
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
334
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
335
|
+
string = &_Py_ID(__imod__);
|
|
336
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
337
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
338
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
339
|
+
string = &_Py_ID(__import__);
|
|
340
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
341
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
342
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
343
|
+
string = &_Py_ID(__imul__);
|
|
344
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
345
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
346
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
347
|
+
string = &_Py_ID(__index__);
|
|
348
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
349
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
350
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
351
|
+
string = &_Py_ID(__init__);
|
|
352
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
353
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
354
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
355
|
+
string = &_Py_ID(__init_subclass__);
|
|
356
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
357
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
358
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
359
|
+
string = &_Py_ID(__instancecheck__);
|
|
360
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
361
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
362
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
363
|
+
string = &_Py_ID(__int__);
|
|
364
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
365
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
366
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
367
|
+
string = &_Py_ID(__invert__);
|
|
368
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
369
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
370
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
371
|
+
string = &_Py_ID(__ior__);
|
|
372
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
373
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
374
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
375
|
+
string = &_Py_ID(__ipow__);
|
|
376
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
377
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
378
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
379
|
+
string = &_Py_ID(__irshift__);
|
|
380
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
381
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
382
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
383
|
+
string = &_Py_ID(__isabstractmethod__);
|
|
384
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
385
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
386
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
387
|
+
string = &_Py_ID(__isub__);
|
|
388
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
389
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
390
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
391
|
+
string = &_Py_ID(__iter__);
|
|
392
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
393
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
394
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
395
|
+
string = &_Py_ID(__itruediv__);
|
|
396
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
397
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
398
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
399
|
+
string = &_Py_ID(__ixor__);
|
|
400
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
401
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
402
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
403
|
+
string = &_Py_ID(__le__);
|
|
404
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
405
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
406
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
407
|
+
string = &_Py_ID(__len__);
|
|
408
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
409
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
410
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
411
|
+
string = &_Py_ID(__length_hint__);
|
|
412
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
413
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
414
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
415
|
+
string = &_Py_ID(__lltrace__);
|
|
416
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
417
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
418
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
419
|
+
string = &_Py_ID(__loader__);
|
|
420
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
421
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
422
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
423
|
+
string = &_Py_ID(__lshift__);
|
|
424
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
425
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
426
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
427
|
+
string = &_Py_ID(__lt__);
|
|
428
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
429
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
430
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
431
|
+
string = &_Py_ID(__main__);
|
|
432
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
433
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
434
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
435
|
+
string = &_Py_ID(__match_args__);
|
|
436
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
437
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
438
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
439
|
+
string = &_Py_ID(__matmul__);
|
|
440
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
441
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
442
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
443
|
+
string = &_Py_ID(__missing__);
|
|
444
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
445
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
446
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
447
|
+
string = &_Py_ID(__mod__);
|
|
448
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
449
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
450
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
451
|
+
string = &_Py_ID(__module__);
|
|
452
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
453
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
454
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
455
|
+
string = &_Py_ID(__mro_entries__);
|
|
456
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
457
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
458
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
459
|
+
string = &_Py_ID(__mul__);
|
|
460
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
461
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
462
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
463
|
+
string = &_Py_ID(__name__);
|
|
464
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
465
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
466
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
467
|
+
string = &_Py_ID(__ne__);
|
|
468
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
469
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
470
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
471
|
+
string = &_Py_ID(__neg__);
|
|
472
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
473
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
474
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
475
|
+
string = &_Py_ID(__new__);
|
|
476
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
477
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
478
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
479
|
+
string = &_Py_ID(__newobj__);
|
|
480
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
481
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
482
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
483
|
+
string = &_Py_ID(__newobj_ex__);
|
|
484
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
485
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
486
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
487
|
+
string = &_Py_ID(__next__);
|
|
488
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
489
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
490
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
491
|
+
string = &_Py_ID(__notes__);
|
|
492
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
493
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
494
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
495
|
+
string = &_Py_ID(__or__);
|
|
496
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
497
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
498
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
499
|
+
string = &_Py_ID(__orig_class__);
|
|
500
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
501
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
502
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
503
|
+
string = &_Py_ID(__origin__);
|
|
504
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
505
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
506
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
507
|
+
string = &_Py_ID(__package__);
|
|
508
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
509
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
510
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
511
|
+
string = &_Py_ID(__parameters__);
|
|
512
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
513
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
514
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
515
|
+
string = &_Py_ID(__path__);
|
|
516
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
517
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
518
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
519
|
+
string = &_Py_ID(__pos__);
|
|
520
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
521
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
522
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
523
|
+
string = &_Py_ID(__pow__);
|
|
524
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
525
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
526
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
527
|
+
string = &_Py_ID(__prepare__);
|
|
528
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
529
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
530
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
531
|
+
string = &_Py_ID(__qualname__);
|
|
532
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
533
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
534
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
535
|
+
string = &_Py_ID(__radd__);
|
|
536
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
537
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
538
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
539
|
+
string = &_Py_ID(__rand__);
|
|
540
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
541
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
542
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
543
|
+
string = &_Py_ID(__rdivmod__);
|
|
544
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
545
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
546
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
547
|
+
string = &_Py_ID(__reduce__);
|
|
548
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
549
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
550
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
551
|
+
string = &_Py_ID(__reduce_ex__);
|
|
552
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
553
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
554
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
555
|
+
string = &_Py_ID(__release_buffer__);
|
|
556
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
557
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
558
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
559
|
+
string = &_Py_ID(__repr__);
|
|
560
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
561
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
562
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
563
|
+
string = &_Py_ID(__reversed__);
|
|
564
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
565
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
566
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
567
|
+
string = &_Py_ID(__rfloordiv__);
|
|
568
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
569
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
570
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
571
|
+
string = &_Py_ID(__rlshift__);
|
|
572
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
573
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
574
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
575
|
+
string = &_Py_ID(__rmatmul__);
|
|
576
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
577
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
578
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
579
|
+
string = &_Py_ID(__rmod__);
|
|
580
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
581
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
582
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
583
|
+
string = &_Py_ID(__rmul__);
|
|
584
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
585
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
586
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
587
|
+
string = &_Py_ID(__ror__);
|
|
588
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
589
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
590
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
591
|
+
string = &_Py_ID(__round__);
|
|
592
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
593
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
594
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
595
|
+
string = &_Py_ID(__rpow__);
|
|
596
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
597
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
598
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
599
|
+
string = &_Py_ID(__rrshift__);
|
|
600
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
601
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
602
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
603
|
+
string = &_Py_ID(__rshift__);
|
|
604
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
605
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
606
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
607
|
+
string = &_Py_ID(__rsub__);
|
|
608
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
609
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
610
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
611
|
+
string = &_Py_ID(__rtruediv__);
|
|
612
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
613
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
614
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
615
|
+
string = &_Py_ID(__rxor__);
|
|
616
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
617
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
618
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
619
|
+
string = &_Py_ID(__set__);
|
|
620
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
621
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
622
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
623
|
+
string = &_Py_ID(__set_name__);
|
|
624
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
625
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
626
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
627
|
+
string = &_Py_ID(__setattr__);
|
|
628
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
629
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
630
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
631
|
+
string = &_Py_ID(__setitem__);
|
|
632
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
633
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
634
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
635
|
+
string = &_Py_ID(__setstate__);
|
|
636
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
637
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
638
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
639
|
+
string = &_Py_ID(__sizeof__);
|
|
640
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
641
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
642
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
643
|
+
string = &_Py_ID(__slotnames__);
|
|
644
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
645
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
646
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
647
|
+
string = &_Py_ID(__slots__);
|
|
648
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
649
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
650
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
651
|
+
string = &_Py_ID(__spec__);
|
|
652
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
653
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
654
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
655
|
+
string = &_Py_ID(__static_attributes__);
|
|
656
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
657
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
658
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
659
|
+
string = &_Py_ID(__str__);
|
|
660
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
661
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
662
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
663
|
+
string = &_Py_ID(__sub__);
|
|
664
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
665
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
666
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
667
|
+
string = &_Py_ID(__subclasscheck__);
|
|
668
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
669
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
670
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
671
|
+
string = &_Py_ID(__subclasshook__);
|
|
672
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
673
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
674
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
675
|
+
string = &_Py_ID(__truediv__);
|
|
676
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
677
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
678
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
679
|
+
string = &_Py_ID(__trunc__);
|
|
680
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
681
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
682
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
683
|
+
string = &_Py_ID(__type_params__);
|
|
684
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
685
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
686
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
687
|
+
string = &_Py_ID(__typing_is_unpacked_typevartuple__);
|
|
688
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
689
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
690
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
691
|
+
string = &_Py_ID(__typing_prepare_subst__);
|
|
692
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
693
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
694
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
695
|
+
string = &_Py_ID(__typing_subst__);
|
|
696
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
697
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
698
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
699
|
+
string = &_Py_ID(__typing_unpacked_tuple_args__);
|
|
700
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
701
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
702
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
703
|
+
string = &_Py_ID(__warningregistry__);
|
|
704
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
705
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
706
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
707
|
+
string = &_Py_ID(__weaklistoffset__);
|
|
708
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
709
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
710
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
711
|
+
string = &_Py_ID(__weakref__);
|
|
712
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
713
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
714
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
715
|
+
string = &_Py_ID(__xor__);
|
|
716
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
717
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
718
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
719
|
+
string = &_Py_ID(_abc_impl);
|
|
720
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
721
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
722
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
723
|
+
string = &_Py_ID(_abstract_);
|
|
724
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
725
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
726
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
727
|
+
string = &_Py_ID(_active);
|
|
728
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
729
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
730
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
731
|
+
string = &_Py_ID(_anonymous_);
|
|
732
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
733
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
734
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
735
|
+
string = &_Py_ID(_argtypes_);
|
|
736
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
737
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
738
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
739
|
+
string = &_Py_ID(_as_parameter_);
|
|
740
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
741
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
742
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
743
|
+
string = &_Py_ID(_asyncio_future_blocking);
|
|
744
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
745
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
746
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
747
|
+
string = &_Py_ID(_blksize);
|
|
748
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
749
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
750
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
751
|
+
string = &_Py_ID(_bootstrap);
|
|
752
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
753
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
754
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
755
|
+
string = &_Py_ID(_check_retval_);
|
|
756
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
757
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
758
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
759
|
+
string = &_Py_ID(_dealloc_warn);
|
|
760
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
761
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
762
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
763
|
+
string = &_Py_ID(_feature_version);
|
|
764
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
765
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
766
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
767
|
+
string = &_Py_ID(_field_types);
|
|
768
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
769
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
770
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
771
|
+
string = &_Py_ID(_fields_);
|
|
772
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
773
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
774
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
775
|
+
string = &_Py_ID(_filters);
|
|
776
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
777
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
778
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
779
|
+
string = &_Py_ID(_finalizing);
|
|
780
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
781
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
782
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
783
|
+
string = &_Py_ID(_find_and_load);
|
|
784
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
785
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
786
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
787
|
+
string = &_Py_ID(_fix_up_module);
|
|
788
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
789
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
790
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
791
|
+
string = &_Py_ID(_flags_);
|
|
792
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
793
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
794
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
795
|
+
string = &_Py_ID(_get_sourcefile);
|
|
796
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
797
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
798
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
799
|
+
string = &_Py_ID(_handle_fromlist);
|
|
800
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
801
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
802
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
803
|
+
string = &_Py_ID(_initializing);
|
|
804
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
805
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
806
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
807
|
+
string = &_Py_ID(_internal_use);
|
|
808
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
809
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
810
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
811
|
+
string = &_Py_ID(_io);
|
|
812
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
813
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
814
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
815
|
+
string = &_Py_ID(_is_text_encoding);
|
|
816
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
817
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
818
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
819
|
+
string = &_Py_ID(_isatty_open_only);
|
|
820
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
821
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
822
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
823
|
+
string = &_Py_ID(_length_);
|
|
824
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
825
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
826
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
827
|
+
string = &_Py_ID(_limbo);
|
|
828
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
829
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
830
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
831
|
+
string = &_Py_ID(_lock_unlock_module);
|
|
832
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
833
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
834
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
835
|
+
string = &_Py_ID(_loop);
|
|
836
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
837
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
838
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
839
|
+
string = &_Py_ID(_needs_com_addref_);
|
|
840
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
841
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
842
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
843
|
+
string = &_Py_ID(_only_immortal);
|
|
844
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
845
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
846
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
847
|
+
string = &_Py_ID(_restype_);
|
|
848
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
849
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
850
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
851
|
+
string = &_Py_ID(_showwarnmsg);
|
|
852
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
853
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
854
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
855
|
+
string = &_Py_ID(_shutdown);
|
|
856
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
857
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
858
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
859
|
+
string = &_Py_ID(_slotnames);
|
|
860
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
861
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
862
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
863
|
+
string = &_Py_ID(_strptime);
|
|
864
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
865
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
866
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
867
|
+
string = &_Py_ID(_strptime_datetime_date);
|
|
868
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
869
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
870
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
871
|
+
string = &_Py_ID(_strptime_datetime_datetime);
|
|
872
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
873
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
874
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
875
|
+
string = &_Py_ID(_strptime_datetime_time);
|
|
876
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
877
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
878
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
879
|
+
string = &_Py_ID(_type_);
|
|
880
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
881
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
882
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
883
|
+
string = &_Py_ID(_uninitialized_submodules);
|
|
884
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
885
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
886
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
887
|
+
string = &_Py_ID(_warn_unawaited_coroutine);
|
|
888
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
889
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
890
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
891
|
+
string = &_Py_ID(_xoptions);
|
|
892
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
893
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
894
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
895
|
+
string = &_Py_ID(abs_tol);
|
|
896
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
897
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
898
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
899
|
+
string = &_Py_ID(access);
|
|
900
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
901
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
902
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
903
|
+
string = &_Py_ID(aclose);
|
|
904
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
905
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
906
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
907
|
+
string = &_Py_ID(add);
|
|
908
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
909
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
910
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
911
|
+
string = &_Py_ID(add_done_callback);
|
|
912
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
913
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
914
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
915
|
+
string = &_Py_ID(after_in_child);
|
|
916
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
917
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
918
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
919
|
+
string = &_Py_ID(after_in_parent);
|
|
920
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
921
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
922
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
923
|
+
string = &_Py_ID(aggregate_class);
|
|
924
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
925
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
926
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
927
|
+
string = &_Py_ID(alias);
|
|
928
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
929
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
930
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
931
|
+
string = &_Py_ID(align);
|
|
932
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
933
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
934
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
935
|
+
string = &_Py_ID(all);
|
|
936
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
937
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
938
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
939
|
+
string = &_Py_ID(all_threads);
|
|
940
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
941
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
942
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
943
|
+
string = &_Py_ID(allow_code);
|
|
944
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
945
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
946
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
947
|
+
string = &_Py_ID(any);
|
|
948
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
949
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
950
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
951
|
+
string = &_Py_ID(append);
|
|
952
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
953
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
954
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
955
|
+
string = &_Py_ID(arg);
|
|
956
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
957
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
958
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
959
|
+
string = &_Py_ID(argdefs);
|
|
960
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
961
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
962
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
963
|
+
string = &_Py_ID(args);
|
|
964
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
965
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
966
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
967
|
+
string = &_Py_ID(arguments);
|
|
968
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
969
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
970
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
971
|
+
string = &_Py_ID(argv);
|
|
972
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
973
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
974
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
975
|
+
string = &_Py_ID(as_integer_ratio);
|
|
976
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
977
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
978
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
979
|
+
string = &_Py_ID(asend);
|
|
980
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
981
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
982
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
983
|
+
string = &_Py_ID(ast);
|
|
984
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
985
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
986
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
987
|
+
string = &_Py_ID(athrow);
|
|
988
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
989
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
990
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
991
|
+
string = &_Py_ID(attribute);
|
|
992
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
993
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
994
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
995
|
+
string = &_Py_ID(authorizer_callback);
|
|
996
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
997
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
998
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
999
|
+
string = &_Py_ID(autocommit);
|
|
1000
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1001
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1002
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1003
|
+
string = &_Py_ID(backtick);
|
|
1004
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1005
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1006
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1007
|
+
string = &_Py_ID(base);
|
|
1008
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1009
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1010
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1011
|
+
string = &_Py_ID(before);
|
|
1012
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1013
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1014
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1015
|
+
string = &_Py_ID(big);
|
|
1016
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1017
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1018
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1019
|
+
string = &_Py_ID(binary_form);
|
|
1020
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1021
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1022
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1023
|
+
string = &_Py_ID(bit_offset);
|
|
1024
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1025
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1026
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1027
|
+
string = &_Py_ID(bit_size);
|
|
1028
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1029
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1030
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1031
|
+
string = &_Py_ID(block);
|
|
1032
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1033
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1034
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1035
|
+
string = &_Py_ID(bound);
|
|
1036
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1037
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1038
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1039
|
+
string = &_Py_ID(buffer);
|
|
1040
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1041
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1042
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1043
|
+
string = &_Py_ID(buffer_callback);
|
|
1044
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1045
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1046
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1047
|
+
string = &_Py_ID(buffer_size);
|
|
1048
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1049
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1050
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1051
|
+
string = &_Py_ID(buffering);
|
|
1052
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1053
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1054
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1055
|
+
string = &_Py_ID(buffers);
|
|
1056
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1057
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1058
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1059
|
+
string = &_Py_ID(bufsize);
|
|
1060
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1061
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1062
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1063
|
+
string = &_Py_ID(builtins);
|
|
1064
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1065
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1066
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1067
|
+
string = &_Py_ID(byte_offset);
|
|
1068
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1069
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1070
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1071
|
+
string = &_Py_ID(byte_size);
|
|
1072
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1073
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1074
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1075
|
+
string = &_Py_ID(byteorder);
|
|
1076
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1077
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1078
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1079
|
+
string = &_Py_ID(bytes);
|
|
1080
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1081
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1082
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1083
|
+
string = &_Py_ID(bytes_per_sep);
|
|
1084
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1085
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1086
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1087
|
+
string = &_Py_ID(c_call);
|
|
1088
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1089
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1090
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1091
|
+
string = &_Py_ID(c_exception);
|
|
1092
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1093
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1094
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1095
|
+
string = &_Py_ID(c_parameter_type);
|
|
1096
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1097
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1098
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1099
|
+
string = &_Py_ID(c_return);
|
|
1100
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1101
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1102
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1103
|
+
string = &_Py_ID(cached_datetime_module);
|
|
1104
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1105
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1106
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1107
|
+
string = &_Py_ID(cached_statements);
|
|
1108
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1109
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1110
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1111
|
+
string = &_Py_ID(cadata);
|
|
1112
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1113
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1114
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1115
|
+
string = &_Py_ID(cafile);
|
|
1116
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1117
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1118
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1119
|
+
string = &_Py_ID(call);
|
|
1120
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1121
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1122
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1123
|
+
string = &_Py_ID(call_exception_handler);
|
|
1124
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1125
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1126
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1127
|
+
string = &_Py_ID(call_soon);
|
|
1128
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1129
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1130
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1131
|
+
string = &_Py_ID(callback);
|
|
1132
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1133
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1134
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1135
|
+
string = &_Py_ID(cancel);
|
|
1136
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1137
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1138
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1139
|
+
string = &_Py_ID(capath);
|
|
1140
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1141
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1142
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1143
|
+
string = &_Py_ID(category);
|
|
1144
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1145
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1146
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1147
|
+
string = &_Py_ID(cb_type);
|
|
1148
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1149
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1150
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1151
|
+
string = &_Py_ID(certfile);
|
|
1152
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1153
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1154
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1155
|
+
string = &_Py_ID(check_same_thread);
|
|
1156
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1157
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1158
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1159
|
+
string = &_Py_ID(clear);
|
|
1160
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1161
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1162
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1163
|
+
string = &_Py_ID(close);
|
|
1164
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1165
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1166
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1167
|
+
string = &_Py_ID(closed);
|
|
1168
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1169
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1170
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1171
|
+
string = &_Py_ID(closefd);
|
|
1172
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1173
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1174
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1175
|
+
string = &_Py_ID(closure);
|
|
1176
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1177
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1178
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1179
|
+
string = &_Py_ID(co_argcount);
|
|
1180
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1181
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1182
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1183
|
+
string = &_Py_ID(co_cellvars);
|
|
1184
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1185
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1186
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1187
|
+
string = &_Py_ID(co_code);
|
|
1188
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1189
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1190
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1191
|
+
string = &_Py_ID(co_consts);
|
|
1192
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1193
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1194
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1195
|
+
string = &_Py_ID(co_exceptiontable);
|
|
1196
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1197
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1198
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1199
|
+
string = &_Py_ID(co_filename);
|
|
1200
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1201
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1202
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1203
|
+
string = &_Py_ID(co_firstlineno);
|
|
1204
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1205
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1206
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1207
|
+
string = &_Py_ID(co_flags);
|
|
1208
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1209
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1210
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1211
|
+
string = &_Py_ID(co_freevars);
|
|
1212
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1213
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1214
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1215
|
+
string = &_Py_ID(co_kwonlyargcount);
|
|
1216
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1217
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1218
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1219
|
+
string = &_Py_ID(co_linetable);
|
|
1220
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1221
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1222
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1223
|
+
string = &_Py_ID(co_name);
|
|
1224
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1225
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1226
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1227
|
+
string = &_Py_ID(co_names);
|
|
1228
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1229
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1230
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1231
|
+
string = &_Py_ID(co_nlocals);
|
|
1232
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1233
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1234
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1235
|
+
string = &_Py_ID(co_posonlyargcount);
|
|
1236
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1237
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1238
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1239
|
+
string = &_Py_ID(co_qualname);
|
|
1240
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1241
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1242
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1243
|
+
string = &_Py_ID(co_stacksize);
|
|
1244
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1245
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1246
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1247
|
+
string = &_Py_ID(co_varnames);
|
|
1248
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1249
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1250
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1251
|
+
string = &_Py_ID(code);
|
|
1252
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1253
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1254
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1255
|
+
string = &_Py_ID(col_offset);
|
|
1256
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1257
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1258
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1259
|
+
string = &_Py_ID(command);
|
|
1260
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1261
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1262
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1263
|
+
string = &_Py_ID(comment_factory);
|
|
1264
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1265
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1266
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1267
|
+
string = &_Py_ID(compile_mode);
|
|
1268
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1269
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1270
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1271
|
+
string = &_Py_ID(consts);
|
|
1272
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1273
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1274
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1275
|
+
string = &_Py_ID(context);
|
|
1276
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1277
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1278
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1279
|
+
string = &_Py_ID(contravariant);
|
|
1280
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1281
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1282
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1283
|
+
string = &_Py_ID(conversion);
|
|
1284
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1285
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1286
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1287
|
+
string = &_Py_ID(cookie);
|
|
1288
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1289
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1290
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1291
|
+
string = &_Py_ID(copy);
|
|
1292
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1293
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1294
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1295
|
+
string = &_Py_ID(copyreg);
|
|
1296
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1297
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1298
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1299
|
+
string = &_Py_ID(coro);
|
|
1300
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1301
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1302
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1303
|
+
string = &_Py_ID(count);
|
|
1304
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1305
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1306
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1307
|
+
string = &_Py_ID(covariant);
|
|
1308
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1309
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1310
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1311
|
+
string = &_Py_ID(cwd);
|
|
1312
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1313
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1314
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1315
|
+
string = &_Py_ID(d_parameter_type);
|
|
1316
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1317
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1318
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1319
|
+
string = &_Py_ID(data);
|
|
1320
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1321
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1322
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1323
|
+
string = &_Py_ID(database);
|
|
1324
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1325
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1326
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1327
|
+
string = &_Py_ID(day);
|
|
1328
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1329
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1330
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1331
|
+
string = &_Py_ID(debug);
|
|
1332
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1333
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1334
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1335
|
+
string = &_Py_ID(decode);
|
|
1336
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1337
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1338
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1339
|
+
string = &_Py_ID(decoder);
|
|
1340
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1341
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1342
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1343
|
+
string = &_Py_ID(default);
|
|
1344
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1345
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1346
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1347
|
+
string = &_Py_ID(defaultaction);
|
|
1348
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1349
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1350
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1351
|
+
string = &_Py_ID(delete);
|
|
1352
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1353
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1354
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1355
|
+
string = &_Py_ID(depth);
|
|
1356
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1357
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1358
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1359
|
+
string = &_Py_ID(desired_access);
|
|
1360
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1361
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1362
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1363
|
+
string = &_Py_ID(detect_types);
|
|
1364
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1365
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1366
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1367
|
+
string = &_Py_ID(deterministic);
|
|
1368
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1369
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1370
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1371
|
+
string = &_Py_ID(device);
|
|
1372
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1373
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1374
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1375
|
+
string = &_Py_ID(dict);
|
|
1376
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1377
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1378
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1379
|
+
string = &_Py_ID(dictcomp);
|
|
1380
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1381
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1382
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1383
|
+
string = &_Py_ID(difference_update);
|
|
1384
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1385
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1386
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1387
|
+
string = &_Py_ID(digest);
|
|
1388
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1389
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1390
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1391
|
+
string = &_Py_ID(digest_size);
|
|
1392
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1393
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1394
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1395
|
+
string = &_Py_ID(digestmod);
|
|
1396
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1397
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1398
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1399
|
+
string = &_Py_ID(dir_fd);
|
|
1400
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1401
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1402
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1403
|
+
string = &_Py_ID(discard);
|
|
1404
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1405
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1406
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1407
|
+
string = &_Py_ID(dispatch_table);
|
|
1408
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1409
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1410
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1411
|
+
string = &_Py_ID(displayhook);
|
|
1412
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1413
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1414
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1415
|
+
string = &_Py_ID(dklen);
|
|
1416
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1417
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1418
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1419
|
+
string = &_Py_ID(doc);
|
|
1420
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1421
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1422
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1423
|
+
string = &_Py_ID(done);
|
|
1424
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1425
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1426
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1427
|
+
string = &_Py_ID(dont_inherit);
|
|
1428
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1429
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1430
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1431
|
+
string = &_Py_ID(dst);
|
|
1432
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1433
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1434
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1435
|
+
string = &_Py_ID(dst_dir_fd);
|
|
1436
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1437
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1438
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1439
|
+
string = &_Py_ID(eager_start);
|
|
1440
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1441
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1442
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1443
|
+
string = &_Py_ID(effective_ids);
|
|
1444
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1445
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1446
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1447
|
+
string = &_Py_ID(element_factory);
|
|
1448
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1449
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1450
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1451
|
+
string = &_Py_ID(encode);
|
|
1452
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1453
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1454
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1455
|
+
string = &_Py_ID(encoding);
|
|
1456
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1457
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1458
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1459
|
+
string = &_Py_ID(end);
|
|
1460
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1461
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1462
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1463
|
+
string = &_Py_ID(end_col_offset);
|
|
1464
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1465
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1466
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1467
|
+
string = &_Py_ID(end_lineno);
|
|
1468
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1469
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1470
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1471
|
+
string = &_Py_ID(end_offset);
|
|
1472
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1473
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1474
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1475
|
+
string = &_Py_ID(endpos);
|
|
1476
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1477
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1478
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1479
|
+
string = &_Py_ID(entrypoint);
|
|
1480
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1481
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1482
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1483
|
+
string = &_Py_ID(env);
|
|
1484
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1485
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1486
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1487
|
+
string = &_Py_ID(errors);
|
|
1488
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1489
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1490
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1491
|
+
string = &_Py_ID(event);
|
|
1492
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1493
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1494
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1495
|
+
string = &_Py_ID(eventmask);
|
|
1496
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1497
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1498
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1499
|
+
string = &_Py_ID(exc_type);
|
|
1500
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1501
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1502
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1503
|
+
string = &_Py_ID(exc_value);
|
|
1504
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1505
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1506
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1507
|
+
string = &_Py_ID(excepthook);
|
|
1508
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1509
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1510
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1511
|
+
string = &_Py_ID(exception);
|
|
1512
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1513
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1514
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1515
|
+
string = &_Py_ID(existing_file_name);
|
|
1516
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1517
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1518
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1519
|
+
string = &_Py_ID(exp);
|
|
1520
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1521
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1522
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1523
|
+
string = &_Py_ID(expression);
|
|
1524
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1525
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1526
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1527
|
+
string = &_Py_ID(extend);
|
|
1528
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1529
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1530
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1531
|
+
string = &_Py_ID(extra_tokens);
|
|
1532
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1533
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1534
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1535
|
+
string = &_Py_ID(facility);
|
|
1536
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1537
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1538
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1539
|
+
string = &_Py_ID(factory);
|
|
1540
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1541
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1542
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1543
|
+
string = &_Py_ID(false);
|
|
1544
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1545
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1546
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1547
|
+
string = &_Py_ID(family);
|
|
1548
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1549
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1550
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1551
|
+
string = &_Py_ID(fanout);
|
|
1552
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1553
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1554
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1555
|
+
string = &_Py_ID(fd);
|
|
1556
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1557
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1558
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1559
|
+
string = &_Py_ID(fd2);
|
|
1560
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1561
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1562
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1563
|
+
string = &_Py_ID(fdel);
|
|
1564
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1565
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1566
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1567
|
+
string = &_Py_ID(fget);
|
|
1568
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1569
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1570
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1571
|
+
string = &_Py_ID(fields);
|
|
1572
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1573
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1574
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1575
|
+
string = &_Py_ID(file);
|
|
1576
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1577
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1578
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1579
|
+
string = &_Py_ID(file_actions);
|
|
1580
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1581
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1582
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1583
|
+
string = &_Py_ID(filename);
|
|
1584
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1585
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1586
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1587
|
+
string = &_Py_ID(fileno);
|
|
1588
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1589
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1590
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1591
|
+
string = &_Py_ID(filepath);
|
|
1592
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1593
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1594
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1595
|
+
string = &_Py_ID(fillvalue);
|
|
1596
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1597
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1598
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1599
|
+
string = &_Py_ID(filter);
|
|
1600
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1601
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1602
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1603
|
+
string = &_Py_ID(filters);
|
|
1604
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1605
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1606
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1607
|
+
string = &_Py_ID(final);
|
|
1608
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1609
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1610
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1611
|
+
string = &_Py_ID(find_class);
|
|
1612
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1613
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1614
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1615
|
+
string = &_Py_ID(fix_imports);
|
|
1616
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1617
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1618
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1619
|
+
string = &_Py_ID(flags);
|
|
1620
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1621
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1622
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1623
|
+
string = &_Py_ID(flush);
|
|
1624
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1625
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1626
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1627
|
+
string = &_Py_ID(fold);
|
|
1628
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1629
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1630
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1631
|
+
string = &_Py_ID(follow_symlinks);
|
|
1632
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1633
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1634
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1635
|
+
string = &_Py_ID(format);
|
|
1636
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1637
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1638
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1639
|
+
string = &_Py_ID(format_spec);
|
|
1640
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1641
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1642
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1643
|
+
string = &_Py_ID(frame_buffer);
|
|
1644
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1645
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1646
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1647
|
+
string = &_Py_ID(from_param);
|
|
1648
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1649
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1650
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1651
|
+
string = &_Py_ID(fromlist);
|
|
1652
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1653
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1654
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1655
|
+
string = &_Py_ID(fromtimestamp);
|
|
1656
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1657
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1658
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1659
|
+
string = &_Py_ID(fromutc);
|
|
1660
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1661
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1662
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1663
|
+
string = &_Py_ID(fset);
|
|
1664
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1665
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1666
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1667
|
+
string = &_Py_ID(func);
|
|
1668
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1669
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1670
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1671
|
+
string = &_Py_ID(future);
|
|
1672
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1673
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1674
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1675
|
+
string = &_Py_ID(generation);
|
|
1676
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1677
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1678
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1679
|
+
string = &_Py_ID(genexpr);
|
|
1680
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1681
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1682
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1683
|
+
string = &_Py_ID(get);
|
|
1684
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1685
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1686
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1687
|
+
string = &_Py_ID(get_debug);
|
|
1688
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1689
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1690
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1691
|
+
string = &_Py_ID(get_event_loop);
|
|
1692
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1693
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1694
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1695
|
+
string = &_Py_ID(get_loop);
|
|
1696
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1697
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1698
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1699
|
+
string = &_Py_ID(get_source);
|
|
1700
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1701
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1702
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1703
|
+
string = &_Py_ID(getattr);
|
|
1704
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1705
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1706
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1707
|
+
string = &_Py_ID(getstate);
|
|
1708
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1709
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1710
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1711
|
+
string = &_Py_ID(gid);
|
|
1712
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1713
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1714
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1715
|
+
string = &_Py_ID(globals);
|
|
1716
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1717
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1718
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1719
|
+
string = &_Py_ID(groupindex);
|
|
1720
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1721
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1722
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1723
|
+
string = &_Py_ID(groups);
|
|
1724
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1725
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1726
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1727
|
+
string = &_Py_ID(handle);
|
|
1728
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1729
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1730
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1731
|
+
string = &_Py_ID(handle_seq);
|
|
1732
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1733
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1734
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1735
|
+
string = &_Py_ID(has_location);
|
|
1736
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1737
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1738
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1739
|
+
string = &_Py_ID(hash_name);
|
|
1740
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1741
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1742
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1743
|
+
string = &_Py_ID(header);
|
|
1744
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1745
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1746
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1747
|
+
string = &_Py_ID(headers);
|
|
1748
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1749
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1750
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1751
|
+
string = &_Py_ID(hi);
|
|
1752
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1753
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1754
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1755
|
+
string = &_Py_ID(hook);
|
|
1756
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1757
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1758
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1759
|
+
string = &_Py_ID(hour);
|
|
1760
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1761
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1762
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1763
|
+
string = &_Py_ID(id);
|
|
1764
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1765
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1766
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1767
|
+
string = &_Py_ID(ident);
|
|
1768
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1769
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1770
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1771
|
+
string = &_Py_ID(identity_hint);
|
|
1772
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1773
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1774
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1775
|
+
string = &_Py_ID(ignore);
|
|
1776
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1777
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1778
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1779
|
+
string = &_Py_ID(imag);
|
|
1780
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1781
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1782
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1783
|
+
string = &_Py_ID(importlib);
|
|
1784
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1785
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1786
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1787
|
+
string = &_Py_ID(in_fd);
|
|
1788
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1789
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1790
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1791
|
+
string = &_Py_ID(incoming);
|
|
1792
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1793
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1794
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1795
|
+
string = &_Py_ID(index);
|
|
1796
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1797
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1798
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1799
|
+
string = &_Py_ID(indexgroup);
|
|
1800
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1801
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1802
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1803
|
+
string = &_Py_ID(inf);
|
|
1804
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1805
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1806
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1807
|
+
string = &_Py_ID(infer_variance);
|
|
1808
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1809
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1810
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1811
|
+
string = &_Py_ID(inherit_handle);
|
|
1812
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1813
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1814
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1815
|
+
string = &_Py_ID(inheritable);
|
|
1816
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1817
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1818
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1819
|
+
string = &_Py_ID(initial);
|
|
1820
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1821
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1822
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1823
|
+
string = &_Py_ID(initial_bytes);
|
|
1824
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1825
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1826
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1827
|
+
string = &_Py_ID(initial_owner);
|
|
1828
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1829
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1830
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1831
|
+
string = &_Py_ID(initial_state);
|
|
1832
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1833
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1834
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1835
|
+
string = &_Py_ID(initial_value);
|
|
1836
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1837
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1838
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1839
|
+
string = &_Py_ID(initval);
|
|
1840
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1841
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1842
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1843
|
+
string = &_Py_ID(inner_size);
|
|
1844
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1845
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1846
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1847
|
+
string = &_Py_ID(input);
|
|
1848
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1849
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1850
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1851
|
+
string = &_Py_ID(insert_comments);
|
|
1852
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1853
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1854
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1855
|
+
string = &_Py_ID(insert_pis);
|
|
1856
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1857
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1858
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1859
|
+
string = &_Py_ID(instructions);
|
|
1860
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1861
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1862
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1863
|
+
string = &_Py_ID(intern);
|
|
1864
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1865
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1866
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1867
|
+
string = &_Py_ID(intersection);
|
|
1868
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1869
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1870
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1871
|
+
string = &_Py_ID(interval);
|
|
1872
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1873
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1874
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1875
|
+
string = &_Py_ID(io);
|
|
1876
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1877
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1878
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1879
|
+
string = &_Py_ID(is_compress);
|
|
1880
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1881
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1882
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1883
|
+
string = &_Py_ID(is_raw);
|
|
1884
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1885
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1886
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1887
|
+
string = &_Py_ID(is_running);
|
|
1888
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1889
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1890
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1891
|
+
string = &_Py_ID(is_struct);
|
|
1892
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1893
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1894
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1895
|
+
string = &_Py_ID(isatty);
|
|
1896
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1897
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1898
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1899
|
+
string = &_Py_ID(isinstance);
|
|
1900
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1901
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1902
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1903
|
+
string = &_Py_ID(isoformat);
|
|
1904
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1905
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1906
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1907
|
+
string = &_Py_ID(isolation_level);
|
|
1908
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1909
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1910
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1911
|
+
string = &_Py_ID(istext);
|
|
1912
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1913
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1914
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1915
|
+
string = &_Py_ID(item);
|
|
1916
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1917
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1918
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1919
|
+
string = &_Py_ID(items);
|
|
1920
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1921
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1922
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1923
|
+
string = &_Py_ID(iter);
|
|
1924
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1925
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1926
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1927
|
+
string = &_Py_ID(iterable);
|
|
1928
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1929
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1930
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1931
|
+
string = &_Py_ID(iterations);
|
|
1932
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1933
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1934
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1935
|
+
string = &_Py_ID(join);
|
|
1936
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1937
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1938
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1939
|
+
string = &_Py_ID(jump);
|
|
1940
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1941
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1942
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1943
|
+
string = &_Py_ID(keepends);
|
|
1944
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1945
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1946
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1947
|
+
string = &_Py_ID(key);
|
|
1948
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1949
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1950
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1951
|
+
string = &_Py_ID(keyfile);
|
|
1952
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1953
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1954
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1955
|
+
string = &_Py_ID(keys);
|
|
1956
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1957
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1958
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1959
|
+
string = &_Py_ID(kind);
|
|
1960
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1961
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1962
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1963
|
+
string = &_Py_ID(kw);
|
|
1964
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1965
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1966
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1967
|
+
string = &_Py_ID(kw1);
|
|
1968
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1969
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1970
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1971
|
+
string = &_Py_ID(kw2);
|
|
1972
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1973
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1974
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1975
|
+
string = &_Py_ID(kwdefaults);
|
|
1976
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1977
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1978
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1979
|
+
string = &_Py_ID(label);
|
|
1980
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1981
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1982
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1983
|
+
string = &_Py_ID(lambda);
|
|
1984
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1985
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1986
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1987
|
+
string = &_Py_ID(last);
|
|
1988
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1989
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1990
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1991
|
+
string = &_Py_ID(last_exc);
|
|
1992
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1993
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1994
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1995
|
+
string = &_Py_ID(last_node);
|
|
1996
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
1997
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
1998
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
1999
|
+
string = &_Py_ID(last_traceback);
|
|
2000
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2001
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2002
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2003
|
+
string = &_Py_ID(last_type);
|
|
2004
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2005
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2006
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2007
|
+
string = &_Py_ID(last_value);
|
|
2008
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2009
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2010
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2011
|
+
string = &_Py_ID(latin1);
|
|
2012
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2013
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2014
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2015
|
+
string = &_Py_ID(leaf_size);
|
|
2016
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2017
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2018
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2019
|
+
string = &_Py_ID(len);
|
|
2020
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2021
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2022
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2023
|
+
string = &_Py_ID(length);
|
|
2024
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2025
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2026
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2027
|
+
string = &_Py_ID(level);
|
|
2028
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2029
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2030
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2031
|
+
string = &_Py_ID(limit);
|
|
2032
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2033
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2034
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2035
|
+
string = &_Py_ID(line);
|
|
2036
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2037
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2038
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2039
|
+
string = &_Py_ID(line_buffering);
|
|
2040
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2041
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2042
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2043
|
+
string = &_Py_ID(lineno);
|
|
2044
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2045
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2046
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2047
|
+
string = &_Py_ID(listcomp);
|
|
2048
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2049
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2050
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2051
|
+
string = &_Py_ID(little);
|
|
2052
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2053
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2054
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2055
|
+
string = &_Py_ID(lo);
|
|
2056
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2057
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2058
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2059
|
+
string = &_Py_ID(locale);
|
|
2060
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2061
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2062
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2063
|
+
string = &_Py_ID(locals);
|
|
2064
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2065
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2066
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2067
|
+
string = &_Py_ID(logoption);
|
|
2068
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2069
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2070
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2071
|
+
string = &_Py_ID(loop);
|
|
2072
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2073
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2074
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2075
|
+
string = &_Py_ID(manual_reset);
|
|
2076
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2077
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2078
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2079
|
+
string = &_Py_ID(mapping);
|
|
2080
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2081
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2082
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2083
|
+
string = &_Py_ID(match);
|
|
2084
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2085
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2086
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2087
|
+
string = &_Py_ID(max_length);
|
|
2088
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2089
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2090
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2091
|
+
string = &_Py_ID(maxdigits);
|
|
2092
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2093
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2094
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2095
|
+
string = &_Py_ID(maxevents);
|
|
2096
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2097
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2098
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2099
|
+
string = &_Py_ID(maxlen);
|
|
2100
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2101
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2102
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2103
|
+
string = &_Py_ID(maxmem);
|
|
2104
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2105
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2106
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2107
|
+
string = &_Py_ID(maxsplit);
|
|
2108
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2109
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2110
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2111
|
+
string = &_Py_ID(maxvalue);
|
|
2112
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2113
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2114
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2115
|
+
string = &_Py_ID(memLevel);
|
|
2116
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2117
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2118
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2119
|
+
string = &_Py_ID(memlimit);
|
|
2120
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2121
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2122
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2123
|
+
string = &_Py_ID(message);
|
|
2124
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2125
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2126
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2127
|
+
string = &_Py_ID(metaclass);
|
|
2128
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2129
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2130
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2131
|
+
string = &_Py_ID(metadata);
|
|
2132
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2133
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2134
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2135
|
+
string = &_Py_ID(method);
|
|
2136
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2137
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2138
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2139
|
+
string = &_Py_ID(microsecond);
|
|
2140
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2141
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2142
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2143
|
+
string = &_Py_ID(milliseconds);
|
|
2144
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2145
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2146
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2147
|
+
string = &_Py_ID(minute);
|
|
2148
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2149
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2150
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2151
|
+
string = &_Py_ID(mod);
|
|
2152
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2153
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2154
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2155
|
+
string = &_Py_ID(mode);
|
|
2156
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2157
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2158
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2159
|
+
string = &_Py_ID(module);
|
|
2160
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2161
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2162
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2163
|
+
string = &_Py_ID(module_globals);
|
|
2164
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2165
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2166
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2167
|
+
string = &_Py_ID(modules);
|
|
2168
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2169
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2170
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2171
|
+
string = &_Py_ID(month);
|
|
2172
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2173
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2174
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2175
|
+
string = &_Py_ID(mro);
|
|
2176
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2177
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2178
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2179
|
+
string = &_Py_ID(msg);
|
|
2180
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2181
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2182
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2183
|
+
string = &_Py_ID(mutex);
|
|
2184
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2185
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2186
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2187
|
+
string = &_Py_ID(mycmp);
|
|
2188
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2189
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2190
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2191
|
+
string = &_Py_ID(n_arg);
|
|
2192
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2193
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2194
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2195
|
+
string = &_Py_ID(n_fields);
|
|
2196
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2197
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2198
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2199
|
+
string = &_Py_ID(n_sequence_fields);
|
|
2200
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2201
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2202
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2203
|
+
string = &_Py_ID(n_unnamed_fields);
|
|
2204
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2205
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2206
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2207
|
+
string = &_Py_ID(name);
|
|
2208
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2209
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2210
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2211
|
+
string = &_Py_ID(name_from);
|
|
2212
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2213
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2214
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2215
|
+
string = &_Py_ID(namespace_separator);
|
|
2216
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2217
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2218
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2219
|
+
string = &_Py_ID(namespaces);
|
|
2220
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2221
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2222
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2223
|
+
string = &_Py_ID(narg);
|
|
2224
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2225
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2226
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2227
|
+
string = &_Py_ID(ndigits);
|
|
2228
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2229
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2230
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2231
|
+
string = &_Py_ID(nested);
|
|
2232
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2233
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2234
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2235
|
+
string = &_Py_ID(new_file_name);
|
|
2236
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2237
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2238
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2239
|
+
string = &_Py_ID(new_limit);
|
|
2240
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2241
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2242
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2243
|
+
string = &_Py_ID(newline);
|
|
2244
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2245
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2246
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2247
|
+
string = &_Py_ID(newlines);
|
|
2248
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2249
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2250
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2251
|
+
string = &_Py_ID(next);
|
|
2252
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2253
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2254
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2255
|
+
string = &_Py_ID(nlocals);
|
|
2256
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2257
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2258
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2259
|
+
string = &_Py_ID(node_depth);
|
|
2260
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2261
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2262
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2263
|
+
string = &_Py_ID(node_offset);
|
|
2264
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2265
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2266
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2267
|
+
string = &_Py_ID(ns);
|
|
2268
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2269
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2270
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2271
|
+
string = &_Py_ID(nstype);
|
|
2272
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2273
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2274
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2275
|
+
string = &_Py_ID(nt);
|
|
2276
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2277
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2278
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2279
|
+
string = &_Py_ID(null);
|
|
2280
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2281
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2282
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2283
|
+
string = &_Py_ID(number);
|
|
2284
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2285
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2286
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2287
|
+
string = &_Py_ID(obj);
|
|
2288
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2289
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2290
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2291
|
+
string = &_Py_ID(object);
|
|
2292
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2293
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2294
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2295
|
+
string = &_Py_ID(offset);
|
|
2296
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2297
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2298
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2299
|
+
string = &_Py_ID(offset_dst);
|
|
2300
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2301
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2302
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2303
|
+
string = &_Py_ID(offset_src);
|
|
2304
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2305
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2306
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2307
|
+
string = &_Py_ID(on_type_read);
|
|
2308
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2309
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2310
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2311
|
+
string = &_Py_ID(onceregistry);
|
|
2312
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2313
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2314
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2315
|
+
string = &_Py_ID(only_active_thread);
|
|
2316
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2317
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2318
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2319
|
+
string = &_Py_ID(only_keys);
|
|
2320
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2321
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2322
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2323
|
+
string = &_Py_ID(oparg);
|
|
2324
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2325
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2326
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2327
|
+
string = &_Py_ID(opcode);
|
|
2328
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2329
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2330
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2331
|
+
string = &_Py_ID(open);
|
|
2332
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2333
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2334
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2335
|
+
string = &_Py_ID(opener);
|
|
2336
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2337
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2338
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2339
|
+
string = &_Py_ID(operation);
|
|
2340
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2341
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2342
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2343
|
+
string = &_Py_ID(optimize);
|
|
2344
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2345
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2346
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2347
|
+
string = &_Py_ID(options);
|
|
2348
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2349
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2350
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2351
|
+
string = &_Py_ID(order);
|
|
2352
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2353
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2354
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2355
|
+
string = &_Py_ID(origin);
|
|
2356
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2357
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2358
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2359
|
+
string = &_Py_ID(out_fd);
|
|
2360
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2361
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2362
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2363
|
+
string = &_Py_ID(outgoing);
|
|
2364
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2365
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2366
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2367
|
+
string = &_Py_ID(outpath);
|
|
2368
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2369
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2370
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2371
|
+
string = &_Py_ID(overlapped);
|
|
2372
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2373
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2374
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2375
|
+
string = &_Py_ID(owner);
|
|
2376
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2377
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2378
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2379
|
+
string = &_Py_ID(pages);
|
|
2380
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2381
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2382
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2383
|
+
string = &_Py_ID(parameter);
|
|
2384
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2385
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2386
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2387
|
+
string = &_Py_ID(parent);
|
|
2388
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2389
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2390
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2391
|
+
string = &_Py_ID(password);
|
|
2392
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2393
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2394
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2395
|
+
string = &_Py_ID(path);
|
|
2396
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2397
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2398
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2399
|
+
string = &_Py_ID(pattern);
|
|
2400
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2401
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2402
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2403
|
+
string = &_Py_ID(peek);
|
|
2404
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2405
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2406
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2407
|
+
string = &_Py_ID(persistent_id);
|
|
2408
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2409
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2410
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2411
|
+
string = &_Py_ID(persistent_load);
|
|
2412
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2413
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2414
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2415
|
+
string = &_Py_ID(person);
|
|
2416
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2417
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2418
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2419
|
+
string = &_Py_ID(pi_factory);
|
|
2420
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2421
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2422
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2423
|
+
string = &_Py_ID(pid);
|
|
2424
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2425
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2426
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2427
|
+
string = &_Py_ID(policy);
|
|
2428
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2429
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2430
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2431
|
+
string = &_Py_ID(pos);
|
|
2432
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2433
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2434
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2435
|
+
string = &_Py_ID(pos1);
|
|
2436
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2437
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2438
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2439
|
+
string = &_Py_ID(pos2);
|
|
2440
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2441
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2442
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2443
|
+
string = &_Py_ID(posix);
|
|
2444
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2445
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2446
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2447
|
+
string = &_Py_ID(print_file_and_line);
|
|
2448
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2449
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2450
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2451
|
+
string = &_Py_ID(priority);
|
|
2452
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2453
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2454
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2455
|
+
string = &_Py_ID(progress);
|
|
2456
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2457
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2458
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2459
|
+
string = &_Py_ID(progress_handler);
|
|
2460
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2461
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2462
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2463
|
+
string = &_Py_ID(progress_routine);
|
|
2464
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2465
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2466
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2467
|
+
string = &_Py_ID(proto);
|
|
2468
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2469
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2470
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2471
|
+
string = &_Py_ID(protocol);
|
|
2472
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2473
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2474
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2475
|
+
string = &_Py_ID(ps1);
|
|
2476
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2477
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2478
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2479
|
+
string = &_Py_ID(ps2);
|
|
2480
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2481
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2482
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2483
|
+
string = &_Py_ID(query);
|
|
2484
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2485
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2486
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2487
|
+
string = &_Py_ID(quotetabs);
|
|
2488
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2489
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2490
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2491
|
+
string = &_Py_ID(raw);
|
|
2492
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2493
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2494
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2495
|
+
string = &_Py_ID(read);
|
|
2496
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2497
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2498
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2499
|
+
string = &_Py_ID(read1);
|
|
2500
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2501
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2502
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2503
|
+
string = &_Py_ID(readable);
|
|
2504
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2505
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2506
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2507
|
+
string = &_Py_ID(readall);
|
|
2508
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2509
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2510
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2511
|
+
string = &_Py_ID(readinto);
|
|
2512
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2513
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2514
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2515
|
+
string = &_Py_ID(readinto1);
|
|
2516
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2517
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2518
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2519
|
+
string = &_Py_ID(readline);
|
|
2520
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2521
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2522
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2523
|
+
string = &_Py_ID(readonly);
|
|
2524
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2525
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2526
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2527
|
+
string = &_Py_ID(real);
|
|
2528
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2529
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2530
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2531
|
+
string = &_Py_ID(reducer_override);
|
|
2532
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2533
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2534
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2535
|
+
string = &_Py_ID(registry);
|
|
2536
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2537
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2538
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2539
|
+
string = &_Py_ID(rel_tol);
|
|
2540
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2541
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2542
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2543
|
+
string = &_Py_ID(release);
|
|
2544
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2545
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2546
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2547
|
+
string = &_Py_ID(reload);
|
|
2548
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2549
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2550
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2551
|
+
string = &_Py_ID(repl);
|
|
2552
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2553
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2554
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2555
|
+
string = &_Py_ID(replace);
|
|
2556
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2557
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2558
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2559
|
+
string = &_Py_ID(reserved);
|
|
2560
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2561
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2562
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2563
|
+
string = &_Py_ID(reset);
|
|
2564
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2565
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2566
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2567
|
+
string = &_Py_ID(resetids);
|
|
2568
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2569
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2570
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2571
|
+
string = &_Py_ID(return);
|
|
2572
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2573
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2574
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2575
|
+
string = &_Py_ID(reverse);
|
|
2576
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2577
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2578
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2579
|
+
string = &_Py_ID(reversed);
|
|
2580
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2581
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2582
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2583
|
+
string = &_Py_ID(salt);
|
|
2584
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2585
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2586
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2587
|
+
string = &_Py_ID(sched_priority);
|
|
2588
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2589
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2590
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2591
|
+
string = &_Py_ID(scheduler);
|
|
2592
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2593
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2594
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2595
|
+
string = &_Py_ID(script);
|
|
2596
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2597
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2598
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2599
|
+
string = &_Py_ID(second);
|
|
2600
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2601
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2602
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2603
|
+
string = &_Py_ID(security_attributes);
|
|
2604
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2605
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2606
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2607
|
+
string = &_Py_ID(seek);
|
|
2608
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2609
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2610
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2611
|
+
string = &_Py_ID(seekable);
|
|
2612
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2613
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2614
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2615
|
+
string = &_Py_ID(selectors);
|
|
2616
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2617
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2618
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2619
|
+
string = &_Py_ID(self);
|
|
2620
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2621
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2622
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2623
|
+
string = &_Py_ID(send);
|
|
2624
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2625
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2626
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2627
|
+
string = &_Py_ID(sep);
|
|
2628
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2629
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2630
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2631
|
+
string = &_Py_ID(sequence);
|
|
2632
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2633
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2634
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2635
|
+
string = &_Py_ID(server_hostname);
|
|
2636
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2637
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2638
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2639
|
+
string = &_Py_ID(server_side);
|
|
2640
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2641
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2642
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2643
|
+
string = &_Py_ID(session);
|
|
2644
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2645
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2646
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2647
|
+
string = &_Py_ID(setcomp);
|
|
2648
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2649
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2650
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2651
|
+
string = &_Py_ID(setpgroup);
|
|
2652
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2653
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2654
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2655
|
+
string = &_Py_ID(setsid);
|
|
2656
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2657
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2658
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2659
|
+
string = &_Py_ID(setsigdef);
|
|
2660
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2661
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2662
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2663
|
+
string = &_Py_ID(setsigmask);
|
|
2664
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2665
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2666
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2667
|
+
string = &_Py_ID(setstate);
|
|
2668
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2669
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2670
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2671
|
+
string = &_Py_ID(shape);
|
|
2672
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2673
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2674
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2675
|
+
string = &_Py_ID(show_cmd);
|
|
2676
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2677
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2678
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2679
|
+
string = &_Py_ID(signed);
|
|
2680
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2681
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2682
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2683
|
+
string = &_Py_ID(size);
|
|
2684
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2685
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2686
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2687
|
+
string = &_Py_ID(sizehint);
|
|
2688
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2689
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2690
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2691
|
+
string = &_Py_ID(skip_file_prefixes);
|
|
2692
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2693
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2694
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2695
|
+
string = &_Py_ID(sleep);
|
|
2696
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2697
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2698
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2699
|
+
string = &_Py_ID(sock);
|
|
2700
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2701
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2702
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2703
|
+
string = &_Py_ID(sort);
|
|
2704
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2705
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2706
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2707
|
+
string = &_Py_ID(source);
|
|
2708
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2709
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2710
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2711
|
+
string = &_Py_ID(source_traceback);
|
|
2712
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2713
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2714
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2715
|
+
string = &_Py_ID(spam);
|
|
2716
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2717
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2718
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2719
|
+
string = &_Py_ID(src);
|
|
2720
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2721
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2722
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2723
|
+
string = &_Py_ID(src_dir_fd);
|
|
2724
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2725
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2726
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2727
|
+
string = &_Py_ID(stacklevel);
|
|
2728
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2729
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2730
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2731
|
+
string = &_Py_ID(start);
|
|
2732
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2733
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2734
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2735
|
+
string = &_Py_ID(statement);
|
|
2736
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2737
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2738
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2739
|
+
string = &_Py_ID(status);
|
|
2740
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2741
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2742
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2743
|
+
string = &_Py_ID(stderr);
|
|
2744
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2745
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2746
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2747
|
+
string = &_Py_ID(stdin);
|
|
2748
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2749
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2750
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2751
|
+
string = &_Py_ID(stdout);
|
|
2752
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2753
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2754
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2755
|
+
string = &_Py_ID(step);
|
|
2756
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2757
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2758
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2759
|
+
string = &_Py_ID(steps);
|
|
2760
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2761
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2762
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2763
|
+
string = &_Py_ID(store_name);
|
|
2764
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2765
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2766
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2767
|
+
string = &_Py_ID(strategy);
|
|
2768
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2769
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2770
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2771
|
+
string = &_Py_ID(strftime);
|
|
2772
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2773
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2774
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2775
|
+
string = &_Py_ID(strict);
|
|
2776
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2777
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2778
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2779
|
+
string = &_Py_ID(strict_mode);
|
|
2780
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2781
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2782
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2783
|
+
string = &_Py_ID(string);
|
|
2784
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2785
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2786
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2787
|
+
string = &_Py_ID(sub_key);
|
|
2788
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2789
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2790
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2791
|
+
string = &_Py_ID(subcalls);
|
|
2792
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2793
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2794
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2795
|
+
string = &_Py_ID(symmetric_difference_update);
|
|
2796
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2797
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2798
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2799
|
+
string = &_Py_ID(tabsize);
|
|
2800
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2801
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2802
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2803
|
+
string = &_Py_ID(tag);
|
|
2804
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2805
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2806
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2807
|
+
string = &_Py_ID(target);
|
|
2808
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2809
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2810
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2811
|
+
string = &_Py_ID(target_is_directory);
|
|
2812
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2813
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2814
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2815
|
+
string = &_Py_ID(task);
|
|
2816
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2817
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2818
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2819
|
+
string = &_Py_ID(tb_frame);
|
|
2820
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2821
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2822
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2823
|
+
string = &_Py_ID(tb_lasti);
|
|
2824
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2825
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2826
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2827
|
+
string = &_Py_ID(tb_lineno);
|
|
2828
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2829
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2830
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2831
|
+
string = &_Py_ID(tb_next);
|
|
2832
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2833
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2834
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2835
|
+
string = &_Py_ID(tell);
|
|
2836
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2837
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2838
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2839
|
+
string = &_Py_ID(template);
|
|
2840
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2841
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2842
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2843
|
+
string = &_Py_ID(term);
|
|
2844
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2845
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2846
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2847
|
+
string = &_Py_ID(text);
|
|
2848
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2849
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2850
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2851
|
+
string = &_Py_ID(threading);
|
|
2852
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2853
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2854
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2855
|
+
string = &_Py_ID(throw);
|
|
2856
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2857
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2858
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2859
|
+
string = &_Py_ID(timeout);
|
|
2860
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2861
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2862
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2863
|
+
string = &_Py_ID(timer);
|
|
2864
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2865
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2866
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2867
|
+
string = &_Py_ID(times);
|
|
2868
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2869
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2870
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2871
|
+
string = &_Py_ID(timetuple);
|
|
2872
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2873
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2874
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2875
|
+
string = &_Py_ID(timeunit);
|
|
2876
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2877
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2878
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2879
|
+
string = &_Py_ID(top);
|
|
2880
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2881
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2882
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2883
|
+
string = &_Py_ID(trace_callback);
|
|
2884
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2885
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2886
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2887
|
+
string = &_Py_ID(traceback);
|
|
2888
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2889
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2890
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2891
|
+
string = &_Py_ID(trailers);
|
|
2892
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2893
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2894
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2895
|
+
string = &_Py_ID(translate);
|
|
2896
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2897
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2898
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2899
|
+
string = &_Py_ID(true);
|
|
2900
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2901
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2902
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2903
|
+
string = &_Py_ID(truncate);
|
|
2904
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2905
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2906
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2907
|
+
string = &_Py_ID(twice);
|
|
2908
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2909
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2910
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2911
|
+
string = &_Py_ID(txt);
|
|
2912
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2913
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2914
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2915
|
+
string = &_Py_ID(type);
|
|
2916
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2917
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2918
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2919
|
+
string = &_Py_ID(type_params);
|
|
2920
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2921
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2922
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2923
|
+
string = &_Py_ID(tz);
|
|
2924
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2925
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2926
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2927
|
+
string = &_Py_ID(tzinfo);
|
|
2928
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2929
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2930
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2931
|
+
string = &_Py_ID(tzname);
|
|
2932
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2933
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2934
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2935
|
+
string = &_Py_ID(uid);
|
|
2936
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2937
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2938
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2939
|
+
string = &_Py_ID(unlink);
|
|
2940
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2941
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2942
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2943
|
+
string = &_Py_ID(unraisablehook);
|
|
2944
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2945
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2946
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2947
|
+
string = &_Py_ID(uri);
|
|
2948
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2949
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2950
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2951
|
+
string = &_Py_ID(usedforsecurity);
|
|
2952
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2953
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2954
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2955
|
+
string = &_Py_ID(value);
|
|
2956
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2957
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2958
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2959
|
+
string = &_Py_ID(values);
|
|
2960
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2961
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2962
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2963
|
+
string = &_Py_ID(version);
|
|
2964
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2965
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2966
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2967
|
+
string = &_Py_ID(volume);
|
|
2968
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2969
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2970
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2971
|
+
string = &_Py_ID(wait_all);
|
|
2972
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2973
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2974
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2975
|
+
string = &_Py_ID(warn_on_full_buffer);
|
|
2976
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2977
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2978
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2979
|
+
string = &_Py_ID(warnings);
|
|
2980
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2981
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2982
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2983
|
+
string = &_Py_ID(warnoptions);
|
|
2984
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2985
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2986
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2987
|
+
string = &_Py_ID(wbits);
|
|
2988
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2989
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2990
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2991
|
+
string = &_Py_ID(week);
|
|
2992
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2993
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2994
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2995
|
+
string = &_Py_ID(weekday);
|
|
2996
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
2997
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
2998
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
2999
|
+
string = &_Py_ID(which);
|
|
3000
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3001
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3002
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3003
|
+
string = &_Py_ID(who);
|
|
3004
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3005
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3006
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3007
|
+
string = &_Py_ID(withdata);
|
|
3008
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3009
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3010
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3011
|
+
string = &_Py_ID(writable);
|
|
3012
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3013
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3014
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3015
|
+
string = &_Py_ID(write);
|
|
3016
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3017
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3018
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3019
|
+
string = &_Py_ID(write_through);
|
|
3020
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3021
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3022
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3023
|
+
string = &_Py_ID(year);
|
|
3024
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3025
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3026
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3027
|
+
string = &_Py_ID(zdict);
|
|
3028
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3029
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3030
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3031
|
+
string = &_Py_ID(zstd_dict);
|
|
3032
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3033
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3034
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3035
|
+
string = &_Py_STR(empty);
|
|
3036
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3037
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3038
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3039
|
+
string = &_Py_STR(dbl_percent);
|
|
3040
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3041
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3042
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3043
|
+
string = &_Py_STR(dot_locals);
|
|
3044
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3045
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3046
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3047
|
+
string = &_Py_STR(defaults);
|
|
3048
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3049
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3050
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3051
|
+
string = &_Py_STR(format);
|
|
3052
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3053
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3054
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3055
|
+
string = &_Py_STR(generic_base);
|
|
3056
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3057
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3058
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3059
|
+
string = &_Py_STR(kwdefaults);
|
|
3060
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3061
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3062
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3063
|
+
string = &_Py_STR(type_params);
|
|
3064
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3065
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3066
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3067
|
+
string = &_Py_STR(str_replace_inf);
|
|
3068
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3069
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3070
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3071
|
+
string = &_Py_STR(anon_null);
|
|
3072
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3073
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3074
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3075
|
+
string = &_Py_STR(anon_dictcomp);
|
|
3076
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3077
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3078
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3079
|
+
string = &_Py_STR(anon_genexpr);
|
|
3080
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3081
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3082
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3083
|
+
string = &_Py_STR(anon_lambda);
|
|
3084
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3085
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3086
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3087
|
+
string = &_Py_STR(anon_listcomp);
|
|
3088
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3089
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3090
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3091
|
+
string = &_Py_STR(anon_module);
|
|
3092
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3093
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3094
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3095
|
+
string = &_Py_STR(anon_setcomp);
|
|
3096
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3097
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3098
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3099
|
+
string = &_Py_STR(anon_string);
|
|
3100
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3101
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3102
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3103
|
+
string = &_Py_STR(anon_unknown);
|
|
3104
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3105
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3106
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3107
|
+
string = &_Py_STR(json_decoder);
|
|
3108
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3109
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3110
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3111
|
+
string = &_Py_STR(list_err);
|
|
3112
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3113
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3114
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3115
|
+
string = &_Py_STR(utf_8);
|
|
3116
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3117
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3118
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3119
|
+
string = &_Py_STR(dbl_open_br);
|
|
3120
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3121
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3122
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3123
|
+
string = &_Py_STR(dbl_close_br);
|
|
3124
|
+
_PyUnicode_InternStatic(interp, &string);
|
|
3125
|
+
assert(_PyUnicode_CheckConsistency(string, 1));
|
|
3126
|
+
assert(PyUnicode_GET_LENGTH(string) != 1);
|
|
3127
|
+
}
|
|
3128
|
+
/* End auto-generated code */
|
|
3129
|
+
#ifdef __cplusplus
|
|
3130
|
+
}
|
|
3131
|
+
#endif
|
|
3132
|
+
#endif /* !Py_INTERNAL_UNICODEOBJECT_GENERATED_H */
|