python3-dll-a-0.2.10/.cargo_vcs_info.json0000644000000001360000000000100135070ustar { "git": { "sha1": "e7d6d1a3297d3d1531732b9ad924cd27afcc9431" }, "path_in_vcs": "" }python3-dll-a-0.2.10/.github/workflows/dll.yml000064400000000000000000000025341046102023000171760ustar 00000000000000name: Collect pythonXY.dll on: workflow_dispatch jobs: collect: name: Collect pythonXY.dll runs-on: windows-latest steps: - uses: actions/setup-python@v5 with: python-version: | pypy3.8 pypy3.9 pypy3.10 3.7 3.8 3.9 3.10 3.11 3.12 3.13 allow-prereleases: true - name: Copy pythonXY.dll shell: bash run: | set -e for VER in 3.7 3.8 3.9 3.10 3.11 3.12 3.13; do VER_NUM=$(echo $VER | sed 's/\.//') PREFIX=$(py -$VER -c "import sys; print(sys.base_prefix, end='')") cp "$PREFIX/python$VER_NUM.dll" . done # PyPy 3.7 & 3.8 uses libpypy3-c.dll PREFIX=$(pypy3.8 -c "import sys; print(sys.base_prefix, end='')") cp "$PREFIX/libpypy3-c.dll" . # PyPy 3.9 and later use libpypy3.Y-c.dll for VER in 3.9 3.10; do VER_NUM=$(echo $VER | sed 's/\.//') PREFIX=$(pypy$VER -c "import sys; print(sys.base_prefix, end='')") cp "$PREFIX/libpypy$VER-c.dll" . done ls *.dll - name: Upload DLLs uses: actions/upload-artifact@v4 with: name: dll path: | *.dll python3-dll-a-0.2.10/.github/workflows/publish.yml000064400000000000000000000004271046102023000200700ustar 00000000000000name: Publish on: push: tags: [ v* ] env: CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }} jobs: publish: name: Publish to crates.io runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Run cargo publish run: cargo publish python3-dll-a-0.2.10/.github/workflows/rust.yml000064400000000000000000000027661046102023000174270ustar 00000000000000name: Test on: push: pull_request: branches: [ main ] env: CARGO_TERM_COLOR: always jobs: build: name: Build and test strategy: matrix: os: - ubuntu-latest - windows-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - name: Install the MinGW and LLVM toolchains if: matrix.os == 'ubuntu-latest' run: sudo apt-get install -y gcc-mingw-w64 llvm - name: Build run: cargo build --verbose - name: Run tests run: cargo test --verbose -- --test-threads=1 zigbuild: name: Test zig dlltool runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: goto-bus-stop/setup-zig@v2 - name: Run tests with zig run: ZIG_COMMAND=zig cargo test --verbose zigwheel: name: Test python -m ziglang dlltool runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: "3.12" - name: Install ziglang package run: pip install ziglang - name: Run tests with python -m ziglang run: ZIG_COMMAND="python -m ziglang" cargo test --verbose fmt: name: Check code formatting runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Run cargo fmt run: cargo fmt -- --check clippy: name: Clippy lints runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Run cargo clippy run: cargo clippy --tests -- --deny warnings python3-dll-a-0.2.10/.github/workflows/update.yml000064400000000000000000000037111046102023000177030ustar 00000000000000name: Update python.def on: workflow_dispatch: workflow_run: workflows: - Collect pythonXY.dll types: - completed schedule: # Run every week - cron: '0 0 * * 0' jobs: update-stable-abi: name: Update stable_abi.toml runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Fetch latest stable_abi.toml run: | curl https://raw.githubusercontent.com/python/cpython/main/Misc/stable_abi.toml > stable_abi.toml - name: Install Python TOML parser run: | pip install tomli - name: Parse stable_abi.toml to produce python3.def run: | ./parse-stable-abi.py < stable_abi.toml > src/python3.def - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: branch: update-stable-abi delete-branch: true add-paths: | src/python3.def title: 'Update python3.def using stable_abi.toml from the latest main' commit-message: 'chore: Update python3.def using stable_abi.toml from the latest main' body: 'Source: https://raw.githubusercontent.com/python/cpython/main/Misc/stable_abi.toml' update-pythonxy: name: Update pythonXY.def runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Install gendef run: | sudo apt-get install -y mingw-w64-tools - name: Download DLLs uses: dawidd6/action-download-artifact@v2 with: workflow: dll.yml workflow_conclusion: success - name: Generate DEF shell: bash run: | set -e for f in dll/*.dll; do gendef $f done ls -lrth *.def mv *.def src/ - name: Create Pull Request uses: peter-evans/create-pull-request@v4 with: branch: update-pythonxy delete-branch: true add-paths: | src/*.def title: 'Update pythonXY.def' commit-message: 'chore: Update pythonXY.def' python3-dll-a-0.2.10/.gitignore000064400000000000000000000000301046102023000142600ustar 00000000000000/target Cargo.lock tags python3-dll-a-0.2.10/CHANGELOG.md000064400000000000000000000053501046102023000141130ustar 00000000000000# Changelog All notable changes to this project will be documented in this file. ## [0.2.10] - 2024-06-24 ### Features - Add Python 3.13 support in [#72](https://github.com/PyO3/python3-dll-a/pull/72) ## [0.2.9] - 2023-07-04 ### Fixes - Fix PyPy 3.10 support in[#46](https://github.com/PyO3/python3-dll-a/pull/46) ## [0.2.8] - 2023-07-03 ### Features - Add PyPy 3.10 support in [#44](https://github.com/PyO3/python3-dll-a/pull/44) ## [0.2.7] - 2023-05-25 ### Features - Add Python 3.12 support in [#34](https://github.com/PyO3/python3-dll-a/pull/34) ## [0.2.6] - 2022-08-21 ### Features - Add MinGW-w64 `dlltool` program name configuration env var [#31](https://github.com/PyO3/python3-dll-a/pull/31) ## [0.2.5] - 2022-07-14 ### Fixes - Fix PyPy import library name in [#27](https://github.com/PyO3/python3-dll-a/pull/27) ## [0.2.4] - 2022-07-14 ### Features - Add PyPy support in [#25](https://github.com/PyO3/python3-dll-a/pull/25) ## [0.2.3] - 2022-05-17 ### Features - Add `zig dlltool` support in [#18](https://github.com/pyo3/python3-dll-a/pull/18) ### Fixes - Improve error message when `dlltool` is not found in [#17](https://github.com/pyo3/python3-dll-a/pull/17) ## [0.2.2] - 2022-05-10 ### Features - Include `python3.def` itself in the Rust source in [#10](https://github.com/pyo3/python3-dll-a/pull/10) - Add support for generating non-abi3 `pythonXY.dll` in [#15](https://github.com/pyo3/python3-dll-a/pull/15) ### CI - Automate `stable_abi.txt` updates in [#6](https://github.com/pyo3/python3-dll-a/pull/6) ## [0.2.1] - 2022-04-17 ### Features - Add support for `lib.exe` from MSVC when running on Windows in [#2](https://github.com/pyo3/python3-dll-a/pull/2) ### Documentation - Mention the new PyO3 integration feature - Add maintenance section to README ### Miscellaneous Tasks - Update stable_abi.txt to the latest main ### CI - Add `rust.yml` workflow to build and run unit tests - Add `publish.yml` workflow to publish the crate to `crates.io` ## [0.2.0] - 2022-03-21 ### Features - [**breaking**] Use `Path` type for the output directory arg ## [0.1.2] - 2022-03-15 ### Documentation - Document MSVC ABI environment support ### Features - Add support for the LLVM `dlltool` flavor ### Testing - Build import libraries for all targets ## [0.1.1] - 2022-03-14 ### Documentation - Add multi-arch `build.rs` examples ### Features - Add support for the 32-bit target architecture ## [0.1.0] - 2022-02-21 ### Documentation - Add `build.rs` usage examples ### Features - Generate module definition and invoke dlltool - Implement Module-Definition file writing - Implement 'stable_abi.txt' syntax parser ### Miscellaneous Tasks - Add `git-cliff` config file - Add a change log file python3-dll-a-0.2.10/Cargo.toml0000644000000020220000000000100115010ustar # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "python3-dll-a" version = "0.2.10" authors = [ "Sergey Kvachonok ", "messense ", "Adam Reichold ", ] description = "Standalone python3(y).dll import library generator" readme = "README.md" keywords = [ "build-dependencies", "python", "windows", "mingw", "msvc", ] categories = ["development-tools::build-utils"] license = "MIT" repository = "https://github.com/PyO3/python3-dll-a" [target."cfg(windows)".dependencies.cc] version = "1.0.73" python3-dll-a-0.2.10/Cargo.toml.orig000064400000000000000000000010211046102023000151600ustar 00000000000000[package] name = "python3-dll-a" version = "0.2.10" edition = "2021" description = "Standalone python3(y).dll import library generator" repository = "https://github.com/PyO3/python3-dll-a" authors = ["Sergey Kvachonok ", "messense ", "Adam Reichold "] license = "MIT" keywords = ["build-dependencies", "python", "windows", "mingw", "msvc"] categories = ["development-tools::build-utils"] readme = "README.md" [target.'cfg(windows)'.dependencies] cc = "1.0.73" python3-dll-a-0.2.10/LICENSE000064400000000000000000000021401046102023000133010ustar 00000000000000MIT License Copyright (c) 2022 Sergey Kvachonok, Adam Reichold, messense Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. python3-dll-a-0.2.10/README.md000064400000000000000000000101151046102023000135540ustar 00000000000000Standalone `python3(y).dll` import library generator ==================================================== [![Actions Status](https://github.com/PyO3/python3-dll-a/workflows/Test/badge.svg)](https://github.com/PyO3/python3-dll-a/actions) [![Crate](https://img.shields.io/crates/v/python3-dll-a.svg)](https://crates.io/crates/python3-dll-a) [![Documentation](https://docs.rs/python3-dll-a/badge.svg)](https://docs.rs/python3-dll-a) Generates import libraries for the Python DLL (either `python3.dll` or `python3y.dll`) for MinGW-w64 and MSVC (cross-)compile targets. This crate **does not require** Python 3 distribution files to be present on the (cross-)compile host system. This crate uses the binutils `dlltool` program to generate the Python DLL import libraries for MinGW-w64 targets. Setting `PYO3_MINGW_DLLTOOL` environment variable overrides the default `dlltool` command name for the target. **Note:** MSVC cross-compile targets require either LLVM binutils or Zig to be available on the host system. More specifically, `python3-dll-a` requires `llvm-dlltool` executable to be present in `PATH` when targeting `*-pc-windows-msvc` from Linux. Alternatively, `ZIG_COMMAND` environment variable may be set to e.g. `"zig"` or `"python -m ziglang"`, then `zig dlltool` will be used in place of `llvm-dlltool` (or MinGW binutils). PyO3 integration ---------------- Since version **0.16.5**, the `pyo3` crate implements support for both the Stable ABI and version-specific Python DLL import library generation via its new `generate-import-lib` feature. In this configuration, `python3-dll-a` becomes a `pyo3` crate dependency and is automatically invoked by its build script in both native and cross compilation scenarios. ### Example `Cargo.toml` usage for an `abi3` PyO3 extension module ```toml [dependencies] pyo3 = { version = "0.16.5", features = ["extension-module", "abi3-py37", "generate-import-lib"] } ``` ### Example `Cargo.toml` usage for a standard PyO3 extension module ```toml [dependencies] pyo3 = { version = "0.16.5", features = ["extension-module", "generate-import-lib"] } ``` Standalone build script usage ----------------------------- If an older `pyo3` crate version is used, or a different Python bindings library is required, `python3-dll-a` can be used directly from the crate build script. The examples below assume using an older version of PyO3. ### Example `build.rs` script for an `abi3` PyO3 extension The following cargo build script can be used to cross-compile Stable ABI PyO3 extension modules for Windows (64/32-bit x86 or 64-bit ARM) using either MinGW-w64 or MSVC target environment ABI: ```rust fn main() { if std::env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" { let cross_lib_dir = std::env::var_os("PYO3_CROSS_LIB_DIR") .expect("PYO3_CROSS_LIB_DIR is not set when cross-compiling"); let arch = std::env::var("CARGO_CFG_TARGET_ARCH").unwrap(); let env = std::env::var("CARGO_CFG_TARGET_ENV").unwrap(); let libdir = std::path::Path::new(&cross_lib_dir); python3_dll_a::generate_implib_for_target(libdir, &arch, &env) .expect("python3.dll import library generator failed"); } } ``` A compatible `python3.dll` import library file named `python3.dll.a` or `python3.lib` will be automatically created in the directory pointed by the `PYO3_CROSS_LIB_DIR` environment variable. ### Example `cargo build` invocation ```sh PYO3_CROSS_LIB_DIR=target/python3-dll cargo build --target x86_64-pc-windows-gnu ``` Generating version-specific `python3y.dll` import libraries ----------------------------------------------------------- As an advanced feature, `python3-dll-a` can generate Python version specific import libraries such as `python39.lib`. See the `ImportLibraryGenerator` builder API description for details. Maintenance ----------- This crate embeds Module-Defitions based on the `stable_abi.toml` file from CPython. The upstream version of this file is located in the [CPython project][cpython] repository under the path `Misc/stable_abi.toml`. [cpython]: https://github.com/python/cpython/blob/main/Misc/stable_abi.toml python3-dll-a-0.2.10/parse-stable-abi.py000075500000000000000000000012141046102023000157650ustar 00000000000000#!/usr/bin/env python3 # Parses Python Stable ABI symbol definitions from the manifest in the CPython repository located at https://github.com/python/cpython/blob/main/Misc/stable_abi.toml # and produces a definition file following the format described at https://docs.microsoft.com/en-us/cpp/build/reference/module-definition-dot-def-files. import sys import tomli stable_abi = tomli.load(sys.stdin.buffer) print("LIBRARY python3.dll") print("EXPORTS") count = 0 for function in stable_abi["function"].keys(): print(function) count += 1 for data in stable_abi["data"].keys(): print(f"{data} DATA") count += 1 assert count >= 859 python3-dll-a-0.2.10/src/lib.rs000064400000000000000000000504731046102023000142130ustar 00000000000000//! Standalone `python3(y).dll` import library generator //! ==================================================== //! //! Generates import libraries for the Python DLL //! (either `python3.dll` or `python3y.dll`) //! for MinGW-w64 and MSVC (cross-)compile targets. //! //! This crate **does not require** Python 3 distribution files //! to be present on the (cross-)compile host system. //! //! This crate uses the binutils `dlltool` program to generate //! the Python DLL import libraries for MinGW-w64 targets. //! Setting `PYO3_MINGW_DLLTOOL` environment variable overrides //! the default `dlltool` command name for the target. //! //! **Note:** MSVC cross-compile targets require either LLVM binutils //! or Zig to be available on the host system. //! More specifically, `python3-dll-a` requires `llvm-dlltool` executable //! to be present in `PATH` when targeting `*-pc-windows-msvc` from Linux. //! //! Alternatively, `ZIG_COMMAND` environment variable may be set to e.g. `"zig"` //! or `"python -m ziglang"`, then `zig dlltool` will be used in place //! of `llvm-dlltool` (or MinGW binutils). //! //! PyO3 integration //! ---------------- //! //! Since version **0.16.5**, the `pyo3` crate implements support //! for both the Stable ABI and version-specific Python DLL import //! library generation via its new `generate-import-lib` feature. //! //! In this configuration, `python3-dll-a` becomes a `pyo3` crate dependency //! and is automatically invoked by its build script in both native //! and cross compilation scenarios. //! //! ### Example `Cargo.toml` usage for an `abi3` PyO3 extension module //! //! ```toml //! [dependencies] //! pyo3 = { version = "0.16.5", features = ["extension-module", "abi3-py37", "generate-import-lib"] } //! ``` //! //! ### Example `Cargo.toml` usage for a standard PyO3 extension module //! //! ```toml //! [dependencies] //! pyo3 = { version = "0.16.5", features = ["extension-module", "generate-import-lib"] } //! ``` //! //! Standalone build script usage //! ----------------------------- //! //! If an older `pyo3` crate version is used, or a different Python bindings //! library is required, `python3-dll-a` can be used directly //! from the crate build script. //! //! The examples below assume using an older version of PyO3. //! //! ### Example `build.rs` script for an `abi3` PyO3 extension //! //! The following cargo build script can be used to cross-compile Stable ABI //! PyO3 extension modules for Windows (64/32-bit x86 or 64-bit ARM) //! using either MinGW-w64 or MSVC target environment ABI: //! //! ```no_run //! fn main() { //! if std::env::var("CARGO_CFG_TARGET_OS").unwrap() == "windows" { //! let cross_lib_dir = std::env::var_os("PYO3_CROSS_LIB_DIR") //! .expect("PYO3_CROSS_LIB_DIR is not set when cross-compiling"); //! let arch = std::env::var("CARGO_CFG_TARGET_ARCH").unwrap(); //! let env = std::env::var("CARGO_CFG_TARGET_ENV").unwrap(); //! //! let libdir = std::path::Path::new(&cross_lib_dir); //! python3_dll_a::generate_implib_for_target(libdir, &arch, &env) //! .expect("python3.dll import library generator failed"); //! } //! } //! ``` //! //! A compatible `python3.dll` import library file named `python3.dll.a` //! or `python3.lib` will be automatically created in the directory //! pointed by the `PYO3_CROSS_LIB_DIR` environment variable. //! //! ### Example `cargo build` invocation //! //! ```sh //! PYO3_CROSS_LIB_DIR=target/python3-dll cargo build --target x86_64-pc-windows-gnu //! ``` //! //! Generating version-specific `python3y.dll` import libraries //! ----------------------------------------------------------- //! //! As an advanced feature, `python3-dll-a` can generate Python version //! specific import libraries such as `python39.lib`. //! //! See the [`ImportLibraryGenerator`] builder API description for details. #![deny(missing_docs)] #![allow(clippy::needless_doctest_main)] use std::env; use std::fs::{create_dir_all, write}; use std::io::{Error, ErrorKind, Result}; use std::path::{Path, PathBuf}; use std::process::Command; /// Import library file extension for the GNU environment ABI (MinGW-w64) const IMPLIB_EXT_GNU: &str = ".dll.a"; /// Import library file extension for the MSVC environment ABI const IMPLIB_EXT_MSVC: &str = ".lib"; /// Canonical MinGW-w64 `dlltool` program name const DLLTOOL_GNU: &str = "x86_64-w64-mingw32-dlltool"; /// Canonical MinGW-w64 `dlltool` program name (32-bit version) const DLLTOOL_GNU_32: &str = "i686-w64-mingw32-dlltool"; /// Canonical `dlltool` program name for the MSVC environment ABI (LLVM dlltool) const DLLTOOL_MSVC: &str = "llvm-dlltool"; /// Canonical `lib` program name for the MSVC environment ABI (MSVC lib.exe) #[cfg(windows)] const LIB_MSVC: &str = "lib.exe"; /// Python interpreter implementations #[derive(Debug, Clone, Copy)] pub enum PythonImplementation { /// CPython CPython, /// PyPy PyPy, } /// Windows import library generator for Python /// /// Generates `python3.dll` or `pythonXY.dll` import library directly from the /// embedded Python ABI definitions data for the specified compile target. /// /// Example usage /// ------------- /// /// ```no_run /// # use std::path::Path; /// # use python3_dll_a::ImportLibraryGenerator; /// // Generate `python3.dll.a` in "target/python3-dll-a" /// ImportLibraryGenerator::new("x86_64", "gnu") /// .generate(Path::new("target/python3-dll-a")) /// .unwrap(); /// /// // Generate `python3.lib` in "target/python3-lib" /// ImportLibraryGenerator::new("x86_64", "msvc") /// .generate(Path::new("target/python3-lib")) /// .unwrap(); /// /// // Generate `python39.dll.a` in "target/python3-dll-a" /// ImportLibraryGenerator::new("x86_64", "gnu") /// .version(Some((3, 9))) /// .generate(Path::new("target/python3-dll-a")) /// .unwrap(); /// /// // Generate `python38.lib` in "target/python3-lib" /// ImportLibraryGenerator::new("x86_64", "msvc") /// .version(Some((3, 8))) /// .generate(Path::new("target/python3-lib")) /// .unwrap(); /// ``` #[derive(Debug, Clone)] pub struct ImportLibraryGenerator { /// The compile target architecture name (as in `CARGO_CFG_TARGET_ARCH`) arch: String, // The compile target environment ABI name (as in `CARGO_CFG_TARGET_ENV`) env: String, /// Major and minor Python version (for `pythonXY.dll` only) version: Option<(u8, u8)>, /// Python interpreter implementation implementation: PythonImplementation, } impl ImportLibraryGenerator { /// Creates a new import library generator for the specified compile target. /// /// The compile target architecture name (as in `CARGO_CFG_TARGET_ARCH`) /// is passed in `arch`. /// /// The compile target environment ABI name (as in `CARGO_CFG_TARGET_ENV`) /// is passed in `env`. pub fn new(arch: &str, env: &str) -> Self { Self { arch: arch.to_string(), env: env.to_string(), version: None, implementation: PythonImplementation::CPython, } } /// Sets major and minor version for the `pythonXY.dll` import library. /// /// The version-agnostic `python3.dll` is generated by default. pub fn version(&mut self, version: Option<(u8, u8)>) -> &mut Self { self.version = version; self } /// Sets Python interpreter implementation pub fn implementation(&mut self, implementation: PythonImplementation) -> &mut Self { self.implementation = implementation; self } /// Generates the Python DLL import library in `out_dir`. /// /// The version-agnostic `python3.dll` import library is generated /// by default unless the version-specific `pythonXY.dll` import /// was requested via `version()`. pub fn generate(&self, out_dir: &Path) -> Result<()> { create_dir_all(out_dir)?; let defpath = self.write_def_file(out_dir)?; // Try to guess the `dlltool` executable name from the target triple. let dlltool_command = DllToolCommand::find_for_target(&self.arch, &self.env)?; // Get the import library file extension from the used `dlltool` flavor. let implib_ext = dlltool_command.implib_file_ext(); let implib_file = self.implib_file_path(out_dir, implib_ext); // Build the complete `dlltool` command with all required arguments. let mut command = dlltool_command.build(&defpath, &implib_file); // Run the selected `dlltool` executable to generate the import library. let status = command.status().map_err(|e| { let msg = format!("{:?} failed with {}", command, e); Error::new(e.kind(), msg) })?; if status.success() { Ok(()) } else { let msg = format!("{:?} failed with {}", command, status); Err(Error::new(ErrorKind::Other, msg)) } } /// Writes out the embedded Python library definitions file to `out_dir`. /// /// Returns the newly created `python3.def` or `pythonXY.def` file path. fn write_def_file(&self, out_dir: &Path) -> Result { let (def_file, def_file_content) = match self.implementation { PythonImplementation::CPython => match self.version { None => ("python3.def", include_str!("python3.def")), Some((3, 7)) => ("python37.def", include_str!("python37.def")), Some((3, 8)) => ("python38.def", include_str!("python38.def")), Some((3, 9)) => ("python39.def", include_str!("python39.def")), Some((3, 10)) => ("python310.def", include_str!("python310.def")), Some((3, 11)) => ("python311.def", include_str!("python311.def")), Some((3, 12)) => ("python312.def", include_str!("python312.def")), Some((3, 13)) => ("python313.def", include_str!("python313.def")), _ => return Err(Error::new(ErrorKind::Other, "Unsupported Python version")), }, PythonImplementation::PyPy => match self.version { Some((3, 7)) => ("libpypy3-c.def", include_str!("libpypy3-c.def")), Some((3, 8)) => ("libpypy3-c.def", include_str!("libpypy3-c.def")), Some((3, 9)) => ("libpypy3.9-c.def", include_str!("libpypy3.9-c.def")), Some((3, 10)) => ("libpypy3.10-c.def", include_str!("libpypy3.10-c.def")), _ => return Err(Error::new(ErrorKind::Other, "Unsupported PyPy version")), }, }; let mut defpath = out_dir.to_owned(); defpath.push(def_file); write(&defpath, def_file_content)?; Ok(defpath) } /// Builds the generated import library file name. /// /// The output file extension is passed in `libext`. /// /// Returns the full import library file path under `out_dir`. fn implib_file_path(&self, out_dir: &Path, libext: &str) -> PathBuf { let libname = match self.version { Some((major, minor)) => { format!("python{}{}{}", major, minor, libext) } None => format!("python3{}", libext), }; let mut libpath = out_dir.to_owned(); libpath.push(libname); libpath } } /// Generates `python3.dll` import library directly from the embedded /// Python Stable ABI definitions data for the specified compile target. /// /// The import library file named `python3.dll.a` or `python3.lib` is created /// in directory `out_dir`. /// /// The compile target architecture name (as in `CARGO_CFG_TARGET_ARCH`) /// is passed in `arch`. /// /// The compile target environment ABI name (as in `CARGO_CFG_TARGET_ENV`) /// is passed in `env`. pub fn generate_implib_for_target(out_dir: &Path, arch: &str, env: &str) -> Result<()> { ImportLibraryGenerator::new(arch, env).generate(out_dir) } /// `dlltool` utility command builder /// /// Supports Visual Studio `lib.exe`, MinGW, LLVM and Zig `dlltool` flavors. #[derive(Debug)] enum DllToolCommand { /// MinGW `dlltool` program (with prefix) Mingw { command: Command }, /// LLVM `llvm-dlltool` program (no prefix) Llvm { command: Command, machine: String }, /// MSVC `lib.exe` program (no prefix) LibExe { command: Command, machine: String }, /// `zig dlltool` wrapper (no prefix) Zig { command: Command, machine: String }, } impl DllToolCommand { /// Attempts to find the best matching `dlltool` flavor for the target. fn find_for_target(arch: &str, env: &str) -> Result { // LLVM tools use their own target architecture names... let machine = match arch { "x86_64" => "i386:x86-64", "x86" => "i386", "aarch64" => "arm64", arch => arch, } .to_owned(); // If `zig cc` is used as the linker, `zig dlltool` is the best choice. if let Some(command) = find_zig() { return Ok(DllToolCommand::Zig { command, machine }); } match env { // 64-bit and 32-bit MinGW-w64 (aka `{x86_64,i686}-pc-windows-gnu`) "gnu" => Ok(DllToolCommand::Mingw { command: get_mingw_dlltool(arch)?, }), // MSVC ABI (multiarch) "msvc" => { if let Some(command) = find_lib_exe(arch) { // MSVC tools use their own target architecture names... let machine = match arch { "x86_64" => "X64", "x86" => "X86", "aarch64" => "ARM64", arch => arch, } .to_owned(); Ok(DllToolCommand::LibExe { command, machine }) } else { let command = Command::new(DLLTOOL_MSVC); Ok(DllToolCommand::Llvm { command, machine }) } } _ => { let msg = format!("Unsupported target env ABI '{}'", env); Err(Error::new(ErrorKind::Other, msg)) } } } /// Returns the import library file extension used by /// this `dlltool` flavor. fn implib_file_ext(&self) -> &'static str { if let DllToolCommand::Mingw { .. } = self { IMPLIB_EXT_GNU } else { IMPLIB_EXT_MSVC } } /// Generates the complete `dlltool` executable invocation command. fn build(self, defpath: &Path, libpath: &Path) -> Command { match self { Self::Mingw { mut command } => { command .arg("--input-def") .arg(defpath) .arg("--output-lib") .arg(libpath); command } Self::Llvm { mut command, machine, } => { command .arg("-m") .arg(machine) .arg("-d") .arg(defpath) .arg("-l") .arg(libpath); command } Self::LibExe { mut command, machine, } => { command .arg(format!("/MACHINE:{}", machine)) .arg(format!("/DEF:{}", defpath.display())) .arg(format!("/OUT:{}", libpath.display())); command } Self::Zig { mut command, machine, } => { // Same as `llvm-dlltool`, but invoked as `zig dlltool`. command .arg("dlltool") .arg("-m") .arg(machine) .arg("-d") .arg(defpath) .arg("-l") .arg(libpath); command } } } } /// Chooses the appropriate MinGW-w64 `dlltool` executable /// for the target architecture. /// /// Examines the user-provided `PYO3_MINGW_DLLTOOL` environment variable first /// and falls back to the default MinGW-w64 arch prefixes. fn get_mingw_dlltool(arch: &str) -> Result { if let Ok(user_dlltool) = env::var("PYO3_MINGW_DLLTOOL") { Ok(Command::new(user_dlltool)) } else { let prefix_dlltool = match arch { // 64-bit MinGW-w64 (aka `x86_64-pc-windows-gnu`) "x86_64" => Ok(DLLTOOL_GNU), // 32-bit MinGW-w64 (aka `i686-pc-windows-gnu`) "x86" => Ok(DLLTOOL_GNU_32), // AArch64? _ => { let msg = format!("Unsupported MinGW target arch '{}'", arch); Err(Error::new(ErrorKind::Other, msg)) } }?; Ok(Command::new(prefix_dlltool)) } } /// Finds the `zig` executable (when built by ``maturin --zig`). /// /// Examines the `ZIG_COMMAND` environment variable /// to find out if `zig cc` is being used as the linker. fn find_zig() -> Option { // `ZIG_COMMAND` may contain simply `zig` or `/usr/bin/zig`, // or a more complex construct like `python3 -m ziglang`. let zig_command = env::var("ZIG_COMMAND").ok()?; // Try to emulate `sh -c ${ZIG_COMMAND}`. let mut zig_cmdlet = zig_command.split_ascii_whitespace(); // Extract the main program component (e.g. `zig` or `python3`). let mut zig = Command::new(zig_cmdlet.next()?); // Append the rest of the commandlet. zig.args(zig_cmdlet); Some(zig) } /// Finds Visual Studio `lib.exe` when running on Windows. #[cfg(windows)] fn find_lib_exe(arch: &str) -> Option { let target = match arch { "x86_64" => "x86_64-pc-windows-msvc", "x86" => "i686-pc-windows-msvc", "aarch64" => "aarch64-pc-windows-msvc", _ => return None, }; cc::windows_registry::find(target, LIB_MSVC) } #[cfg(not(windows))] fn find_lib_exe(_arch: &str) -> Option { None } #[cfg(test)] mod tests { use std::path::PathBuf; use super::*; #[cfg(unix)] #[test] fn generate() { // FIXME: Use "target/" dirs for temporary files. let mut dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")); dir.push("target"); dir.push("x86_64-pc-windows-gnu"); dir.push("python3-dll"); ImportLibraryGenerator::new("x86_64", "gnu") .generate(&dir) .unwrap(); for minor in 7..=13 { ImportLibraryGenerator::new("x86_64", "gnu") .version(Some((3, minor))) .generate(&dir) .unwrap(); } // PyPy for minor in 7..=10 { ImportLibraryGenerator::new("x86_64", "gnu") .version(Some((3, minor))) .implementation(PythonImplementation::PyPy) .generate(&dir) .unwrap(); } } #[cfg(unix)] #[test] fn generate_gnu32() { let mut dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")); dir.push("target"); dir.push("i686-pc-windows-gnu"); dir.push("python3-dll"); generate_implib_for_target(&dir, "x86", "gnu").unwrap(); } #[test] fn generate_msvc() { let mut dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")); dir.push("target"); dir.push("x86_64-pc-windows-msvc"); dir.push("python3-dll"); ImportLibraryGenerator::new("x86_64", "msvc") .generate(&dir) .unwrap(); for minor in 7..=13 { ImportLibraryGenerator::new("x86_64", "msvc") .version(Some((3, minor))) .generate(&dir) .unwrap(); } // PyPy for minor in 7..=10 { ImportLibraryGenerator::new("x86_64", "msvc") .version(Some((3, minor))) .implementation(PythonImplementation::PyPy) .generate(&dir) .unwrap(); } } #[test] fn generate_msvc32() { let mut dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")); dir.push("target"); dir.push("i686-pc-windows-msvc"); dir.push("python3-dll"); generate_implib_for_target(&dir, "x86", "msvc").unwrap(); } #[test] fn generate_msvc_arm64() { let mut dir = PathBuf::from(env!("CARGO_MANIFEST_DIR")); dir.push("target"); dir.push("aarch64-pc-windows-msvc"); dir.push("python3-dll"); generate_implib_for_target(&dir, "aarch64", "msvc").unwrap(); } } python3-dll-a-0.2.10/src/libpypy3-c.def000064400000000000000000000522621046102023000155500ustar 00000000000000; ; Definition file of libpypy3-c.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "libpypy3-c.dll" EXPORTS HPyInit__debug PyPyAnySet_Check PyPyAnySet_CheckExact PyPyArg_Parse PyPyArg_ParseTuple PyPyArg_ParseTupleAndKeywords PyPyArg_UnpackTuple PyPyArg_VaParse PyPyArg_VaParseTupleAndKeywords PyPyBaseObject_Type DATA PyPyBool_FromLong PyPyBool_Type DATA PyPyBuffer_FillInfo PyPyBuffer_FromContiguous PyPyBuffer_GetPointer PyPyBuffer_IsContiguous PyPyBuffer_Release PyPyBuffer_ToContiguous PyPyBufferable_Type DATA PyPyByteArray_AsString PyPyByteArray_Check PyPyByteArray_CheckExact PyPyByteArray_Concat PyPyByteArray_FromObject PyPyByteArray_FromStringAndSize PyPyByteArray_Resize PyPyByteArray_Size PyPyByteArray_Type DATA PyPyBytes_AS_STRING PyPyBytes_AsString PyPyBytes_AsStringAndSize PyPyBytes_Concat PyPyBytes_ConcatAndDel PyPyBytes_FromFormat PyPyBytes_FromFormatV PyPyBytes_FromObject PyPyBytes_FromString PyPyBytes_FromStringAndSize PyPyBytes_Size PyPyBytes_Type DATA PyPyCFunction_Call PyPyCFunction_Check PyPyCFunction_GetFunction PyPyCFunction_NewEx PyPyCFunction_Type DATA PyPyCallIter_New PyPyCallable_Check PyPyCapsule_GetContext PyPyCapsule_GetDestructor PyPyCapsule_GetName PyPyCapsule_GetPointer PyPyCapsule_Import PyPyCapsule_IsValid PyPyCapsule_New PyPyCapsule_SetContext PyPyCapsule_SetDestructor PyPyCapsule_SetName PyPyCapsule_SetPointer PyPyCapsule_Type DATA PyPyCell_Type DATA PyPyClassMethodDescr_Type DATA PyPyClassMethod_New PyPyClassMethod_Type DATA PyPyCode_Addr2Line PyPyCode_Check PyPyCode_CheckExact PyPyCode_GetNumFree PyPyCode_New PyPyCode_NewEmpty PyPyCodec_Decode PyPyCodec_Decoder PyPyCodec_Encode PyPyCodec_Encoder PyPyCodec_IncrementalDecoder PyPyCodec_IncrementalEncoder PyPyComplex_AsCComplex PyPyComplex_Check PyPyComplex_CheckExact PyPyComplex_FromCComplex PyPyComplex_FromDoubles PyPyComplex_ImagAsDouble PyPyComplex_RealAsDouble PyPyComplex_Type DATA PyPyContextVar_Get PyPyContextVar_New PyPyContextVar_Set PyPyCoro_Check PyPyCoro_CheckExact PyPyDateTimeAPI DATA PyPyDateTime_Check PyPyDateTime_CheckExact PyPyDateTime_DATE_GET_HOUR PyPyDateTime_DATE_GET_MICROSECOND PyPyDateTime_DATE_GET_MINUTE PyPyDateTime_DATE_GET_SECOND PyPyDateTime_DELTA_GET_DAYS PyPyDateTime_DELTA_GET_MICROSECONDS PyPyDateTime_DELTA_GET_SECONDS PyPyDateTime_FromTimestamp PyPyDateTime_GET_DAY PyPyDateTime_GET_FOLD PyPyDateTime_GET_MONTH PyPyDateTime_GET_YEAR PyPyDateTime_TIME_GET_FOLD PyPyDateTime_TIME_GET_HOUR PyPyDateTime_TIME_GET_MICROSECOND PyPyDateTime_TIME_GET_MINUTE PyPyDateTime_TIME_GET_SECOND PyPyDate_Check PyPyDate_CheckExact PyPyDate_FromTimestamp PyPyDelta_Check PyPyDelta_CheckExact PyPyDescr_NewClassMethod PyPyDescr_NewGetSet PyPyDescr_NewMethod PyPyDictKeys_Type DATA PyPyDictProxy_Check PyPyDictProxy_CheckExact PyPyDictProxy_New PyPyDictProxy_Type DATA PyPyDictValues_Type DATA PyPyDict_Clear PyPyDict_Contains PyPyDict_Copy PyPyDict_DelItem PyPyDict_DelItemString PyPyDict_GetItem PyPyDict_GetItemString PyPyDict_GetItemWithError PyPyDict_Items PyPyDict_Keys PyPyDict_Merge PyPyDict_New PyPyDict_Next PyPyDict_SetDefault PyPyDict_SetItem PyPyDict_SetItemString PyPyDict_Size PyPyDict_Type DATA PyPyDict_Update PyPyDict_Values PyPyErr_BadArgument PyPyErr_BadInternalCall PyPyErr_CheckSignals PyPyErr_Clear PyPyErr_Display PyPyErr_ExceptionMatches PyPyErr_Fetch PyPyErr_Format PyPyErr_GetExcInfo PyPyErr_GivenExceptionMatches PyPyErr_NewException PyPyErr_NewExceptionWithDoc PyPyErr_NoMemory PyPyErr_NormalizeException PyPyErr_Occurred PyPyErr_Print PyPyErr_PrintEx PyPyErr_Restore PyPyErr_SetExcInfo PyPyErr_SetFromErrno PyPyErr_SetFromErrnoWithFilename PyPyErr_SetFromErrnoWithFilenameObject PyPyErr_SetFromErrnoWithFilenameObjects PyPyErr_SetFromWindowsErr PyPyErr_SetInterrupt PyPyErr_SetNone PyPyErr_SetObject PyPyErr_SetString PyPyErr_Warn PyPyErr_WarnEx PyPyErr_WarnExplicit PyPyErr_WarnFormat PyPyErr_WriteUnraisable PyPyEval_AcquireThread PyPyEval_CallFunction PyPyEval_CallMethod PyPyEval_CallObjectWithKeywords PyPyEval_EvalCode PyPyEval_GetBuiltins PyPyEval_GetFrame PyPyEval_GetGlobals PyPyEval_GetLocals PyPyEval_InitThreads PyPyEval_MergeCompilerFlags PyPyEval_ReleaseThread PyPyEval_RestoreThread PyPyEval_SaveThread PyPyEval_ThreadsInitialized PyPyExc_ArithmeticError DATA PyPyExc_AssertionError DATA PyPyExc_AttributeError DATA PyPyExc_BaseException DATA PyPyExc_BlockingIOError DATA PyPyExc_BrokenPipeError DATA PyPyExc_BufferError DATA PyPyExc_BytesWarning DATA PyPyExc_ChildProcessError DATA PyPyExc_ConnectionAbortedError DATA PyPyExc_ConnectionError DATA PyPyExc_ConnectionRefusedError DATA PyPyExc_ConnectionResetError DATA PyPyExc_DeprecationWarning DATA PyPyExc_EOFError DATA PyPyExc_Exception DATA PyPyExc_FileExistsError DATA PyPyExc_FileNotFoundError DATA PyPyExc_FloatingPointError DATA PyPyExc_FutureWarning DATA PyPyExc_GeneratorExit DATA PyPyExc_ImportError DATA PyPyExc_ImportWarning DATA PyPyExc_IndentationError DATA PyPyExc_IndexError DATA PyPyExc_InterruptedError DATA PyPyExc_IsADirectoryError DATA PyPyExc_KeyError DATA PyPyExc_KeyboardInterrupt DATA PyPyExc_LookupError DATA PyPyExc_MemoryError DATA PyPyExc_ModuleNotFoundError DATA PyPyExc_NameError DATA PyPyExc_NotADirectoryError DATA PyPyExc_NotImplementedError DATA PyPyExc_OSError DATA PyPyExc_OverflowError DATA PyPyExc_PendingDeprecationWarning DATA PyPyExc_PermissionError DATA PyPyExc_ProcessLookupError DATA PyPyExc_RecursionError DATA PyPyExc_ReferenceError DATA PyPyExc_ResourceWarning DATA PyPyExc_RuntimeError DATA PyPyExc_RuntimeWarning DATA PyPyExc_StopAsyncIteration DATA PyPyExc_StopIteration DATA PyPyExc_SyntaxError DATA PyPyExc_SyntaxWarning DATA PyPyExc_SystemError DATA PyPyExc_SystemExit DATA PyPyExc_TabError DATA PyPyExc_TimeoutError DATA PyPyExc_TypeError DATA PyPyExc_UnboundLocalError DATA PyPyExc_UnicodeDecodeError DATA PyPyExc_UnicodeEncodeError DATA PyPyExc_UnicodeError DATA PyPyExc_UnicodeTranslateError DATA PyPyExc_UnicodeWarning DATA PyPyExc_UserWarning DATA PyPyExc_ValueError DATA PyPyExc_Warning DATA PyPyExc_ZeroDivisionError DATA PyPyExceptionInstance_Class PyPyException_GetCause PyPyException_GetContext PyPyException_GetTraceback PyPyException_SetCause PyPyException_SetContext PyPyException_SetTraceback PyPyFile_FromFd PyPyFile_FromString PyPyFile_GetLine PyPyFile_WriteObject PyPyFile_WriteString PyPyFloat_AS_DOUBLE PyPyFloat_AsDouble PyPyFloat_FromDouble PyPyFloat_FromString PyPyFloat_Type DATA PyPyFrame_New PyPyFrozenSet_Check PyPyFrozenSet_CheckExact PyPyFrozenSet_New PyPyFrozenSet_Type DATA PyPyFunction_Check PyPyFunction_CheckExact PyPyFunction_GetCode PyPyFunction_Type DATA PyPyGILState_Check PyPyGILState_Ensure PyPyGILState_Release PyPyGen_Check PyPyGen_CheckExact PyPyGetSetDescr_Type DATA PyPyImport_AddModule PyPyImport_ExecCodeModule PyPyImport_ExecCodeModuleEx PyPyImport_GetModule PyPyImport_GetModuleDict PyPyImport_Import PyPyImport_ImportModule PyPyImport_ImportModuleLevelObject PyPyImport_ImportModuleNoBlock PyPyImport_ReloadModule PyPyIndex_Check PyPyInstanceMethod_Check PyPyInstanceMethod_Function PyPyInstanceMethod_GET_FUNCTION PyPyInstanceMethod_New PyPyInstanceMethod_Type DATA PyPyInterpreterState_GetID PyPyInterpreterState_Head PyPyInterpreterState_Next PyPyIter_Check PyPyIter_Next PyPyList_Append PyPyList_AsTuple PyPyList_GET_ITEM PyPyList_GET_SIZE PyPyList_GetItem PyPyList_GetSlice PyPyList_Insert PyPyList_New PyPyList_Reverse PyPyList_SET_ITEM PyPyList_SetItem PyPyList_SetSlice PyPyList_Size PyPyList_Sort PyPyList_Type DATA PyPyLong_AsDouble PyPyLong_AsLong PyPyLong_AsLongAndOverflow PyPyLong_AsLongLong PyPyLong_AsLongLongAndOverflow PyPyLong_AsSize_t PyPyLong_AsSsize_t PyPyLong_AsUnsignedLong PyPyLong_AsUnsignedLongLong PyPyLong_AsUnsignedLongLongMask PyPyLong_AsUnsignedLongMask PyPyLong_AsVoidPtr PyPyLong_FromDouble PyPyLong_FromLong PyPyLong_FromLongLong PyPyLong_FromSize_t PyPyLong_FromSsize_t PyPyLong_FromString PyPyLong_FromUnicode PyPyLong_FromUnicodeObject PyPyLong_FromUnsignedLong PyPyLong_FromUnsignedLongLong PyPyLong_FromVoidPtr PyPyLong_Type DATA PyPyMapping_Check PyPyMapping_GetItemString PyPyMapping_HasKey PyPyMapping_HasKeyString PyPyMapping_Items PyPyMapping_Keys PyPyMapping_Length PyPyMapping_SetItemString PyPyMapping_Size PyPyMapping_Values PyPyMarshal_ReadObjectFromString PyPyMarshal_WriteObjectToString PyPyMem_Calloc PyPyMem_Free PyPyMem_Malloc PyPyMem_RawCalloc PyPyMem_RawFree PyPyMem_RawMalloc PyPyMem_RawRealloc PyPyMem_Realloc PyPyMemberDescr_Type DATA PyPyMember_GetOne PyPyMember_SetOne PyPyMemoryView_Check PyPyMemoryView_CheckExact PyPyMemoryView_FromBuffer PyPyMemoryView_FromMemory PyPyMemoryView_FromObject PyPyMemoryView_GetContiguous PyPyMemoryView_Type DATA PyPyMethodDescr_Check PyPyMethodDescr_CheckExact PyPyMethodDescr_Type DATA PyPyMethod_Check PyPyMethod_CheckExact PyPyMethod_Function PyPyMethod_New PyPyMethod_Self PyPyMethod_Type DATA PyPyModuleDef_Init PyPyModule_AddFunctions PyPyModule_AddIntConstant PyPyModule_AddObject PyPyModule_AddStringConstant PyPyModule_Check PyPyModule_CheckExact PyPyModule_Create2 PyPyModule_ExecDef PyPyModule_GetDef PyPyModule_GetDict PyPyModule_GetName PyPyModule_GetState PyPyModule_New PyPyModule_NewObject PyPyModule_Type DATA PyPyNumber_Absolute PyPyNumber_Add PyPyNumber_And PyPyNumber_AsSsize_t PyPyNumber_Check PyPyNumber_Divide PyPyNumber_Divmod PyPyNumber_Float PyPyNumber_FloorDivide PyPyNumber_InPlaceAdd PyPyNumber_InPlaceAnd PyPyNumber_InPlaceDivide PyPyNumber_InPlaceFloorDivide PyPyNumber_InPlaceLshift PyPyNumber_InPlaceMatrixMultiply PyPyNumber_InPlaceMultiply PyPyNumber_InPlaceOr PyPyNumber_InPlacePower PyPyNumber_InPlaceRemainder PyPyNumber_InPlaceRshift PyPyNumber_InPlaceSubtract PyPyNumber_InPlaceTrueDivide PyPyNumber_InPlaceXor PyPyNumber_Index PyPyNumber_Invert PyPyNumber_Long PyPyNumber_Lshift PyPyNumber_MatrixMultiply PyPyNumber_Multiply PyPyNumber_Negative PyPyNumber_Or PyPyNumber_Positive PyPyNumber_Power PyPyNumber_Remainder PyPyNumber_Rshift PyPyNumber_Subtract PyPyNumber_ToBase PyPyNumber_TrueDivide PyPyNumber_Xor PyPyOS_AfterFork PyPyOS_FSPath PyPyOS_InputHook DATA PyPyOS_InterruptOccurred PyPyOS_double_to_string PyPyOS_getsig PyPyOS_setsig PyPyOS_snprintf PyPyOS_string_to_double PyPyOS_vsnprintf PyPyObject_ASCII PyPyObject_AsCharBuffer PyPyObject_AsFileDescriptor PyPyObject_AsReadBuffer PyPyObject_AsWriteBuffer PyPyObject_Bytes PyPyObject_Call PyPyObject_CallFinalizerFromDealloc PyPyObject_CallFunction PyPyObject_CallFunctionObjArgs PyPyObject_CallMethod PyPyObject_CallMethodObjArgs PyPyObject_CallObject PyPyObject_Calloc PyPyObject_CheckReadBuffer PyPyObject_ClearWeakRefs PyPyObject_Del PyPyObject_DelAttr PyPyObject_DelAttrString PyPyObject_DelItem PyPyObject_DelItemString PyPyObject_Dir PyPyObject_Format PyPyObject_Free PyPyObject_GC_Del PyPyObject_GenericGetAttr PyPyObject_GenericGetDict PyPyObject_GenericSetAttr PyPyObject_GenericSetDict PyPyObject_GetAttr PyPyObject_GetAttrString PyPyObject_GetBuffer PyPyObject_GetItem PyPyObject_GetIter PyPyObject_HasAttr PyPyObject_HasAttrString PyPyObject_Hash PyPyObject_HashNotImplemented PyPyObject_Init PyPyObject_InitVar PyPyObject_IsInstance PyPyObject_IsSubclass PyPyObject_IsTrue PyPyObject_LengthHint PyPyObject_Malloc PyPyObject_Not PyPyObject_Print PyPyObject_Realloc PyPyObject_Repr PyPyObject_RichCompare PyPyObject_RichCompareBool PyPyObject_SelfIter PyPyObject_SetAttr PyPyObject_SetAttrString PyPyObject_SetItem PyPyObject_Size PyPyObject_Str PyPyObject_Type PyPyObject_Unicode PyPyProperty_Type DATA PyPyRange_Type DATA PyPyReversed_Type DATA PyPyRun_File PyPyRun_SimpleString PyPyRun_String PyPyRun_StringFlags PyPySeqIter_New PyPySequence_Check PyPySequence_Concat PyPySequence_Contains PyPySequence_DelItem PyPySequence_DelSlice PyPySequence_Fast PyPySequence_Fast_GET_ITEM PyPySequence_Fast_GET_SIZE PyPySequence_Fast_ITEMS PyPySequence_GetItem PyPySequence_GetSlice PyPySequence_ITEM PyPySequence_InPlaceConcat PyPySequence_InPlaceRepeat PyPySequence_Index PyPySequence_Length PyPySequence_List PyPySequence_Repeat PyPySequence_SetItem PyPySequence_SetSlice PyPySequence_Size PyPySequence_Tuple PyPySet_Add PyPySet_Check PyPySet_CheckExact PyPySet_Clear PyPySet_Contains PyPySet_Discard PyPySet_GET_SIZE PyPySet_New PyPySet_Pop PyPySet_Size PyPySet_Type DATA PyPySlice_GetIndices PyPySlice_GetIndicesEx PyPySlice_New PyPySlice_Type DATA PyPySlice_Unpack PyPyStaticMethod_New PyPyStaticMethod_Type DATA PyPyStructSequence_GetItem PyPyStructSequence_InitType PyPyStructSequence_InitType2 PyPyStructSequence_New PyPyStructSequence_NewType PyPyStructSequence_SetItem PyPyStructSequence_UnnamedField DATA PyPySys_GetObject PyPySys_SetObject PyPySys_WriteStderr PyPySys_WriteStdout PyPyTZInfo_Check PyPyTZInfo_CheckExact PyPyThreadState_Clear PyPyThreadState_Delete PyPyThreadState_DeleteCurrent PyPyThreadState_Get PyPyThreadState_GetDict PyPyThreadState_New PyPyThreadState_SetAsyncExc PyPyThreadState_Swap PyPyThread_ReInitTLS PyPyThread_acquire_lock PyPyThread_allocate_lock PyPyThread_create_key PyPyThread_delete_key PyPyThread_delete_key_value PyPyThread_exit_thread PyPyThread_free_lock PyPyThread_get_key_value PyPyThread_get_thread_ident PyPyThread_init_thread PyPyThread_release_lock PyPyThread_set_key_value PyPyThread_start_new_thread PyPyTime_Check PyPyTime_CheckExact PyPyTraceBack_Check PyPyTraceBack_Here PyPyTraceBack_Print PyPyTraceBack_Type DATA PyPyTraceMalloc_Track PyPyTraceMalloc_Untrack PyPyTuple_GetItem PyPyTuple_GetSlice PyPyTuple_New PyPyTuple_Pack PyPyTuple_SetItem PyPyTuple_Size PyPyTuple_Type DATA PyPyType_FromSpec PyPyType_FromSpecWithBases PyPyType_GenericAlloc PyPyType_GenericNew PyPyType_GetSlot PyPyType_IsSubtype PyPyType_Modified PyPyType_Ready PyPyType_Type DATA PyPyUnicode_Append PyPyUnicode_AppendAndDel PyPyUnicode_AsASCIIString PyPyUnicode_AsEncodedObject PyPyUnicode_AsEncodedString PyPyUnicode_AsLatin1String PyPyUnicode_AsMBCSString PyPyUnicode_AsUCS4 PyPyUnicode_AsUCS4Copy PyPyUnicode_AsUTF16String PyPyUnicode_AsUTF32String PyPyUnicode_AsUTF8 PyPyUnicode_AsUTF8AndSize PyPyUnicode_AsUTF8String PyPyUnicode_AsUnicode PyPyUnicode_AsUnicodeAndSize PyPyUnicode_AsUnicodeEscapeString PyPyUnicode_AsWideChar PyPyUnicode_AsWideCharString PyPyUnicode_Check PyPyUnicode_CheckExact PyPyUnicode_Compare PyPyUnicode_CompareWithASCIIString PyPyUnicode_Concat PyPyUnicode_Contains PyPyUnicode_Count PyPyUnicode_Decode PyPyUnicode_DecodeASCII PyPyUnicode_DecodeFSDefault PyPyUnicode_DecodeFSDefaultAndSize PyPyUnicode_DecodeLatin1 PyPyUnicode_DecodeLocale PyPyUnicode_DecodeLocaleAndSize PyPyUnicode_DecodeMBCS PyPyUnicode_DecodeUTF16 PyPyUnicode_DecodeUTF32 PyPyUnicode_DecodeUTF8 PyPyUnicode_EncodeASCII PyPyUnicode_EncodeCodePage PyPyUnicode_EncodeDecimal PyPyUnicode_EncodeFSDefault PyPyUnicode_EncodeLatin1 PyPyUnicode_EncodeLocale PyPyUnicode_EncodeMBCS PyPyUnicode_EncodeUTF8 PyPyUnicode_FSConverter PyPyUnicode_FSDecoder PyPyUnicode_Find PyPyUnicode_FindChar PyPyUnicode_Format PyPyUnicode_FromEncodedObject PyPyUnicode_FromFormat PyPyUnicode_FromFormatV PyPyUnicode_FromKindAndData PyPyUnicode_FromObject PyPyUnicode_FromOrdinal PyPyUnicode_FromString PyPyUnicode_FromStringAndSize PyPyUnicode_FromUnicode PyPyUnicode_FromWideChar PyPyUnicode_GetDefaultEncoding PyPyUnicode_GetLength PyPyUnicode_GetMax PyPyUnicode_GetSize PyPyUnicode_InternFromString PyPyUnicode_InternInPlace PyPyUnicode_Join PyPyUnicode_New PyPyUnicode_ReadChar PyPyUnicode_Replace PyPyUnicode_Resize PyPyUnicode_Split PyPyUnicode_Splitlines PyPyUnicode_Substring PyPyUnicode_Tailmatch PyPyUnicode_TransformDecimalToASCII PyPyUnicode_Type DATA PyPyUnicode_WriteChar PyPyVectorcall_Call PyPyWeakref_Check PyPyWeakref_CheckProxy PyPyWeakref_CheckRef PyPyWeakref_CheckRefExact PyPyWeakref_GET_OBJECT PyPyWeakref_GetObject PyPyWeakref_LockObject PyPyWeakref_NewProxy PyPyWeakref_NewRef PyPyWrapperDescr_Type DATA PyPy_AddPendingCall PyPy_AtExit PyPy_BuildValue PyPy_BytesWarningFlag DATA PyPy_CompileStringFlags PyPy_DebugFlag DATA PyPy_DecRef PyPy_DontWriteBytecodeFlag DATA PyPy_EnterRecursiveCall PyPy_FatalError PyPy_FindMethod PyPy_FrozenFlag DATA PyPy_GetProgramName PyPy_GetRecursionLimit PyPy_GetVersion PyPy_HashRandomizationFlag DATA PyPy_IgnoreEnvironmentFlag DATA PyPy_IncRef PyPy_InspectFlag DATA PyPy_InteractiveFlag DATA PyPy_IsInitialized PyPy_IsolatedFlag DATA PyPy_LeaveRecursiveCall PyPy_LegacyWindowsStdioFlag DATA PyPy_MakePendingCalls PyPy_NoSiteFlag DATA PyPy_NoUserSiteDirectory DATA PyPy_OptimizeFlag DATA PyPy_QuietFlag DATA PyPy_ReprEnter PyPy_ReprLeave PyPy_SetRecursionLimit PyPy_UNICODE_COPY PyPy_UNICODE_ISALNUM PyPy_UNICODE_ISALPHA PyPy_UNICODE_ISDECIMAL PyPy_UNICODE_ISDIGIT PyPy_UNICODE_ISLINEBREAK PyPy_UNICODE_ISLOWER PyPy_UNICODE_ISNUMERIC PyPy_UNICODE_ISSPACE PyPy_UNICODE_ISTITLE PyPy_UNICODE_ISUPPER PyPy_UNICODE_TODECIMAL PyPy_UNICODE_TODIGIT PyPy_UNICODE_TOLOWER PyPy_UNICODE_TONUMERIC PyPy_UNICODE_TOTITLE PyPy_UNICODE_TOUPPER PyPy_UnbufferedStdioFlag DATA PyPy_VaBuildValue PyPy_VerboseFlag DATA PySlice_AdjustIndices PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyType_GetFlags Py_FileSystemDefaultEncoding DATA _PyExc_ArithmeticError DATA _PyExc_AssertionError DATA _PyExc_AttributeError DATA _PyExc_BaseException DATA _PyExc_BlockingIOError DATA _PyExc_BrokenPipeError DATA _PyExc_BufferError DATA _PyExc_BytesWarning DATA _PyExc_ChildProcessError DATA _PyExc_ConnectionAbortedError DATA _PyExc_ConnectionError DATA _PyExc_ConnectionRefusedError DATA _PyExc_ConnectionResetError DATA _PyExc_DeprecationWarning DATA _PyExc_EOFError DATA _PyExc_Exception DATA _PyExc_FileExistsError DATA _PyExc_FileNotFoundError DATA _PyExc_FloatingPointError DATA _PyExc_FutureWarning DATA _PyExc_GeneratorExit DATA _PyExc_ImportError DATA _PyExc_ImportWarning DATA _PyExc_IndentationError DATA _PyExc_IndexError DATA _PyExc_InterruptedError DATA _PyExc_IsADirectoryError DATA _PyExc_KeyError DATA _PyExc_KeyboardInterrupt DATA _PyExc_LookupError DATA _PyExc_MemoryError DATA _PyExc_ModuleNotFoundError DATA _PyExc_NameError DATA _PyExc_NotADirectoryError DATA _PyExc_NotImplementedError DATA _PyExc_OSError DATA _PyExc_OverflowError DATA _PyExc_PendingDeprecationWarning DATA _PyExc_PermissionError DATA _PyExc_ProcessLookupError DATA _PyExc_RecursionError DATA _PyExc_ReferenceError DATA _PyExc_ResourceWarning DATA _PyExc_RuntimeError DATA _PyExc_RuntimeWarning DATA _PyExc_StopAsyncIteration DATA _PyExc_StopIteration DATA _PyExc_SyntaxError DATA _PyExc_SyntaxWarning DATA _PyExc_SystemError DATA _PyExc_SystemExit DATA _PyExc_TabError DATA _PyExc_TimeoutError DATA _PyExc_TypeError DATA _PyExc_UnboundLocalError DATA _PyExc_UnicodeDecodeError DATA _PyExc_UnicodeEncodeError DATA _PyExc_UnicodeError DATA _PyExc_UnicodeTranslateError DATA _PyExc_UnicodeWarning DATA _PyExc_UserWarning DATA _PyExc_ValueError DATA _PyExc_Warning DATA _PyExc_ZeroDivisionError DATA _PyLong_AsTime_t _PyLong_FromTime_t _PyPyArg_NoKeywords _PyPyArg_ParseTupleAndKeywords_SizeT _PyPyArg_ParseTuple_SizeT _PyPyArg_Parse_SizeT _PyPyArg_VaParseTupleAndKeywords_SizeT _PyPyArg_VaParse_SizeT _PyPyBytes_Eq _PyPyBytes_Join _PyPyBytes_Resize _PyPyComplex_AsCComplex _PyPyComplex_FromCComplex _PyPyDateTime_FromDateAndTime _PyPyDateTime_FromDateAndTimeAndFold _PyPyDateTime_FromTimestamp _PyPyDateTime_Import _PyPyDate_FromDate _PyPyDate_FromTimestamp _PyPyDelta_FromDelta _PyPyDict_GetItemStringWithError _PyPyDict_HasOnlyStringKeys _PyPyErr_FormatFromCause _PyPyErr_WriteUnraisableMsg _PyPyEval_SliceIndex _PyPyFloat_Unpack4 _PyPyFloat_Unpack8 _PyPyImport_AcquireLock _PyPyImport_ReleaseLock _PyPyList_Extend _PyPyLong_AsByteArrayO _PyPyLong_FromByteArray _PyPyLong_NumBits _PyPyLong_Sign _PyPyNamespace_New _PyPyNone_Type DATA _PyPyNotImplemented_Type DATA _PyPyObject_CallFunction_SizeT _PyPyObject_CallMethod_SizeT _PyPyObject_CallNoArg _PyPyObject_FastCall _PyPyObject_FastCallDict _PyPyObject_GC_Malloc _PyPyObject_GC_New _PyPyObject_GC_NewVar _PyPyObject_GetDictPtr _PyPyObject_New _PyPyObject_NewVar _PyPyObject_Vectorcall _PyPyPyGC_AddMemoryPressure _PyPyPy_Free _PyPyPy_Malloc _PyPySet_Next _PyPySet_NextEntry _PyPyThreadState_UncheckedGet _PyPyTimeZone_FromTimeZone _PyPyTime_FromTime _PyPyTime_FromTimeAndFold _PyPyTuple_Resize _PyPyType_Lookup _PyPyUnicode_Ready _PyPy_BuildValue_SizeT _PyPy_Dealloc _PyPy_EllipsisObject DATA _PyPy_FalseStruct DATA _PyPy_HashDouble _PyPy_HashPointer _PyPy_IsFinalizing _PyPy_NoneStruct DATA _PyPy_NotImplementedStruct DATA _PyPy_PackageContext DATA _PyPy_RestoreSignals _PyPy_TrueStruct DATA _PyPy_VaBuildValue_SizeT _PyPy_get_PyOS_InputHook _PyPy_get_capsule_type _PyPy_object_dealloc _PyPy_setfilesystemdefaultencoding _PyPy_strhex _PyPy_strhex_bytes _PyPy_subtype_dealloc _PyPy_tuple_dealloc _PyPy_tuple_new _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_noraise _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_Init _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _pypy_init_free _pypy_init_home pypy_HPyInit__debug pypy_carefully_make_gil pypy_debug_file DATA pypy_execute_source pypy_execute_source_ptr pypy_hpy_debug_close_handle pypy_hpy_debug_ctx_init pypy_hpy_debug_get_ctx pypy_hpy_debug_open_handle pypy_hpy_debug_set_ctx pypy_hpy_debug_unwrap_handle pypy_init_embedded_cffi_module pypy_init_threads pypy_main_startup pypy_setup_home pypy_thread_attach rpython_startup_code python3-dll-a-0.2.10/src/libpypy3.10-c.def000064400000000000000000000621231046102023000157640ustar 00000000000000; ; Definition file of libpypy3.10-c.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "libpypy3.10-c.dll" EXPORTS HPyInitGlobalContext__debug HPyInitGlobalContext__trace HPyInit__debug HPyInit__trace PyArg_ValidateKeywordArguments PyExpat_XML_DefaultCurrent PyExpat_XML_ErrorString PyExpat_XML_ExpatVersion PyExpat_XML_ExpatVersionInfo PyExpat_XML_ExternalEntityParserCreate PyExpat_XML_FreeContentModel PyExpat_XML_GetBase PyExpat_XML_GetBuffer PyExpat_XML_GetCurrentByteCount PyExpat_XML_GetCurrentByteIndex PyExpat_XML_GetCurrentColumnNumber PyExpat_XML_GetCurrentLineNumber PyExpat_XML_GetErrorCode PyExpat_XML_GetFeatureList PyExpat_XML_GetIdAttributeIndex PyExpat_XML_GetInputContext PyExpat_XML_GetParsingStatus PyExpat_XML_GetSpecifiedAttributeCount PyExpat_XML_MemFree PyExpat_XML_MemMalloc PyExpat_XML_MemRealloc PyExpat_XML_Parse PyExpat_XML_ParseBuffer PyExpat_XML_ParserCreate PyExpat_XML_ParserCreateNS PyExpat_XML_ParserCreate_MM PyExpat_XML_ParserFree PyExpat_XML_ParserReset PyExpat_XML_ResumeParser PyExpat_XML_SetAttlistDeclHandler PyExpat_XML_SetBase PyExpat_XML_SetBillionLaughsAttackProtectionActivationThreshold PyExpat_XML_SetBillionLaughsAttackProtectionMaximumAmplification PyExpat_XML_SetCdataSectionHandler PyExpat_XML_SetCharacterDataHandler PyExpat_XML_SetCommentHandler PyExpat_XML_SetDefaultHandler PyExpat_XML_SetDefaultHandlerExpand PyExpat_XML_SetDoctypeDeclHandler PyExpat_XML_SetElementDeclHandler PyExpat_XML_SetElementHandler PyExpat_XML_SetEncoding PyExpat_XML_SetEndCdataSectionHandler PyExpat_XML_SetEndDoctypeDeclHandler PyExpat_XML_SetEndElementHandler PyExpat_XML_SetEndNamespaceDeclHandler PyExpat_XML_SetEntityDeclHandler PyExpat_XML_SetExternalEntityRefHandler PyExpat_XML_SetExternalEntityRefHandlerArg PyExpat_XML_SetHashSalt PyExpat_XML_SetNamespaceDeclHandler PyExpat_XML_SetNotStandaloneHandler PyExpat_XML_SetNotationDeclHandler PyExpat_XML_SetParamEntityParsing PyExpat_XML_SetProcessingInstructionHandler PyExpat_XML_SetReparseDeferralEnabled PyExpat_XML_SetReturnNSTriplet PyExpat_XML_SetSkippedEntityHandler PyExpat_XML_SetStartCdataSectionHandler PyExpat_XML_SetStartDoctypeDeclHandler PyExpat_XML_SetStartElementHandler PyExpat_XML_SetStartNamespaceDeclHandler PyExpat_XML_SetUnknownEncodingHandler PyExpat_XML_SetUnparsedEntityDeclHandler PyExpat_XML_SetUserData PyExpat_XML_SetXmlDeclHandler PyExpat_XML_StopParser PyExpat_XML_UseForeignDTD PyExpat_XML_UseParserAsHandlerArg PyModule_AddType PyPyAnySet_Check PyPyAnySet_CheckExact PyPyArg_Parse PyPyArg_ParseTuple PyPyArg_ParseTupleAndKeywords PyPyArg_UnpackTuple PyPyArg_VaParse PyPyArg_VaParseTupleAndKeywords PyPyBaseObject_Type DATA PyPyBool_FromLong PyPyBool_Type DATA PyPyBuffer_FillInfo PyPyBuffer_FromContiguous PyPyBuffer_GetPointer PyPyBuffer_IsContiguous PyPyBuffer_Release PyPyBuffer_ToContiguous PyPyBufferable_Type DATA PyPyByteArray_AsString PyPyByteArray_Check PyPyByteArray_CheckExact PyPyByteArray_Concat PyPyByteArray_FromObject PyPyByteArray_FromStringAndSize PyPyByteArray_Resize PyPyByteArray_Size PyPyByteArray_Type DATA PyPyBytes_AS_STRING PyPyBytes_AsString PyPyBytes_AsStringAndSize PyPyBytes_Concat PyPyBytes_ConcatAndDel PyPyBytes_FromFormat PyPyBytes_FromFormatV PyPyBytes_FromObject PyPyBytes_FromString PyPyBytes_FromStringAndSize PyPyBytes_Size PyPyBytes_Type DATA PyPyCFunction_Call PyPyCFunction_Check PyPyCFunction_GetFunction PyPyCFunction_Type DATA PyPyCMethod_New PyPyCallIter_New PyPyCallable_Check PyPyCapsule_GetContext PyPyCapsule_GetDestructor PyPyCapsule_GetName PyPyCapsule_GetPointer PyPyCapsule_Import PyPyCapsule_IsValid PyPyCapsule_New PyPyCapsule_SetContext PyPyCapsule_SetDestructor PyPyCapsule_SetName PyPyCapsule_SetPointer PyPyCapsule_Type DATA PyPyCell_Type DATA PyPyClassMethodDescr_Type DATA PyPyClassMethod_New PyPyClassMethod_Type DATA PyPyCode_Addr2Line PyPyCode_Check PyPyCode_CheckExact PyPyCode_GetNumFree PyPyCode_New PyPyCode_NewEmpty PyPyCodec_Decode PyPyCodec_Decoder PyPyCodec_Encode PyPyCodec_Encoder PyPyCodec_IncrementalDecoder PyPyCodec_IncrementalEncoder PyPyComplex_AsCComplex PyPyComplex_Check PyPyComplex_CheckExact PyPyComplex_FromCComplex PyPyComplex_FromDoubles PyPyComplex_ImagAsDouble PyPyComplex_RealAsDouble PyPyComplex_Type DATA PyPyContextVar_Get PyPyContextVar_New PyPyContextVar_Set PyPyCoro_Check PyPyCoro_CheckExact PyPyDateTimeAPI DATA PyPyDateTime_Check PyPyDateTime_CheckExact PyPyDateTime_DATE_GET_HOUR PyPyDateTime_DATE_GET_MICROSECOND PyPyDateTime_DATE_GET_MINUTE PyPyDateTime_DATE_GET_SECOND PyPyDateTime_DATE_GET_TZINFO PyPyDateTime_DELTA_GET_DAYS PyPyDateTime_DELTA_GET_MICROSECONDS PyPyDateTime_DELTA_GET_SECONDS PyPyDateTime_FromTimestamp PyPyDateTime_GET_DAY PyPyDateTime_GET_FOLD PyPyDateTime_GET_MONTH PyPyDateTime_GET_YEAR PyPyDateTime_TIME_GET_FOLD PyPyDateTime_TIME_GET_HOUR PyPyDateTime_TIME_GET_MICROSECOND PyPyDateTime_TIME_GET_MINUTE PyPyDateTime_TIME_GET_SECOND PyPyDateTime_TIME_GET_TZINFO PyPyDate_Check PyPyDate_CheckExact PyPyDate_FromTimestamp PyPyDelta_Check PyPyDelta_CheckExact PyPyDescr_NewClassMethod PyPyDescr_NewGetSet PyPyDescr_NewMethod PyPyDictKeys_Type DATA PyPyDictProxy_Check PyPyDictProxy_CheckExact PyPyDictProxy_New PyPyDictProxy_Type DATA PyPyDictValues_Type DATA PyPyDict_Clear PyPyDict_Contains PyPyDict_Copy PyPyDict_DelItem PyPyDict_DelItemString PyPyDict_GetItem PyPyDict_GetItemString PyPyDict_GetItemWithError PyPyDict_Items PyPyDict_Keys PyPyDict_Merge PyPyDict_New PyPyDict_Next PyPyDict_SetDefault PyPyDict_SetItem PyPyDict_SetItemString PyPyDict_Size PyPyDict_Type DATA PyPyDict_Update PyPyDict_Values PyPyErr_BadArgument PyPyErr_BadInternalCall PyPyErr_CheckSignals PyPyErr_Clear PyPyErr_Display PyPyErr_ExceptionMatches PyPyErr_Fetch PyPyErr_Format PyPyErr_FormatV PyPyErr_GetExcInfo PyPyErr_GivenExceptionMatches PyPyErr_NewException PyPyErr_NewExceptionWithDoc PyPyErr_NoMemory PyPyErr_NormalizeException PyPyErr_Occurred PyPyErr_Print PyPyErr_PrintEx PyPyErr_Restore PyPyErr_SetExcFromWindowsErrWithFilenameObject PyPyErr_SetExcFromWindowsErrWithFilenameObjects PyPyErr_SetExcInfo PyPyErr_SetFromErrno PyPyErr_SetFromErrnoWithFilename PyPyErr_SetFromErrnoWithFilenameObject PyPyErr_SetFromErrnoWithFilenameObjects PyPyErr_SetFromWindowsErr PyPyErr_SetFromWindowsErrWithFilename PyPyErr_SetNone PyPyErr_SetObject PyPyErr_SetString PyPyErr_Warn PyPyErr_WarnEx PyPyErr_WarnExplicit PyPyErr_WarnFormat PyPyErr_WriteUnraisable PyPyEval_AcquireThread PyPyEval_CallFunction PyPyEval_CallMethod PyPyEval_CallObjectWithKeywords PyPyEval_EvalCode PyPyEval_GetBuiltins PyPyEval_GetFrame PyPyEval_GetGlobals PyPyEval_GetLocals PyPyEval_InitThreads PyPyEval_MergeCompilerFlags PyPyEval_ReleaseThread PyPyEval_RestoreThread PyPyEval_SaveThread PyPyEval_ThreadsInitialized PyPyExc_ArithmeticError DATA PyPyExc_AssertionError DATA PyPyExc_AttributeError DATA PyPyExc_BaseException DATA PyPyExc_BlockingIOError DATA PyPyExc_BrokenPipeError DATA PyPyExc_BufferError DATA PyPyExc_BytesWarning DATA PyPyExc_ChildProcessError DATA PyPyExc_ConnectionAbortedError DATA PyPyExc_ConnectionError DATA PyPyExc_ConnectionRefusedError DATA PyPyExc_ConnectionResetError DATA PyPyExc_DeprecationWarning DATA PyPyExc_EOFError DATA PyPyExc_EncodingWarning DATA PyPyExc_Exception DATA PyPyExc_FileExistsError DATA PyPyExc_FileNotFoundError DATA PyPyExc_FloatingPointError DATA PyPyExc_FutureWarning DATA PyPyExc_GeneratorExit DATA PyPyExc_ImportError DATA PyPyExc_ImportWarning DATA PyPyExc_IndentationError DATA PyPyExc_IndexError DATA PyPyExc_InterruptedError DATA PyPyExc_IsADirectoryError DATA PyPyExc_KeyError DATA PyPyExc_KeyboardInterrupt DATA PyPyExc_LookupError DATA PyPyExc_MemoryError DATA PyPyExc_ModuleNotFoundError DATA PyPyExc_NameError DATA PyPyExc_NotADirectoryError DATA PyPyExc_NotImplementedError DATA PyPyExc_OSError DATA PyPyExc_OverflowError DATA PyPyExc_PendingDeprecationWarning DATA PyPyExc_PermissionError DATA PyPyExc_ProcessLookupError DATA PyPyExc_RecursionError DATA PyPyExc_ReferenceError DATA PyPyExc_ResourceWarning DATA PyPyExc_RuntimeError DATA PyPyExc_RuntimeWarning DATA PyPyExc_StopAsyncIteration DATA PyPyExc_StopIteration DATA PyPyExc_SyntaxError DATA PyPyExc_SyntaxWarning DATA PyPyExc_SystemError DATA PyPyExc_SystemExit DATA PyPyExc_TabError DATA PyPyExc_TimeoutError DATA PyPyExc_TypeError DATA PyPyExc_UnboundLocalError DATA PyPyExc_UnicodeDecodeError DATA PyPyExc_UnicodeEncodeError DATA PyPyExc_UnicodeError DATA PyPyExc_UnicodeTranslateError DATA PyPyExc_UnicodeWarning DATA PyPyExc_UserWarning DATA PyPyExc_ValueError DATA PyPyExc_Warning DATA PyPyExc_ZeroDivisionError DATA PyPyExceptionInstance_Class PyPyException_GetCause PyPyException_GetContext PyPyException_GetTraceback PyPyException_SetCause PyPyException_SetContext PyPyException_SetTraceback PyPyFile_FromFd PyPyFile_FromString PyPyFile_GetLine PyPyFile_WriteObject PyPyFile_WriteString PyPyFloat_AS_DOUBLE PyPyFloat_AsDouble PyPyFloat_Check PyPyFloat_CheckExact PyPyFloat_FromDouble PyPyFloat_FromString PyPyFloat_Type DATA PyPyFrame_New PyPyFrozenSet_Check PyPyFrozenSet_CheckExact PyPyFrozenSet_New PyPyFrozenSet_Type DATA PyPyFunction_Check PyPyFunction_CheckExact PyPyFunction_GetCode PyPyFunction_Type DATA PyPyGC_Disable PyPyGC_Enable PyPyGC_IsEnabled PyPyGILState_Check PyPyGILState_Ensure PyPyGILState_Release PyPyGen_Check PyPyGen_CheckExact PyPyGetSetDescr_Type DATA PyPyImport_AddModule PyPyImport_ExecCodeModule PyPyImport_ExecCodeModuleEx PyPyImport_GetModule PyPyImport_GetModuleDict PyPyImport_Import PyPyImport_ImportModule PyPyImport_ImportModuleLevelObject PyPyImport_ImportModuleNoBlock PyPyImport_ReloadModule PyPyIndex_Check PyPyInstanceMethod_Check PyPyInstanceMethod_Function PyPyInstanceMethod_GET_FUNCTION PyPyInstanceMethod_New PyPyInstanceMethod_Type DATA PyPyInterpreterState_GetID PyPyInterpreterState_Head PyPyInterpreterState_Next PyPyIter_Check PyPyIter_Next PyPyIter_Send PyPyList_Append PyPyList_AsTuple PyPyList_GET_ITEM PyPyList_GET_SIZE PyPyList_GetItem PyPyList_GetSlice PyPyList_Insert PyPyList_New PyPyList_Reverse PyPyList_SET_ITEM PyPyList_SetItem PyPyList_SetSlice PyPyList_Size PyPyList_Sort PyPyList_Type DATA PyPyLong_AsDouble PyPyLong_AsLong PyPyLong_AsLongAndOverflow PyPyLong_AsLongLong PyPyLong_AsLongLongAndOverflow PyPyLong_AsSize_t PyPyLong_AsSsize_t PyPyLong_AsUnsignedLong PyPyLong_AsUnsignedLongLong PyPyLong_AsUnsignedLongLongMask PyPyLong_AsUnsignedLongMask PyPyLong_AsVoidPtr PyPyLong_FromDouble PyPyLong_FromLong PyPyLong_FromLongLong PyPyLong_FromSize_t PyPyLong_FromSsize_t PyPyLong_FromString PyPyLong_FromUnicode PyPyLong_FromUnicodeObject PyPyLong_FromUnsignedLong PyPyLong_FromUnsignedLongLong PyPyLong_FromVoidPtr PyPyLong_Type DATA PyPyMapping_Check PyPyMapping_GetItemString PyPyMapping_HasKey PyPyMapping_HasKeyString PyPyMapping_Items PyPyMapping_Keys PyPyMapping_Length PyPyMapping_SetItemString PyPyMapping_Size PyPyMapping_Values PyPyMarshal_ReadObjectFromString PyPyMarshal_WriteObjectToString PyPyMem_Calloc PyPyMem_Free PyPyMem_Malloc PyPyMem_RawCalloc PyPyMem_RawFree PyPyMem_RawMalloc PyPyMem_RawRealloc PyPyMem_Realloc PyPyMemberDescr_Type DATA PyPyMember_GetOne PyPyMember_SetOne PyPyMemoryView_Check PyPyMemoryView_CheckExact PyPyMemoryView_FromBuffer PyPyMemoryView_FromMemory PyPyMemoryView_FromObject PyPyMemoryView_GetContiguous PyPyMemoryView_Type DATA PyPyMethodDescr_Check PyPyMethodDescr_CheckExact PyPyMethodDescr_Type DATA PyPyMethod_Check PyPyMethod_CheckExact PyPyMethod_Function PyPyMethod_New PyPyMethod_Self PyPyMethod_Type DATA PyPyModuleDef_Init PyPyModule_AddFunctions PyPyModule_AddIntConstant PyPyModule_AddObject PyPyModule_AddObjectRef PyPyModule_AddStringConstant PyPyModule_Check PyPyModule_CheckExact PyPyModule_Create2 PyPyModule_ExecDef PyPyModule_GetDef PyPyModule_GetDict PyPyModule_GetFilenameObject PyPyModule_GetName PyPyModule_GetNameObject PyPyModule_GetState PyPyModule_New PyPyModule_NewObject PyPyModule_Type DATA PyPyNumber_Absolute PyPyNumber_Add PyPyNumber_And PyPyNumber_AsSsize_t PyPyNumber_Check PyPyNumber_Divide PyPyNumber_Divmod PyPyNumber_Float PyPyNumber_FloorDivide PyPyNumber_InPlaceAdd PyPyNumber_InPlaceAnd PyPyNumber_InPlaceDivide PyPyNumber_InPlaceFloorDivide PyPyNumber_InPlaceLshift PyPyNumber_InPlaceMatrixMultiply PyPyNumber_InPlaceMultiply PyPyNumber_InPlaceOr PyPyNumber_InPlacePower PyPyNumber_InPlaceRemainder PyPyNumber_InPlaceRshift PyPyNumber_InPlaceSubtract PyPyNumber_InPlaceTrueDivide PyPyNumber_InPlaceXor PyPyNumber_Index PyPyNumber_Invert PyPyNumber_Long PyPyNumber_Lshift PyPyNumber_MatrixMultiply PyPyNumber_Multiply PyPyNumber_Negative PyPyNumber_Or PyPyNumber_Positive PyPyNumber_Power PyPyNumber_Remainder PyPyNumber_Rshift PyPyNumber_Subtract PyPyNumber_ToBase PyPyNumber_TrueDivide PyPyNumber_Xor PyPyOS_AfterFork PyPyOS_FSPath PyPyOS_InputHook DATA PyPyOS_InterruptOccurred PyPyOS_double_to_string PyPyOS_getsig PyPyOS_setsig PyPyOS_snprintf PyPyOS_string_to_double PyPyOS_vsnprintf PyPyObject_ASCII PyPyObject_AsCharBuffer PyPyObject_AsFileDescriptor PyPyObject_AsReadBuffer PyPyObject_AsWriteBuffer PyPyObject_Bytes PyPyObject_Call PyPyObject_CallFinalizerFromDealloc PyPyObject_CallFunction PyPyObject_CallFunctionObjArgs PyPyObject_CallMethod PyPyObject_CallMethodNoArgs PyPyObject_CallMethodObjArgs PyPyObject_CallMethodOneArg PyPyObject_CallNoArgs PyPyObject_CallObject PyPyObject_CallOneArg PyPyObject_Calloc PyPyObject_CheckReadBuffer PyPyObject_ClearWeakRefs PyPyObject_Del PyPyObject_DelAttr PyPyObject_DelAttrString PyPyObject_DelItem PyPyObject_DelItemString PyPyObject_Dir PyPyObject_Format PyPyObject_Free PyPyObject_GC_Del PyPyObject_GC_IsFinalized PyPyObject_GC_IsTracked PyPyObject_GenericGetAttr PyPyObject_GenericGetDict PyPyObject_GenericSetAttr PyPyObject_GenericSetDict PyPyObject_GetAttr PyPyObject_GetAttrString PyPyObject_GetBuffer PyPyObject_GetItem PyPyObject_GetIter PyPyObject_HasAttr PyPyObject_HasAttrString PyPyObject_Hash PyPyObject_HashNotImplemented PyPyObject_Init PyPyObject_InitVar PyPyObject_IsInstance PyPyObject_IsSubclass PyPyObject_IsTrue PyPyObject_LengthHint PyPyObject_Malloc PyPyObject_Not PyPyObject_Print PyPyObject_Realloc PyPyObject_Repr PyPyObject_RichCompare PyPyObject_RichCompareBool PyPyObject_SelfIter PyPyObject_SetAttr PyPyObject_SetAttrString PyPyObject_SetItem PyPyObject_Size PyPyObject_Str PyPyObject_Type PyPyObject_Unicode PyPyObject_Vectorcall PyPyObject_VectorcallDict PyPyObject_VectorcallMethod PyPyProperty_Type DATA PyPyRange_Type DATA PyPyReversed_Type DATA PyPyRun_File PyPyRun_SimpleString PyPyRun_String PyPyRun_StringFlags PyPySeqIter_New PyPySequence_Check PyPySequence_Concat PyPySequence_Contains PyPySequence_DelItem PyPySequence_DelSlice PyPySequence_Fast PyPySequence_Fast_GET_ITEM PyPySequence_Fast_GET_SIZE PyPySequence_Fast_ITEMS PyPySequence_GetItem PyPySequence_GetSlice PyPySequence_ITEM PyPySequence_InPlaceConcat PyPySequence_InPlaceRepeat PyPySequence_Index PyPySequence_Length PyPySequence_List PyPySequence_Repeat PyPySequence_SetItem PyPySequence_SetSlice PyPySequence_Size PyPySequence_Tuple PyPySet_Add PyPySet_Check PyPySet_CheckExact PyPySet_Clear PyPySet_Contains PyPySet_Discard PyPySet_GET_SIZE PyPySet_New PyPySet_Pop PyPySet_Size PyPySet_Type DATA PyPySlice_AdjustIndices PyPySlice_GetIndices PyPySlice_GetIndicesEx PyPySlice_New PyPySlice_Type DATA PyPySlice_Unpack PyPyState_AddModule PyPyState_FindModule PyPyState_RemoveModule PyPyStaticMethod_New PyPyStaticMethod_Type DATA PyPyStructSequence_GetItem PyPyStructSequence_InitType PyPyStructSequence_InitType2 PyPyStructSequence_New PyPyStructSequence_NewType PyPyStructSequence_SetItem PyPyStructSequence_UnnamedField DATA PyPySys_GetObject PyPySys_SetObject PyPySys_WriteStderr PyPySys_WriteStdout PyPyTZInfo_Check PyPyTZInfo_CheckExact PyPyThreadState_Clear PyPyThreadState_Delete PyPyThreadState_DeleteCurrent PyPyThreadState_Get PyPyThreadState_GetDict PyPyThreadState_New PyPyThreadState_SetAsyncExc PyPyThreadState_Swap PyPyThread_ReInitTLS PyPyThread_acquire_lock PyPyThread_allocate_lock PyPyThread_create_key PyPyThread_delete_key PyPyThread_delete_key_value PyPyThread_exit_thread PyPyThread_free_lock PyPyThread_get_key_value PyPyThread_get_thread_ident PyPyThread_init_thread PyPyThread_release_lock PyPyThread_set_key_value PyPyThread_start_new_thread PyPyTime_Check PyPyTime_CheckExact PyPyTraceBack_Check PyPyTraceBack_Here PyPyTraceBack_Print PyPyTraceBack_Type DATA PyPyTraceMalloc_Track PyPyTraceMalloc_Untrack PyPyTuple_GetItem PyPyTuple_GetSlice PyPyTuple_New PyPyTuple_Pack PyPyTuple_SetItem PyPyTuple_Size PyPyTuple_Type DATA PyPyType_FromModuleAndSpec PyPyType_FromSpec PyPyType_FromSpecWithBases PyPyType_GenericAlloc PyPyType_GenericNew PyPyType_GetModule PyPyType_GetModuleState PyPyType_GetSlot PyPyType_IsSubtype PyPyType_Modified PyPyType_Ready PyPyType_Type DATA PyPyUnicode_Append PyPyUnicode_AppendAndDel PyPyUnicode_AsASCIIString PyPyUnicode_AsEncodedObject PyPyUnicode_AsEncodedString PyPyUnicode_AsLatin1String PyPyUnicode_AsMBCSString PyPyUnicode_AsUCS4 PyPyUnicode_AsUCS4Copy PyPyUnicode_AsUTF16String PyPyUnicode_AsUTF32String PyPyUnicode_AsUTF8 PyPyUnicode_AsUTF8AndSize PyPyUnicode_AsUTF8String PyPyUnicode_AsUnicode PyPyUnicode_AsUnicodeAndSize PyPyUnicode_AsUnicodeEscapeString PyPyUnicode_AsWideChar PyPyUnicode_AsWideCharString PyPyUnicode_Check PyPyUnicode_CheckExact PyPyUnicode_Compare PyPyUnicode_CompareWithASCIIString PyPyUnicode_Concat PyPyUnicode_Contains PyPyUnicode_Count PyPyUnicode_Decode PyPyUnicode_DecodeASCII PyPyUnicode_DecodeFSDefault PyPyUnicode_DecodeFSDefaultAndSize PyPyUnicode_DecodeLatin1 PyPyUnicode_DecodeLocale PyPyUnicode_DecodeLocaleAndSize PyPyUnicode_DecodeMBCS PyPyUnicode_DecodeUTF16 PyPyUnicode_DecodeUTF32 PyPyUnicode_DecodeUTF8 PyPyUnicode_EncodeASCII PyPyUnicode_EncodeCodePage PyPyUnicode_EncodeDecimal PyPyUnicode_EncodeFSDefault PyPyUnicode_EncodeLatin1 PyPyUnicode_EncodeLocale PyPyUnicode_EncodeMBCS PyPyUnicode_EncodeUTF8 PyPyUnicode_FSConverter PyPyUnicode_FSDecoder PyPyUnicode_Find PyPyUnicode_FindChar PyPyUnicode_Format PyPyUnicode_FromEncodedObject PyPyUnicode_FromFormat PyPyUnicode_FromFormatV PyPyUnicode_FromKindAndData PyPyUnicode_FromObject PyPyUnicode_FromOrdinal PyPyUnicode_FromString PyPyUnicode_FromStringAndSize PyPyUnicode_FromUnicode PyPyUnicode_FromWideChar PyPyUnicode_GetDefaultEncoding PyPyUnicode_GetLength PyPyUnicode_GetMax PyPyUnicode_GetSize PyPyUnicode_InternFromString PyPyUnicode_InternInPlace PyPyUnicode_Join PyPyUnicode_New PyPyUnicode_ReadChar PyPyUnicode_Replace PyPyUnicode_Resize PyPyUnicode_Split PyPyUnicode_Splitlines PyPyUnicode_Substring PyPyUnicode_Tailmatch PyPyUnicode_TransformDecimalToASCII PyPyUnicode_Type DATA PyPyUnicode_WriteChar PyPyVectorcall_Call PyPyWeakref_Check PyPyWeakref_CheckProxy PyPyWeakref_CheckRef PyPyWeakref_CheckRefExact PyPyWeakref_GET_OBJECT PyPyWeakref_GetObject PyPyWeakref_LockObject PyPyWeakref_NewProxy PyPyWeakref_NewRef PyPyWrapperDescr_Type DATA PyPy_AddPendingCall PyPy_AtExit PyPy_BuildValue PyPy_BytesWarningFlag DATA PyPy_CompileStringFlags PyPy_DebugFlag DATA PyPy_DecRef PyPy_DontWriteBytecodeFlag DATA PyPy_EnterRecursiveCall PyPy_FatalError PyPy_FindMethod PyPy_FrozenFlag DATA PyPy_GenericAlias PyPy_GetProgramName PyPy_GetRecursionLimit PyPy_GetVersion PyPy_HashRandomizationFlag DATA PyPy_IgnoreEnvironmentFlag DATA PyPy_IncRef PyPy_InspectFlag DATA PyPy_InteractiveFlag DATA PyPy_Is PyPy_IsInitialized PyPy_IsolatedFlag DATA PyPy_LeaveRecursiveCall PyPy_LegacyWindowsStdioFlag DATA PyPy_MakePendingCalls PyPy_NoSiteFlag DATA PyPy_NoUserSiteDirectory DATA PyPy_OptimizeFlag DATA PyPy_QuietFlag DATA PyPy_ReprEnter PyPy_ReprLeave PyPy_SetRecursionLimit PyPy_UNICODE_COPY PyPy_UNICODE_ISALNUM PyPy_UNICODE_ISALPHA PyPy_UNICODE_ISDECIMAL PyPy_UNICODE_ISDIGIT PyPy_UNICODE_ISLINEBREAK PyPy_UNICODE_ISLOWER PyPy_UNICODE_ISNUMERIC PyPy_UNICODE_ISSPACE PyPy_UNICODE_ISTITLE PyPy_UNICODE_ISUPPER PyPy_UNICODE_TODECIMAL PyPy_UNICODE_TODIGIT PyPy_UNICODE_TOLOWER PyPy_UNICODE_TONUMERIC PyPy_UNICODE_TOTITLE PyPy_UNICODE_TOUPPER PyPy_UnbufferedStdioFlag DATA PyPy_VaBuildValue PyPy_VerboseFlag DATA PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyType_GetFlags Py_FileSystemDefaultEncoding DATA _PyArg_BadArgument _PyArg_CheckPositional _PyArg_NoKeywords _PyArg_NoKwnames _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseStackAndKeywords_SizeT _PyArg_ParseStack_SizeT _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywordsFast_SizeT _PyArg_UnpackKeywords _PyArg_UnpackStack _PyArg_VaParseTupleAndKeywordsFast _PyArg_VaParseTupleAndKeywordsFast_SizeT _PyExc_ArithmeticError DATA _PyExc_AssertionError DATA _PyExc_AttributeError DATA _PyExc_BaseException DATA _PyExc_BlockingIOError DATA _PyExc_BrokenPipeError DATA _PyExc_BufferError DATA _PyExc_BytesWarning DATA _PyExc_ChildProcessError DATA _PyExc_ConnectionAbortedError DATA _PyExc_ConnectionError DATA _PyExc_ConnectionRefusedError DATA _PyExc_ConnectionResetError DATA _PyExc_DeprecationWarning DATA _PyExc_EOFError DATA _PyExc_EncodingWarning DATA _PyExc_Exception DATA _PyExc_FileExistsError DATA _PyExc_FileNotFoundError DATA _PyExc_FloatingPointError DATA _PyExc_FutureWarning DATA _PyExc_GeneratorExit DATA _PyExc_ImportError DATA _PyExc_ImportWarning DATA _PyExc_IndentationError DATA _PyExc_IndexError DATA _PyExc_InterruptedError DATA _PyExc_IsADirectoryError DATA _PyExc_KeyError DATA _PyExc_KeyboardInterrupt DATA _PyExc_LookupError DATA _PyExc_MemoryError DATA _PyExc_ModuleNotFoundError DATA _PyExc_NameError DATA _PyExc_NotADirectoryError DATA _PyExc_NotImplementedError DATA _PyExc_OSError DATA _PyExc_OverflowError DATA _PyExc_PendingDeprecationWarning DATA _PyExc_PermissionError DATA _PyExc_ProcessLookupError DATA _PyExc_RecursionError DATA _PyExc_ReferenceError DATA _PyExc_ResourceWarning DATA _PyExc_RuntimeError DATA _PyExc_RuntimeWarning DATA _PyExc_StopAsyncIteration DATA _PyExc_StopIteration DATA _PyExc_SyntaxError DATA _PyExc_SyntaxWarning DATA _PyExc_SystemError DATA _PyExc_SystemExit DATA _PyExc_TabError DATA _PyExc_TimeoutError DATA _PyExc_TypeError DATA _PyExc_UnboundLocalError DATA _PyExc_UnicodeDecodeError DATA _PyExc_UnicodeEncodeError DATA _PyExc_UnicodeError DATA _PyExc_UnicodeTranslateError DATA _PyExc_UnicodeWarning DATA _PyExc_UserWarning DATA _PyExc_ValueError DATA _PyExc_Warning DATA _PyExc_ZeroDivisionError DATA _PyLong_AsTime_t _PyLong_FromTime_t _PyPyArg_ParseTupleAndKeywords_SizeT _PyPyArg_ParseTuple_SizeT _PyPyArg_Parse_SizeT _PyPyArg_VaParseTupleAndKeywords_SizeT _PyPyArg_VaParse_SizeT _PyPyBytes_Eq _PyPyBytes_Join _PyPyBytes_Resize _PyPyComplex_AsCComplex _PyPyComplex_FromCComplex _PyPyDateTime_FromDateAndTime _PyPyDateTime_FromDateAndTimeAndFold _PyPyDateTime_FromTimestamp _PyPyDateTime_Import _PyPyDate_FromDate _PyPyDate_FromTimestamp _PyPyDelta_FromDelta _PyPyDict_GetItemStringWithError _PyPyDict_HasOnlyStringKeys _PyPyErr_FormatFromCause _PyPyErr_WriteUnraisableMsg _PyPyEval_GetAsyncGenFinalizer _PyPyEval_GetAsyncGenFirstiter _PyPyEval_SliceIndex _PyPyFloat_Unpack4 _PyPyFloat_Unpack8 _PyPyImport_AcquireLock _PyPyImport_ReleaseLock _PyPyList_Extend _PyPyLong_AsByteArrayO _PyPyLong_AsInt _PyPyLong_FromByteArray _PyPyLong_NumBits _PyPyLong_Sign _PyPyNamespace_New _PyPyNone_Type DATA _PyPyNotImplemented_Type DATA _PyPyObject_CallFunction_SizeT _PyPyObject_CallMethod_SizeT _PyPyObject_FastCall _PyPyObject_GC_Malloc _PyPyObject_GC_New _PyPyObject_GC_NewVar _PyPyObject_GetDictPtr _PyPyObject_New _PyPyObject_NewVar _PyPyPyGC_AddMemoryPressure _PyPyPy_Free _PyPyPy_Malloc _PyPySet_Next _PyPySet_NextEntry _PyPyThreadState_UncheckedGet _PyPyTimeZone_FromTimeZone _PyPyTime_FromTime _PyPyTime_FromTimeAndFold _PyPyTuple_Resize _PyPyType_GetModuleByDef _PyPyType_Lookup _PyPyType_Name _PyPyUnicode_EQ _PyPyUnicode_EqualToASCIIString _PyPyUnicode_Ready _PyPy_BuildValue_SizeT _PyPy_Dealloc _PyPy_EllipsisObject DATA _PyPy_FalseStruct DATA _PyPy_HashDouble _PyPy_HashPointer _PyPy_IsFinalizing _PyPy_NoneStruct DATA _PyPy_NotImplementedStruct DATA _PyPy_PackageContext DATA _PyPy_RestoreSignals _PyPy_TrueStruct DATA _PyPy_VaBuildValue_SizeT _PyPy_get_PyOS_InputHook _PyPy_get_capsule_type _PyPy_object_dealloc _PyPy_setfilesystemdefaultencoding _PyPy_strhex _PyPy_strhex_bytes _PyPy_subtype_dealloc _PyPy_tuple_dealloc _PyPy_tuple_new _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_noraise _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_Init _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _Py_NewReference _Py_VaBuildStack _Py_VaBuildStack_SizeT _pypy_init_executable _pypy_init_free _pypy_init_home get_required_hpy_major_version__debug get_required_hpy_major_version__trace get_required_hpy_minor_version__debug get_required_hpy_minor_version__trace os_readlink_impl os_symlink_impl os_unlink_impl pypy_HPyInit__debug pypy_HPyInit__trace pypy_carefully_make_gil pypy_debug_file DATA pypy_execute_source pypy_execute_source_ptr pypy_hpy_debug_close_handle pypy_hpy_debug_ctx_init pypy_hpy_debug_get_ctx pypy_hpy_debug_open_handle pypy_hpy_debug_set_ctx pypy_hpy_debug_unwrap_handle pypy_hpy_trace_ctx_init pypy_hpy_trace_get_ctx pypy_hpy_trace_get_func_name pypy_hpy_trace_get_nfunc pypy_init_embedded_cffi_module pypy_init_threads pypy_main_startup pypy_setup_home pypy_thread_attach rpython_startup_code python3-dll-a-0.2.10/src/libpypy3.9-c.def000064400000000000000000000614201046102023000157130ustar 00000000000000; ; Definition file of libpypy3.9-c.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "libpypy3.9-c.dll" EXPORTS HPyInitGlobalContext__debug HPyInitGlobalContext__trace HPyInit__debug HPyInit__trace PyArg_ValidateKeywordArguments PyExpat_XML_DefaultCurrent PyExpat_XML_ErrorString PyExpat_XML_ExpatVersion PyExpat_XML_ExpatVersionInfo PyExpat_XML_ExternalEntityParserCreate PyExpat_XML_FreeContentModel PyExpat_XML_GetBase PyExpat_XML_GetBuffer PyExpat_XML_GetCurrentByteCount PyExpat_XML_GetCurrentByteIndex PyExpat_XML_GetCurrentColumnNumber PyExpat_XML_GetCurrentLineNumber PyExpat_XML_GetErrorCode PyExpat_XML_GetFeatureList PyExpat_XML_GetIdAttributeIndex PyExpat_XML_GetInputContext PyExpat_XML_GetParsingStatus PyExpat_XML_GetSpecifiedAttributeCount PyExpat_XML_MemFree PyExpat_XML_MemMalloc PyExpat_XML_MemRealloc PyExpat_XML_Parse PyExpat_XML_ParseBuffer PyExpat_XML_ParserCreate PyExpat_XML_ParserCreateNS PyExpat_XML_ParserCreate_MM PyExpat_XML_ParserFree PyExpat_XML_ParserReset PyExpat_XML_ResumeParser PyExpat_XML_SetAttlistDeclHandler PyExpat_XML_SetBase PyExpat_XML_SetBillionLaughsAttackProtectionActivationThreshold PyExpat_XML_SetBillionLaughsAttackProtectionMaximumAmplification PyExpat_XML_SetCdataSectionHandler PyExpat_XML_SetCharacterDataHandler PyExpat_XML_SetCommentHandler PyExpat_XML_SetDefaultHandler PyExpat_XML_SetDefaultHandlerExpand PyExpat_XML_SetDoctypeDeclHandler PyExpat_XML_SetElementDeclHandler PyExpat_XML_SetElementHandler PyExpat_XML_SetEncoding PyExpat_XML_SetEndCdataSectionHandler PyExpat_XML_SetEndDoctypeDeclHandler PyExpat_XML_SetEndElementHandler PyExpat_XML_SetEndNamespaceDeclHandler PyExpat_XML_SetEntityDeclHandler PyExpat_XML_SetExternalEntityRefHandler PyExpat_XML_SetExternalEntityRefHandlerArg PyExpat_XML_SetHashSalt PyExpat_XML_SetNamespaceDeclHandler PyExpat_XML_SetNotStandaloneHandler PyExpat_XML_SetNotationDeclHandler PyExpat_XML_SetParamEntityParsing PyExpat_XML_SetProcessingInstructionHandler PyExpat_XML_SetReparseDeferralEnabled PyExpat_XML_SetReturnNSTriplet PyExpat_XML_SetSkippedEntityHandler PyExpat_XML_SetStartCdataSectionHandler PyExpat_XML_SetStartDoctypeDeclHandler PyExpat_XML_SetStartElementHandler PyExpat_XML_SetStartNamespaceDeclHandler PyExpat_XML_SetUnknownEncodingHandler PyExpat_XML_SetUnparsedEntityDeclHandler PyExpat_XML_SetUserData PyExpat_XML_SetXmlDeclHandler PyExpat_XML_StopParser PyExpat_XML_UseForeignDTD PyExpat_XML_UseParserAsHandlerArg PyModule_AddType PyPyAnySet_Check PyPyAnySet_CheckExact PyPyArg_Parse PyPyArg_ParseTuple PyPyArg_ParseTupleAndKeywords PyPyArg_UnpackTuple PyPyArg_VaParse PyPyArg_VaParseTupleAndKeywords PyPyBaseObject_Type DATA PyPyBool_FromLong PyPyBool_Type DATA PyPyBuffer_FillInfo PyPyBuffer_FromContiguous PyPyBuffer_GetPointer PyPyBuffer_IsContiguous PyPyBuffer_Release PyPyBuffer_ToContiguous PyPyBufferable_Type DATA PyPyByteArray_AsString PyPyByteArray_Check PyPyByteArray_CheckExact PyPyByteArray_Concat PyPyByteArray_FromObject PyPyByteArray_FromStringAndSize PyPyByteArray_Resize PyPyByteArray_Size PyPyByteArray_Type DATA PyPyBytes_AS_STRING PyPyBytes_AsString PyPyBytes_AsStringAndSize PyPyBytes_Concat PyPyBytes_ConcatAndDel PyPyBytes_FromFormat PyPyBytes_FromFormatV PyPyBytes_FromObject PyPyBytes_FromString PyPyBytes_FromStringAndSize PyPyBytes_Size PyPyBytes_Type DATA PyPyCFunction_Call PyPyCFunction_Check PyPyCFunction_GetFunction PyPyCFunction_Type DATA PyPyCMethod_New PyPyCallIter_New PyPyCallable_Check PyPyCapsule_GetContext PyPyCapsule_GetDestructor PyPyCapsule_GetName PyPyCapsule_GetPointer PyPyCapsule_Import PyPyCapsule_IsValid PyPyCapsule_New PyPyCapsule_SetContext PyPyCapsule_SetDestructor PyPyCapsule_SetName PyPyCapsule_SetPointer PyPyCapsule_Type DATA PyPyCell_Type DATA PyPyClassMethodDescr_Type DATA PyPyClassMethod_New PyPyClassMethod_Type DATA PyPyCode_Addr2Line PyPyCode_Check PyPyCode_CheckExact PyPyCode_GetNumFree PyPyCode_New PyPyCode_NewEmpty PyPyCodec_Decode PyPyCodec_Decoder PyPyCodec_Encode PyPyCodec_Encoder PyPyCodec_IncrementalDecoder PyPyCodec_IncrementalEncoder PyPyComplex_AsCComplex PyPyComplex_Check PyPyComplex_CheckExact PyPyComplex_FromCComplex PyPyComplex_FromDoubles PyPyComplex_ImagAsDouble PyPyComplex_RealAsDouble PyPyComplex_Type DATA PyPyContextVar_Get PyPyContextVar_New PyPyContextVar_Set PyPyCoro_Check PyPyCoro_CheckExact PyPyDateTimeAPI DATA PyPyDateTime_Check PyPyDateTime_CheckExact PyPyDateTime_DATE_GET_HOUR PyPyDateTime_DATE_GET_MICROSECOND PyPyDateTime_DATE_GET_MINUTE PyPyDateTime_DATE_GET_SECOND PyPyDateTime_DELTA_GET_DAYS PyPyDateTime_DELTA_GET_MICROSECONDS PyPyDateTime_DELTA_GET_SECONDS PyPyDateTime_FromTimestamp PyPyDateTime_GET_DAY PyPyDateTime_GET_FOLD PyPyDateTime_GET_MONTH PyPyDateTime_GET_YEAR PyPyDateTime_TIME_GET_FOLD PyPyDateTime_TIME_GET_HOUR PyPyDateTime_TIME_GET_MICROSECOND PyPyDateTime_TIME_GET_MINUTE PyPyDateTime_TIME_GET_SECOND PyPyDate_Check PyPyDate_CheckExact PyPyDate_FromTimestamp PyPyDelta_Check PyPyDelta_CheckExact PyPyDescr_NewClassMethod PyPyDescr_NewGetSet PyPyDescr_NewMethod PyPyDictKeys_Type DATA PyPyDictProxy_Check PyPyDictProxy_CheckExact PyPyDictProxy_New PyPyDictProxy_Type DATA PyPyDictValues_Type DATA PyPyDict_Clear PyPyDict_Contains PyPyDict_Copy PyPyDict_DelItem PyPyDict_DelItemString PyPyDict_GetItem PyPyDict_GetItemString PyPyDict_GetItemWithError PyPyDict_Items PyPyDict_Keys PyPyDict_Merge PyPyDict_New PyPyDict_Next PyPyDict_SetDefault PyPyDict_SetItem PyPyDict_SetItemString PyPyDict_Size PyPyDict_Type DATA PyPyDict_Update PyPyDict_Values PyPyErr_BadArgument PyPyErr_BadInternalCall PyPyErr_CheckSignals PyPyErr_Clear PyPyErr_Display PyPyErr_ExceptionMatches PyPyErr_Fetch PyPyErr_Format PyPyErr_FormatV PyPyErr_GetExcInfo PyPyErr_GivenExceptionMatches PyPyErr_NewException PyPyErr_NewExceptionWithDoc PyPyErr_NoMemory PyPyErr_NormalizeException PyPyErr_Occurred PyPyErr_Print PyPyErr_PrintEx PyPyErr_Restore PyPyErr_SetExcFromWindowsErrWithFilenameObject PyPyErr_SetExcFromWindowsErrWithFilenameObjects PyPyErr_SetExcInfo PyPyErr_SetFromErrno PyPyErr_SetFromErrnoWithFilename PyPyErr_SetFromErrnoWithFilenameObject PyPyErr_SetFromErrnoWithFilenameObjects PyPyErr_SetFromWindowsErr PyPyErr_SetFromWindowsErrWithFilename PyPyErr_SetInterrupt PyPyErr_SetNone PyPyErr_SetObject PyPyErr_SetString PyPyErr_Warn PyPyErr_WarnEx PyPyErr_WarnExplicit PyPyErr_WarnFormat PyPyErr_WriteUnraisable PyPyEval_AcquireThread PyPyEval_CallFunction PyPyEval_CallMethod PyPyEval_CallObjectWithKeywords PyPyEval_EvalCode PyPyEval_GetBuiltins PyPyEval_GetFrame PyPyEval_GetGlobals PyPyEval_GetLocals PyPyEval_InitThreads PyPyEval_MergeCompilerFlags PyPyEval_ReleaseThread PyPyEval_RestoreThread PyPyEval_SaveThread PyPyEval_ThreadsInitialized PyPyExc_ArithmeticError DATA PyPyExc_AssertionError DATA PyPyExc_AttributeError DATA PyPyExc_BaseException DATA PyPyExc_BlockingIOError DATA PyPyExc_BrokenPipeError DATA PyPyExc_BufferError DATA PyPyExc_BytesWarning DATA PyPyExc_ChildProcessError DATA PyPyExc_ConnectionAbortedError DATA PyPyExc_ConnectionError DATA PyPyExc_ConnectionRefusedError DATA PyPyExc_ConnectionResetError DATA PyPyExc_DeprecationWarning DATA PyPyExc_EOFError DATA PyPyExc_Exception DATA PyPyExc_FileExistsError DATA PyPyExc_FileNotFoundError DATA PyPyExc_FloatingPointError DATA PyPyExc_FutureWarning DATA PyPyExc_GeneratorExit DATA PyPyExc_ImportError DATA PyPyExc_ImportWarning DATA PyPyExc_IndentationError DATA PyPyExc_IndexError DATA PyPyExc_InterruptedError DATA PyPyExc_IsADirectoryError DATA PyPyExc_KeyError DATA PyPyExc_KeyboardInterrupt DATA PyPyExc_LookupError DATA PyPyExc_MemoryError DATA PyPyExc_ModuleNotFoundError DATA PyPyExc_NameError DATA PyPyExc_NotADirectoryError DATA PyPyExc_NotImplementedError DATA PyPyExc_OSError DATA PyPyExc_OverflowError DATA PyPyExc_PendingDeprecationWarning DATA PyPyExc_PermissionError DATA PyPyExc_ProcessLookupError DATA PyPyExc_RecursionError DATA PyPyExc_ReferenceError DATA PyPyExc_ResourceWarning DATA PyPyExc_RuntimeError DATA PyPyExc_RuntimeWarning DATA PyPyExc_StopAsyncIteration DATA PyPyExc_StopIteration DATA PyPyExc_SyntaxError DATA PyPyExc_SyntaxWarning DATA PyPyExc_SystemError DATA PyPyExc_SystemExit DATA PyPyExc_TabError DATA PyPyExc_TimeoutError DATA PyPyExc_TypeError DATA PyPyExc_UnboundLocalError DATA PyPyExc_UnicodeDecodeError DATA PyPyExc_UnicodeEncodeError DATA PyPyExc_UnicodeError DATA PyPyExc_UnicodeTranslateError DATA PyPyExc_UnicodeWarning DATA PyPyExc_UserWarning DATA PyPyExc_ValueError DATA PyPyExc_Warning DATA PyPyExc_ZeroDivisionError DATA PyPyExceptionInstance_Class PyPyException_GetCause PyPyException_GetContext PyPyException_GetTraceback PyPyException_SetCause PyPyException_SetContext PyPyException_SetTraceback PyPyFile_FromFd PyPyFile_FromString PyPyFile_GetLine PyPyFile_WriteObject PyPyFile_WriteString PyPyFloat_AS_DOUBLE PyPyFloat_AsDouble PyPyFloat_FromDouble PyPyFloat_FromString PyPyFloat_Type DATA PyPyFrame_New PyPyFrozenSet_Check PyPyFrozenSet_CheckExact PyPyFrozenSet_New PyPyFrozenSet_Type DATA PyPyFunction_Check PyPyFunction_CheckExact PyPyFunction_GetCode PyPyFunction_Type DATA PyPyGILState_Check PyPyGILState_Ensure PyPyGILState_Release PyPyGen_Check PyPyGen_CheckExact PyPyGetSetDescr_Type DATA PyPyImport_AddModule PyPyImport_ExecCodeModule PyPyImport_ExecCodeModuleEx PyPyImport_GetModule PyPyImport_GetModuleDict PyPyImport_Import PyPyImport_ImportModule PyPyImport_ImportModuleLevelObject PyPyImport_ImportModuleNoBlock PyPyImport_ReloadModule PyPyIndex_Check PyPyInstanceMethod_Check PyPyInstanceMethod_Function PyPyInstanceMethod_GET_FUNCTION PyPyInstanceMethod_New PyPyInstanceMethod_Type DATA PyPyInterpreterState_GetID PyPyInterpreterState_Head PyPyInterpreterState_Next PyPyIter_Check PyPyIter_Next PyPyList_Append PyPyList_AsTuple PyPyList_GET_ITEM PyPyList_GET_SIZE PyPyList_GetItem PyPyList_GetSlice PyPyList_Insert PyPyList_New PyPyList_Reverse PyPyList_SET_ITEM PyPyList_SetItem PyPyList_SetSlice PyPyList_Size PyPyList_Sort PyPyList_Type DATA PyPyLong_AsDouble PyPyLong_AsLong PyPyLong_AsLongAndOverflow PyPyLong_AsLongLong PyPyLong_AsLongLongAndOverflow PyPyLong_AsSize_t PyPyLong_AsSsize_t PyPyLong_AsUnsignedLong PyPyLong_AsUnsignedLongLong PyPyLong_AsUnsignedLongLongMask PyPyLong_AsUnsignedLongMask PyPyLong_AsVoidPtr PyPyLong_FromDouble PyPyLong_FromLong PyPyLong_FromLongLong PyPyLong_FromSize_t PyPyLong_FromSsize_t PyPyLong_FromString PyPyLong_FromUnicode PyPyLong_FromUnicodeObject PyPyLong_FromUnsignedLong PyPyLong_FromUnsignedLongLong PyPyLong_FromVoidPtr PyPyLong_Type DATA PyPyMapping_Check PyPyMapping_GetItemString PyPyMapping_HasKey PyPyMapping_HasKeyString PyPyMapping_Items PyPyMapping_Keys PyPyMapping_Length PyPyMapping_SetItemString PyPyMapping_Size PyPyMapping_Values PyPyMarshal_ReadObjectFromString PyPyMarshal_WriteObjectToString PyPyMem_Calloc PyPyMem_Free PyPyMem_Malloc PyPyMem_RawCalloc PyPyMem_RawFree PyPyMem_RawMalloc PyPyMem_RawRealloc PyPyMem_Realloc PyPyMemberDescr_Type DATA PyPyMember_GetOne PyPyMember_SetOne PyPyMemoryView_Check PyPyMemoryView_CheckExact PyPyMemoryView_FromBuffer PyPyMemoryView_FromMemory PyPyMemoryView_FromObject PyPyMemoryView_GetContiguous PyPyMemoryView_Type DATA PyPyMethodDescr_Check PyPyMethodDescr_CheckExact PyPyMethodDescr_Type DATA PyPyMethod_Check PyPyMethod_CheckExact PyPyMethod_Function PyPyMethod_New PyPyMethod_Self PyPyMethod_Type DATA PyPyModuleDef_Init PyPyModule_AddFunctions PyPyModule_AddIntConstant PyPyModule_AddObject PyPyModule_AddStringConstant PyPyModule_Check PyPyModule_CheckExact PyPyModule_Create2 PyPyModule_ExecDef PyPyModule_GetDef PyPyModule_GetDict PyPyModule_GetFilenameObject PyPyModule_GetName PyPyModule_GetNameObject PyPyModule_GetState PyPyModule_New PyPyModule_NewObject PyPyModule_Type DATA PyPyNumber_Absolute PyPyNumber_Add PyPyNumber_And PyPyNumber_AsSsize_t PyPyNumber_Check PyPyNumber_Divide PyPyNumber_Divmod PyPyNumber_Float PyPyNumber_FloorDivide PyPyNumber_InPlaceAdd PyPyNumber_InPlaceAnd PyPyNumber_InPlaceDivide PyPyNumber_InPlaceFloorDivide PyPyNumber_InPlaceLshift PyPyNumber_InPlaceMatrixMultiply PyPyNumber_InPlaceMultiply PyPyNumber_InPlaceOr PyPyNumber_InPlacePower PyPyNumber_InPlaceRemainder PyPyNumber_InPlaceRshift PyPyNumber_InPlaceSubtract PyPyNumber_InPlaceTrueDivide PyPyNumber_InPlaceXor PyPyNumber_Index PyPyNumber_Invert PyPyNumber_Long PyPyNumber_Lshift PyPyNumber_MatrixMultiply PyPyNumber_Multiply PyPyNumber_Negative PyPyNumber_Or PyPyNumber_Positive PyPyNumber_Power PyPyNumber_Remainder PyPyNumber_Rshift PyPyNumber_Subtract PyPyNumber_ToBase PyPyNumber_TrueDivide PyPyNumber_Xor PyPyOS_AfterFork PyPyOS_FSPath PyPyOS_InputHook DATA PyPyOS_InterruptOccurred PyPyOS_double_to_string PyPyOS_getsig PyPyOS_setsig PyPyOS_snprintf PyPyOS_string_to_double PyPyOS_vsnprintf PyPyObject_ASCII PyPyObject_AsCharBuffer PyPyObject_AsFileDescriptor PyPyObject_AsReadBuffer PyPyObject_AsWriteBuffer PyPyObject_Bytes PyPyObject_Call PyPyObject_CallFinalizerFromDealloc PyPyObject_CallFunction PyPyObject_CallFunctionObjArgs PyPyObject_CallMethod PyPyObject_CallMethodNoArgs PyPyObject_CallMethodObjArgs PyPyObject_CallMethodOneArg PyPyObject_CallNoArgs PyPyObject_CallObject PyPyObject_CallOneArg PyPyObject_Calloc PyPyObject_CheckReadBuffer PyPyObject_ClearWeakRefs PyPyObject_Del PyPyObject_DelAttr PyPyObject_DelAttrString PyPyObject_DelItem PyPyObject_DelItemString PyPyObject_Dir PyPyObject_Format PyPyObject_Free PyPyObject_GC_Del PyPyObject_GenericGetAttr PyPyObject_GenericGetDict PyPyObject_GenericSetAttr PyPyObject_GenericSetDict PyPyObject_GetAttr PyPyObject_GetAttrString PyPyObject_GetBuffer PyPyObject_GetItem PyPyObject_GetIter PyPyObject_HasAttr PyPyObject_HasAttrString PyPyObject_Hash PyPyObject_HashNotImplemented PyPyObject_Init PyPyObject_InitVar PyPyObject_IsInstance PyPyObject_IsSubclass PyPyObject_IsTrue PyPyObject_LengthHint PyPyObject_Malloc PyPyObject_Not PyPyObject_Print PyPyObject_Realloc PyPyObject_Repr PyPyObject_RichCompare PyPyObject_RichCompareBool PyPyObject_SelfIter PyPyObject_SetAttr PyPyObject_SetAttrString PyPyObject_SetItem PyPyObject_Size PyPyObject_Str PyPyObject_Type PyPyObject_Unicode PyPyObject_Vectorcall PyPyObject_VectorcallDict PyPyObject_VectorcallMethod PyPyProperty_Type DATA PyPyRange_Type DATA PyPyReversed_Type DATA PyPyRun_File PyPyRun_SimpleString PyPyRun_String PyPyRun_StringFlags PyPySeqIter_New PyPySequence_Check PyPySequence_Concat PyPySequence_Contains PyPySequence_DelItem PyPySequence_DelSlice PyPySequence_Fast PyPySequence_Fast_GET_ITEM PyPySequence_Fast_GET_SIZE PyPySequence_Fast_ITEMS PyPySequence_GetItem PyPySequence_GetSlice PyPySequence_ITEM PyPySequence_InPlaceConcat PyPySequence_InPlaceRepeat PyPySequence_Index PyPySequence_Length PyPySequence_List PyPySequence_Repeat PyPySequence_SetItem PyPySequence_SetSlice PyPySequence_Size PyPySequence_Tuple PyPySet_Add PyPySet_Check PyPySet_CheckExact PyPySet_Clear PyPySet_Contains PyPySet_Discard PyPySet_GET_SIZE PyPySet_New PyPySet_Pop PyPySet_Size PyPySet_Type DATA PyPySlice_GetIndices PyPySlice_GetIndicesEx PyPySlice_New PyPySlice_Type DATA PyPySlice_Unpack PyPyState_AddModule PyPyState_RemoveModule PyPyStaticMethod_New PyPyStaticMethod_Type DATA PyPyStructSequence_GetItem PyPyStructSequence_InitType PyPyStructSequence_InitType2 PyPyStructSequence_New PyPyStructSequence_NewType PyPyStructSequence_SetItem PyPyStructSequence_UnnamedField DATA PyPySys_GetObject PyPySys_SetObject PyPySys_WriteStderr PyPySys_WriteStdout PyPyTZInfo_Check PyPyTZInfo_CheckExact PyPyThreadState_Clear PyPyThreadState_Delete PyPyThreadState_DeleteCurrent PyPyThreadState_Get PyPyThreadState_GetDict PyPyThreadState_New PyPyThreadState_SetAsyncExc PyPyThreadState_Swap PyPyThread_ReInitTLS PyPyThread_acquire_lock PyPyThread_allocate_lock PyPyThread_create_key PyPyThread_delete_key PyPyThread_delete_key_value PyPyThread_exit_thread PyPyThread_free_lock PyPyThread_get_key_value PyPyThread_get_thread_ident PyPyThread_init_thread PyPyThread_release_lock PyPyThread_set_key_value PyPyThread_start_new_thread PyPyTime_Check PyPyTime_CheckExact PyPyTraceBack_Check PyPyTraceBack_Here PyPyTraceBack_Print PyPyTraceBack_Type DATA PyPyTraceMalloc_Track PyPyTraceMalloc_Untrack PyPyTuple_GetItem PyPyTuple_GetSlice PyPyTuple_New PyPyTuple_Pack PyPyTuple_SetItem PyPyTuple_Size PyPyTuple_Type DATA PyPyType_FromModuleAndSpec PyPyType_FromSpec PyPyType_FromSpecWithBases PyPyType_GenericAlloc PyPyType_GenericNew PyPyType_GetModule PyPyType_GetModuleState PyPyType_GetSlot PyPyType_IsSubtype PyPyType_Modified PyPyType_Ready PyPyType_Type DATA PyPyUnicode_Append PyPyUnicode_AppendAndDel PyPyUnicode_AsASCIIString PyPyUnicode_AsEncodedObject PyPyUnicode_AsEncodedString PyPyUnicode_AsLatin1String PyPyUnicode_AsMBCSString PyPyUnicode_AsUCS4 PyPyUnicode_AsUCS4Copy PyPyUnicode_AsUTF16String PyPyUnicode_AsUTF32String PyPyUnicode_AsUTF8 PyPyUnicode_AsUTF8AndSize PyPyUnicode_AsUTF8String PyPyUnicode_AsUnicode PyPyUnicode_AsUnicodeAndSize PyPyUnicode_AsUnicodeEscapeString PyPyUnicode_AsWideChar PyPyUnicode_AsWideCharString PyPyUnicode_Check PyPyUnicode_CheckExact PyPyUnicode_Compare PyPyUnicode_CompareWithASCIIString PyPyUnicode_Concat PyPyUnicode_Contains PyPyUnicode_Count PyPyUnicode_Decode PyPyUnicode_DecodeASCII PyPyUnicode_DecodeFSDefault PyPyUnicode_DecodeFSDefaultAndSize PyPyUnicode_DecodeLatin1 PyPyUnicode_DecodeLocale PyPyUnicode_DecodeLocaleAndSize PyPyUnicode_DecodeMBCS PyPyUnicode_DecodeUTF16 PyPyUnicode_DecodeUTF32 PyPyUnicode_DecodeUTF8 PyPyUnicode_EncodeASCII PyPyUnicode_EncodeCodePage PyPyUnicode_EncodeDecimal PyPyUnicode_EncodeFSDefault PyPyUnicode_EncodeLatin1 PyPyUnicode_EncodeLocale PyPyUnicode_EncodeMBCS PyPyUnicode_EncodeUTF8 PyPyUnicode_FSConverter PyPyUnicode_FSDecoder PyPyUnicode_Find PyPyUnicode_FindChar PyPyUnicode_Format PyPyUnicode_FromEncodedObject PyPyUnicode_FromFormat PyPyUnicode_FromFormatV PyPyUnicode_FromKindAndData PyPyUnicode_FromObject PyPyUnicode_FromOrdinal PyPyUnicode_FromString PyPyUnicode_FromStringAndSize PyPyUnicode_FromUnicode PyPyUnicode_FromWideChar PyPyUnicode_GetDefaultEncoding PyPyUnicode_GetLength PyPyUnicode_GetMax PyPyUnicode_GetSize PyPyUnicode_InternFromString PyPyUnicode_InternInPlace PyPyUnicode_Join PyPyUnicode_New PyPyUnicode_ReadChar PyPyUnicode_Replace PyPyUnicode_Resize PyPyUnicode_Split PyPyUnicode_Splitlines PyPyUnicode_Substring PyPyUnicode_Tailmatch PyPyUnicode_TransformDecimalToASCII PyPyUnicode_Type DATA PyPyUnicode_WriteChar PyPyVectorcall_Call PyPyWeakref_Check PyPyWeakref_CheckProxy PyPyWeakref_CheckRef PyPyWeakref_CheckRefExact PyPyWeakref_GET_OBJECT PyPyWeakref_GetObject PyPyWeakref_LockObject PyPyWeakref_NewProxy PyPyWeakref_NewRef PyPyWrapperDescr_Type DATA PyPy_AddPendingCall PyPy_AtExit PyPy_BuildValue PyPy_BytesWarningFlag DATA PyPy_CompileStringFlags PyPy_DebugFlag DATA PyPy_DecRef PyPy_DontWriteBytecodeFlag DATA PyPy_EnterRecursiveCall PyPy_FatalError PyPy_FindMethod PyPy_FrozenFlag DATA PyPy_GenericAlias PyPy_GetProgramName PyPy_GetRecursionLimit PyPy_GetVersion PyPy_HashRandomizationFlag DATA PyPy_IgnoreEnvironmentFlag DATA PyPy_IncRef PyPy_InspectFlag DATA PyPy_InteractiveFlag DATA PyPy_IsInitialized PyPy_IsolatedFlag DATA PyPy_LeaveRecursiveCall PyPy_LegacyWindowsStdioFlag DATA PyPy_MakePendingCalls PyPy_NoSiteFlag DATA PyPy_NoUserSiteDirectory DATA PyPy_OptimizeFlag DATA PyPy_QuietFlag DATA PyPy_ReprEnter PyPy_ReprLeave PyPy_SetRecursionLimit PyPy_UNICODE_COPY PyPy_UNICODE_ISALNUM PyPy_UNICODE_ISALPHA PyPy_UNICODE_ISDECIMAL PyPy_UNICODE_ISDIGIT PyPy_UNICODE_ISLINEBREAK PyPy_UNICODE_ISLOWER PyPy_UNICODE_ISNUMERIC PyPy_UNICODE_ISSPACE PyPy_UNICODE_ISTITLE PyPy_UNICODE_ISUPPER PyPy_UNICODE_TODECIMAL PyPy_UNICODE_TODIGIT PyPy_UNICODE_TOLOWER PyPy_UNICODE_TONUMERIC PyPy_UNICODE_TOTITLE PyPy_UNICODE_TOUPPER PyPy_UnbufferedStdioFlag DATA PyPy_VaBuildValue PyPy_VerboseFlag DATA PySlice_AdjustIndices PyState_FindModule PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyType_GetFlags Py_FileSystemDefaultEncoding DATA _PyArg_BadArgument _PyArg_CheckPositional _PyArg_NoKeywords _PyArg_NoKwnames _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseStackAndKeywords_SizeT _PyArg_ParseStack_SizeT _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywordsFast_SizeT _PyArg_UnpackKeywords _PyArg_UnpackStack _PyArg_VaParseTupleAndKeywordsFast _PyArg_VaParseTupleAndKeywordsFast_SizeT _PyExc_ArithmeticError DATA _PyExc_AssertionError DATA _PyExc_AttributeError DATA _PyExc_BaseException DATA _PyExc_BlockingIOError DATA _PyExc_BrokenPipeError DATA _PyExc_BufferError DATA _PyExc_BytesWarning DATA _PyExc_ChildProcessError DATA _PyExc_ConnectionAbortedError DATA _PyExc_ConnectionError DATA _PyExc_ConnectionRefusedError DATA _PyExc_ConnectionResetError DATA _PyExc_DeprecationWarning DATA _PyExc_EOFError DATA _PyExc_Exception DATA _PyExc_FileExistsError DATA _PyExc_FileNotFoundError DATA _PyExc_FloatingPointError DATA _PyExc_FutureWarning DATA _PyExc_GeneratorExit DATA _PyExc_ImportError DATA _PyExc_ImportWarning DATA _PyExc_IndentationError DATA _PyExc_IndexError DATA _PyExc_InterruptedError DATA _PyExc_IsADirectoryError DATA _PyExc_KeyError DATA _PyExc_KeyboardInterrupt DATA _PyExc_LookupError DATA _PyExc_MemoryError DATA _PyExc_ModuleNotFoundError DATA _PyExc_NameError DATA _PyExc_NotADirectoryError DATA _PyExc_NotImplementedError DATA _PyExc_OSError DATA _PyExc_OverflowError DATA _PyExc_PendingDeprecationWarning DATA _PyExc_PermissionError DATA _PyExc_ProcessLookupError DATA _PyExc_RecursionError DATA _PyExc_ReferenceError DATA _PyExc_ResourceWarning DATA _PyExc_RuntimeError DATA _PyExc_RuntimeWarning DATA _PyExc_StopAsyncIteration DATA _PyExc_StopIteration DATA _PyExc_SyntaxError DATA _PyExc_SyntaxWarning DATA _PyExc_SystemError DATA _PyExc_SystemExit DATA _PyExc_TabError DATA _PyExc_TimeoutError DATA _PyExc_TypeError DATA _PyExc_UnboundLocalError DATA _PyExc_UnicodeDecodeError DATA _PyExc_UnicodeEncodeError DATA _PyExc_UnicodeError DATA _PyExc_UnicodeTranslateError DATA _PyExc_UnicodeWarning DATA _PyExc_UserWarning DATA _PyExc_ValueError DATA _PyExc_Warning DATA _PyExc_ZeroDivisionError DATA _PyLong_AsTime_t _PyLong_FromTime_t _PyPyArg_ParseTupleAndKeywords_SizeT _PyPyArg_ParseTuple_SizeT _PyPyArg_Parse_SizeT _PyPyArg_VaParseTupleAndKeywords_SizeT _PyPyArg_VaParse_SizeT _PyPyBytes_Eq _PyPyBytes_Join _PyPyBytes_Resize _PyPyComplex_AsCComplex _PyPyComplex_FromCComplex _PyPyDateTime_FromDateAndTime _PyPyDateTime_FromDateAndTimeAndFold _PyPyDateTime_FromTimestamp _PyPyDateTime_Import _PyPyDate_FromDate _PyPyDate_FromTimestamp _PyPyDelta_FromDelta _PyPyDict_GetItemStringWithError _PyPyDict_HasOnlyStringKeys _PyPyErr_FormatFromCause _PyPyErr_WriteUnraisableMsg _PyPyEval_GetAsyncGenFinalizer _PyPyEval_GetAsyncGenFirstiter _PyPyEval_SliceIndex _PyPyFloat_Unpack4 _PyPyFloat_Unpack8 _PyPyImport_AcquireLock _PyPyImport_ReleaseLock _PyPyList_Extend _PyPyLong_AsByteArrayO _PyPyLong_AsInt _PyPyLong_FromByteArray _PyPyLong_NumBits _PyPyLong_Sign _PyPyNamespace_New _PyPyNone_Type DATA _PyPyNotImplemented_Type DATA _PyPyObject_CallFunction_SizeT _PyPyObject_CallMethod_SizeT _PyPyObject_FastCall _PyPyObject_GC_Malloc _PyPyObject_GC_New _PyPyObject_GC_NewVar _PyPyObject_GetDictPtr _PyPyObject_New _PyPyObject_NewVar _PyPyPyGC_AddMemoryPressure _PyPyPy_Free _PyPyPy_Malloc _PyPySet_Next _PyPySet_NextEntry _PyPyThreadState_UncheckedGet _PyPyTimeZone_FromTimeZone _PyPyTime_FromTime _PyPyTime_FromTimeAndFold _PyPyTuple_Resize _PyPyType_Lookup _PyPyUnicode_EQ _PyPyUnicode_EqualToASCIIString _PyPyUnicode_Ready _PyPy_BuildValue_SizeT _PyPy_Dealloc _PyPy_EllipsisObject DATA _PyPy_FalseStruct DATA _PyPy_HashDouble _PyPy_HashPointer _PyPy_IsFinalizing _PyPy_NoneStruct DATA _PyPy_NotImplementedStruct DATA _PyPy_PackageContext DATA _PyPy_RestoreSignals _PyPy_TrueStruct DATA _PyPy_VaBuildValue_SizeT _PyPy_get_PyOS_InputHook _PyPy_get_capsule_type _PyPy_object_dealloc _PyPy_setfilesystemdefaultencoding _PyPy_strhex _PyPy_strhex_bytes _PyPy_subtype_dealloc _PyPy_tuple_dealloc _PyPy_tuple_new _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_noraise _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_Init _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _PyType_Name _Py_VaBuildStack _Py_VaBuildStack_SizeT _pypy_init_executable _pypy_init_free _pypy_init_home get_required_hpy_major_version__debug get_required_hpy_major_version__trace get_required_hpy_minor_version__debug get_required_hpy_minor_version__trace os_readlink_impl os_symlink_impl os_unlink_impl pypy_HPyInit__debug pypy_HPyInit__trace pypy_carefully_make_gil pypy_debug_file DATA pypy_execute_source pypy_execute_source_ptr pypy_hpy_debug_close_handle pypy_hpy_debug_ctx_init pypy_hpy_debug_get_ctx pypy_hpy_debug_open_handle pypy_hpy_debug_set_ctx pypy_hpy_debug_unwrap_handle pypy_hpy_trace_ctx_init pypy_hpy_trace_get_ctx pypy_hpy_trace_get_func_name pypy_hpy_trace_get_nfunc pypy_init_embedded_cffi_module pypy_init_threads pypy_main_startup pypy_setup_home pypy_thread_attach rpython_startup_code python3-dll-a-0.2.10/src/python3.def000064400000000000000000000447201046102023000151610ustar 00000000000000LIBRARY python3.dll EXPORTS PyType_FromSpec PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyArg_UnpackTuple PyArg_VaParse PyArg_VaParseTupleAndKeywords PyArg_ValidateKeywordArguments PyBool_FromLong PyByteArray_AsString PyByteArray_Concat PyByteArray_FromObject PyByteArray_FromStringAndSize PyByteArray_Resize PyByteArray_Size PyBytes_AsString PyBytes_AsStringAndSize PyBytes_Concat PyBytes_ConcatAndDel PyBytes_DecodeEscape PyBytes_FromFormat PyBytes_FromFormatV PyBytes_FromObject PyBytes_FromString PyBytes_FromStringAndSize PyBytes_Repr PyBytes_Size PyCFunction_Call PyCFunction_GetFlags PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_NewEx PyCallIter_New PyCallable_Check PyCapsule_GetContext PyCapsule_GetDestructor PyCapsule_GetName PyCapsule_GetPointer PyCapsule_Import PyCapsule_IsValid PyCapsule_New PyCapsule_SetContext PyCapsule_SetDestructor PyCapsule_SetName PyCapsule_SetPointer PyCodec_BackslashReplaceErrors PyCodec_Decode PyCodec_Decoder PyCodec_Encode PyCodec_Encoder PyCodec_IgnoreErrors PyCodec_IncrementalDecoder PyCodec_IncrementalEncoder PyCodec_KnownEncoding PyCodec_LookupError PyCodec_Register PyCodec_RegisterError PyCodec_ReplaceErrors PyCodec_StreamReader PyCodec_StreamWriter PyCodec_StrictErrors PyCodec_XMLCharRefReplaceErrors PyComplex_FromDoubles PyComplex_ImagAsDouble PyComplex_RealAsDouble PyDescr_NewClassMethod PyDescr_NewGetSet PyDescr_NewMember PyDescr_NewMethod PyDictProxy_New PyDict_Clear PyDict_Contains PyDict_Copy PyDict_DelItem PyDict_DelItemString PyDict_GetItem PyDict_GetItemString PyDict_GetItemWithError PyDict_Items PyDict_Keys PyDict_Merge PyDict_MergeFromSeq2 PyDict_New PyDict_Next PyDict_SetItem PyDict_SetItemString PyDict_Size PyDict_Update PyDict_Values PyErr_BadArgument PyErr_BadInternalCall PyErr_CheckSignals PyErr_Clear PyErr_Display PyErr_DisplayException PyErr_ExceptionMatches PyErr_Fetch PyErr_Format PyErr_GivenExceptionMatches PyErr_NewException PyErr_NewExceptionWithDoc PyErr_NoMemory PyErr_NormalizeException PyErr_Occurred PyErr_Print PyErr_PrintEx PyErr_ProgramText PyErr_Restore PyErr_SetFromErrno PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilenameObject PyErr_SetInterrupt PyErr_SetNone PyErr_SetObject PyErr_SetString PyErr_SyntaxLocation PyErr_WarnEx PyErr_WarnExplicit PyErr_WarnFormat PyErr_WriteUnraisable PyEval_AcquireLock PyEval_AcquireThread PyEval_CallFunction PyEval_CallMethod PyEval_CallObjectWithKeywords PyEval_EvalCode PyEval_EvalCodeEx PyEval_EvalFrame PyEval_EvalFrameEx PyEval_GetBuiltins PyEval_GetFrame PyEval_GetFuncDesc PyEval_GetFuncName PyEval_GetGlobals PyEval_GetLocals PyEval_InitThreads PyEval_ReleaseLock PyEval_ReleaseThread PyEval_RestoreThread PyEval_SaveThread PyEval_ThreadsInitialized PyException_GetCause PyException_GetContext PyException_GetTraceback PyException_SetCause PyException_SetContext PyException_SetTraceback PyFile_FromFd PyFile_GetLine PyFile_WriteObject PyFile_WriteString PyFloat_AsDouble PyFloat_FromDouble PyFloat_FromString PyFloat_GetInfo PyFloat_GetMax PyFloat_GetMin PyFrozenSet_New PyGC_Collect PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release PyImport_AddModule PyImport_AppendInittab PyImport_ExecCodeModule PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleWithPathnames PyImport_GetImporter PyImport_GetMagicNumber PyImport_GetMagicTag PyImport_GetModuleDict PyImport_Import PyImport_ImportFrozenModule PyImport_ImportModule PyImport_ImportModuleLevel PyImport_ImportModuleNoBlock PyImport_ReloadModule PyInterpreterState_Clear PyInterpreterState_Delete PyInterpreterState_New PyIter_Next PyList_Append PyList_AsTuple PyList_GetItem PyList_GetSlice PyList_Insert PyList_New PyList_Reverse PyList_SetItem PyList_SetSlice PyList_Size PyList_Sort PyLong_AsDouble PyLong_AsLong PyLong_AsLongAndOverflow PyLong_AsLongLong PyLong_AsLongLongAndOverflow PyLong_AsSize_t PyLong_AsSsize_t PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongMask PyLong_AsVoidPtr PyLong_FromDouble PyLong_FromLong PyLong_FromLongLong PyLong_FromSize_t PyLong_FromSsize_t PyLong_FromString PyLong_FromUnsignedLong PyLong_FromUnsignedLongLong PyLong_FromVoidPtr PyLong_GetInfo PyMapping_Check PyMapping_GetItemString PyMapping_HasKey PyMapping_HasKeyString PyMapping_Items PyMapping_Keys PyMapping_Length PyMapping_SetItemString PyMapping_Size PyMapping_Values PyMem_Free PyMem_Malloc PyMem_Realloc PyMemoryView_FromObject PyMemoryView_GetContiguous PyModule_AddIntConstant PyModule_AddObject PyModule_AddStringConstant PyModule_Create2 PyModule_GetDef PyModule_GetDict PyModule_GetFilename PyModule_GetFilenameObject PyModule_GetName PyModule_GetState PyModule_New PyNumber_Absolute PyNumber_Add PyNumber_And PyNumber_AsSsize_t PyNumber_Check PyNumber_Divmod PyNumber_Float PyNumber_FloorDivide PyNumber_InPlaceAdd PyNumber_InPlaceAnd PyNumber_InPlaceFloorDivide PyNumber_InPlaceLshift PyNumber_InPlaceMultiply PyNumber_InPlaceOr PyNumber_InPlacePower PyNumber_InPlaceRemainder PyNumber_InPlaceRshift PyNumber_InPlaceSubtract PyNumber_InPlaceTrueDivide PyNumber_InPlaceXor PyNumber_Index PyNumber_Invert PyNumber_Long PyNumber_Lshift PyNumber_Multiply PyNumber_Negative PyNumber_Or PyNumber_Positive PyNumber_Power PyNumber_Remainder PyNumber_Rshift PyNumber_Subtract PyNumber_ToBase PyNumber_TrueDivide PyNumber_Xor PyOS_AfterFork PyOS_InterruptOccurred PyOS_double_to_string PyOS_getsig PyOS_mystricmp PyOS_mystrnicmp PyOS_setsig PyOS_snprintf PyOS_string_to_double PyOS_strtol PyOS_strtoul PyOS_vsnprintf PyObject_ASCII PyObject_AsFileDescriptor PyObject_Bytes PyObject_Call PyObject_CallFunction PyObject_CallFunctionObjArgs PyObject_CallMethod PyObject_CallMethodObjArgs PyObject_CallObject PyObject_ClearWeakRefs PyObject_DelItem PyObject_DelItemString PyObject_Dir PyObject_Format PyObject_Free PyObject_GC_Del PyObject_GC_Track PyObject_GC_UnTrack PyObject_GenericGetAttr PyObject_GenericSetAttr PyObject_GetAttr PyObject_GetAttrString PyObject_GetItem PyObject_GetIter PyObject_HasAttr PyObject_HasAttrString PyObject_Hash PyObject_HashNotImplemented PyObject_Init PyObject_InitVar PyObject_IsInstance PyObject_IsSubclass PyObject_IsTrue PyObject_Length PyObject_Malloc PyObject_Not PyObject_Realloc PyObject_Repr PyObject_RichCompare PyObject_RichCompareBool PyObject_SelfIter PyObject_SetAttr PyObject_SetAttrString PyObject_SetItem PyObject_Size PyObject_Str PyObject_Type PySeqIter_New PySequence_Check PySequence_Concat PySequence_Contains PySequence_Count PySequence_DelItem PySequence_DelSlice PySequence_Fast PySequence_GetItem PySequence_GetSlice PySequence_In PySequence_InPlaceConcat PySequence_InPlaceRepeat PySequence_Index PySequence_Length PySequence_List PySequence_Repeat PySequence_SetItem PySequence_SetSlice PySequence_Size PySequence_Tuple PySet_Add PySet_Clear PySet_Contains PySet_Discard PySet_New PySet_Pop PySet_Size PySlice_GetIndices PySlice_GetIndicesEx PySlice_New PyState_FindModule PyStructSequence_GetItem PyStructSequence_New PyStructSequence_NewType PyStructSequence_SetItem PySys_AddWarnOption PySys_AddWarnOptionUnicode PySys_FormatStderr PySys_FormatStdout PySys_GetObject PySys_HasWarnOptions PySys_ResetWarnOptions PySys_SetArgv PySys_SetArgvEx PySys_SetObject PySys_SetPath PySys_WriteStderr PySys_WriteStdout PyThreadState_Clear PyThreadState_Delete PyThreadState_DeleteCurrent PyThreadState_Get PyThreadState_GetDict PyThreadState_New PyThreadState_SetAsyncExc PyThreadState_Swap PyTraceBack_Here PyTraceBack_Print PyTuple_GetItem PyTuple_GetSlice PyTuple_New PyTuple_Pack PyTuple_SetItem PyTuple_Size PyType_ClearCache PyType_GenericAlloc PyType_GenericNew PyType_GetFlags PyType_IsSubtype PyType_Modified PyType_Ready PyUnicodeDecodeError_Create PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetStart PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetStart PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetStart PyUnicode_Append PyUnicode_AppendAndDel PyUnicode_AsASCIIString PyUnicode_AsCharmapString PyUnicode_AsDecodedObject PyUnicode_AsDecodedUnicode PyUnicode_AsEncodedObject PyUnicode_AsEncodedString PyUnicode_AsEncodedUnicode PyUnicode_AsLatin1String PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsUTF16String PyUnicode_AsUTF32String PyUnicode_AsUTF8String PyUnicode_AsUnicodeEscapeString PyUnicode_AsWideChar PyUnicode_Compare PyUnicode_Concat PyUnicode_Contains PyUnicode_Count PyUnicode_Decode PyUnicode_DecodeASCII PyUnicode_DecodeCharmap PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeLatin1 PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUnicodeEscape PyUnicode_FSConverter PyUnicode_FSDecoder PyUnicode_Find PyUnicode_Format PyUnicode_FromEncodedObject PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromObject PyUnicode_FromOrdinal PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_FromWideChar PyUnicode_GetDefaultEncoding PyUnicode_GetSize PyUnicode_IsIdentifier PyUnicode_Join PyUnicode_Partition PyUnicode_RPartition PyUnicode_RSplit PyUnicode_Replace PyUnicode_Resize PyUnicode_RichCompare PyUnicode_Split PyUnicode_Splitlines PyUnicode_Tailmatch PyUnicode_Translate PyUnicode_BuildEncodingMap PyUnicode_CompareWithASCIIString PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_EncodeFSDefault PyUnicode_InternFromString PyUnicode_InternImmortal PyUnicode_InternInPlace PyWeakref_GetObject PyWeakref_NewProxy PyWeakref_NewRef PyWrapper_New Py_AddPendingCall Py_AtExit Py_BuildValue Py_CompileString Py_DecRef Py_EndInterpreter Py_Exit Py_FatalError Py_Finalize Py_GetBuildInfo Py_GetCompiler Py_GetCopyright Py_GetExecPrefix Py_GetPath Py_GetPlatform Py_GetPrefix Py_GetProgramFullPath Py_GetProgramName Py_GetPythonHome Py_GetRecursionLimit Py_GetVersion Py_IncRef Py_Initialize Py_InitializeEx Py_IsInitialized Py_Main Py_MakePendingCalls Py_NewInterpreter Py_ReprEnter Py_ReprLeave Py_SetProgramName Py_SetPythonHome Py_SetRecursionLimit Py_VaBuildValue _PyErr_BadInternalCall _PyObject_CallFunction_SizeT _PyObject_CallMethod_SizeT _PyObject_GC_New _PyObject_GC_NewVar _PyObject_GC_Resize _PyObject_New _PyObject_NewVar _PyState_AddModule _PyThreadState_Init _PyThreadState_Prealloc _Py_BuildValue_SizeT _Py_CheckRecursiveCall _Py_Dealloc _Py_VaBuildValue_SizeT PyObject_AsCharBuffer PyObject_AsReadBuffer PyObject_AsWriteBuffer PyObject_CheckReadBuffer PyMarshal_ReadObjectFromString PyMarshal_WriteObjectToString PyMember_GetOne PyMember_SetOne PyThread_ReInitTLS PyThread_create_key PyThread_delete_key PyThread_set_key_value PyThread_get_key_value PyThread_delete_key_value PyThread_acquire_lock PyThread_acquire_lock_timed PyThread_allocate_lock PyThread_exit_thread PyThread_free_lock PyThread_get_stacksize PyThread_get_thread_ident PyThread_get_thread_native_id PyThread_init_thread PyThread_release_lock PyThread_set_stacksize PyThread_start_new_thread PyState_AddModule PyState_RemoveModule PyType_FromSpecWithBases _PyArg_Parse_SizeT _PyArg_ParseTuple_SizeT _PyArg_ParseTupleAndKeywords_SizeT _PyArg_VaParse_SizeT _PyArg_VaParseTupleAndKeywords_SizeT PyThread_GetInfo PyCFunction_New PyType_GetSlot PyErr_FormatV PyModuleDef_Init Py_FinalizeEx PyOS_FSPath PyErr_ResourceWarning PyErr_SetImportErrorSubclass PyCodec_NameReplaceErrors PyErr_GetExcInfo PyErr_SetExcInfo PyErr_SetFromErrnoWithFilenameObjects PyErr_SetImportError PyErr_SyntaxLocationEx PyImport_AddModuleObject PyImport_ExecCodeModuleObject PyImport_ImportFrozenModuleObject PyImport_ImportModuleLevelObject PyMem_Calloc PyMemoryView_FromMemory PyModule_AddFunctions PyModule_ExecDef PyModule_FromDefAndSpec2 PyModule_GetNameObject PyModule_NewObject PyModule_SetDocString PyNumber_InPlaceMatrixMultiply PyNumber_MatrixMultiply PyObject_Calloc PyObject_GenericSetDict PySys_AddXOption PySys_GetXOptions PyUnicode_AsUCS4 PyUnicode_AsUCS4Copy PyUnicode_AsWideCharString PyUnicode_DecodeLocale PyUnicode_DecodeLocaleAndSize PyUnicode_EncodeLocale PyUnicode_FindChar PyUnicode_GetLength PyUnicode_ReadChar PyUnicode_Substring PyUnicode_WriteChar Py_DecodeLocale Py_EncodeLocale Py_SetPath PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetFromWindowsErr PyErr_SetFromWindowsErrWithFilename PyOS_CheckStack PyUnicode_AsMBCSString PyUnicode_DecodeCodePageStateful PyUnicode_DecodeMBCS PyUnicode_DecodeMBCSStateful PyUnicode_EncodeCodePage PySlice_AdjustIndices PySlice_Unpack PyInterpreterState_GetID PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyOS_BeforeFork PyOS_AfterFork_Parent PyOS_AfterFork_Child PyImport_GetModule PyExceptionClass_Name PyIndex_Check PyIter_Check PyInterpreterState_GetDict Py_BytesMain Py_EnterRecursiveCall Py_LeaveRecursiveCall Py_GenericAlias PyCMethod_New PyInterpreterState_Get PyObject_GC_IsFinalized PyObject_GC_IsTracked Py_GetArgcArgv PyIter_Send PyUnicode_AsUTF8AndSize PyObject_GenericGetDict Py_NewRef Py_XNewRef PyModule_AddType PyType_FromModuleAndSpec PyType_GetModule PyType_GetModuleState PyFrame_GetLineNumber PyFrame_GetCode PyObject_CallNoArgs PyThreadState_GetFrame PyThreadState_GetID PyThreadState_GetInterpreter PyModule_AddObjectRef PyCodec_Unregister PyErr_SetInterruptEx Py_Is Py_IsTrue Py_IsFalse Py_IsNone _Py_IncRef _Py_DecRef PyAIter_Check PyObject_GetAIter _Py_NegativeRefcount PyGC_Disable PyGC_Enable PyGC_IsEnabled PyType_GetName PyType_GetQualName PyObject_CheckBuffer PyObject_GetBuffer PyBuffer_GetPointer PyBuffer_SizeFromFormat PyBuffer_ToContiguous PyBuffer_FromContiguous PyObject_CopyData PyBuffer_IsContiguous PyBuffer_FillContiguousStrides PyBuffer_FillInfo PyBuffer_Release PyMemoryView_FromBuffer PyErr_GetHandledException PyErr_SetHandledException PyType_FromMetaclass PyVectorcall_NARGS PyVectorcall_Call PyErr_GetRaisedException PyErr_SetRaisedException PyException_GetArgs PyException_SetArgs PyObject_Vectorcall PyObject_VectorcallMethod PyObject_GetTypeData PyType_GetTypeDataSize PyImport_AddModuleRef PyWeakref_GetRef PyObject_DelAttr PyObject_DelAttrString PyObject_GetOptionalAttr PyObject_GetOptionalAttrString PyMapping_GetOptionalItem PyMapping_GetOptionalItemString PyModule_Add PyDict_GetItemRef PyDict_GetItemStringRef PyLong_AsInt PyObject_HasAttrWithError PyObject_HasAttrStringWithError PyMapping_HasKeyWithError PyMapping_HasKeyStringWithError Py_IsFinalizing PyUnicode_EqualToUTF8 PyUnicode_EqualToUTF8AndSize PyMem_RawMalloc PyMem_RawCalloc PyMem_RawRealloc PyMem_RawFree PySys_Audit PySys_AuditTuple _Py_SetRefcnt PyList_GetItemRef PyType_GetFullyQualifiedName PyType_GetModuleName Py_GetConstant Py_GetConstantBorrowed PyType_GetModuleByDef PyEval_GetFrameBuiltins PyEval_GetFrameGlobals PyEval_GetFrameLocals Py_TYPE PyBaseObject_Type DATA PyBool_Type DATA PyByteArrayIter_Type DATA PyByteArray_Type DATA PyBytesIter_Type DATA PyBytes_Type DATA PyCFunction_Type DATA PyCallIter_Type DATA PyCapsule_Type DATA PyClassMethodDescr_Type DATA PyComplex_Type DATA PyDictItems_Type DATA PyDictIterItem_Type DATA PyDictIterKey_Type DATA PyDictIterValue_Type DATA PyDictKeys_Type DATA PyDictProxy_Type DATA PyDictValues_Type DATA PyDict_Type DATA PyEllipsis_Type DATA PyEnum_Type DATA PyExc_ArithmeticError DATA PyExc_AssertionError DATA PyExc_AttributeError DATA PyExc_BaseException DATA PyExc_BaseExceptionGroup DATA PyExc_BufferError DATA PyExc_BytesWarning DATA PyExc_DeprecationWarning DATA PyExc_EOFError DATA PyExc_EnvironmentError DATA PyExc_Exception DATA PyExc_FloatingPointError DATA PyExc_FutureWarning DATA PyExc_GeneratorExit DATA PyExc_IOError DATA PyExc_ImportError DATA PyExc_ImportWarning DATA PyExc_IndentationError DATA PyExc_IndexError DATA PyExc_KeyError DATA PyExc_KeyboardInterrupt DATA PyExc_LookupError DATA PyExc_MemoryError DATA PyExc_NameError DATA PyExc_NotImplementedError DATA PyExc_OSError DATA PyExc_OverflowError DATA PyExc_PendingDeprecationWarning DATA PyExc_ReferenceError DATA PyExc_RuntimeError DATA PyExc_RuntimeWarning DATA PyExc_StopIteration DATA PyExc_SyntaxError DATA PyExc_SyntaxWarning DATA PyExc_SystemError DATA PyExc_SystemExit DATA PyExc_TabError DATA PyExc_TypeError DATA PyExc_UnboundLocalError DATA PyExc_UnicodeDecodeError DATA PyExc_UnicodeEncodeError DATA PyExc_UnicodeError DATA PyExc_UnicodeTranslateError DATA PyExc_UnicodeWarning DATA PyExc_UserWarning DATA PyExc_ValueError DATA PyExc_Warning DATA PyExc_ZeroDivisionError DATA PyFilter_Type DATA PyFloat_Type DATA PyFrozenSet_Type DATA PyGetSetDescr_Type DATA PyListIter_Type DATA PyListRevIter_Type DATA PyList_Type DATA PyLongRangeIter_Type DATA PyLong_Type DATA PyMap_Type DATA PyMemberDescr_Type DATA PyMemoryView_Type DATA PyMethodDescr_Type DATA PyModule_Type DATA PyOS_InputHook DATA PyProperty_Type DATA PyRangeIter_Type DATA PyRange_Type DATA PyReversed_Type DATA PySeqIter_Type DATA PySetIter_Type DATA PySet_Type DATA PySlice_Type DATA PySuper_Type DATA PyTraceBack_Type DATA PyTupleIter_Type DATA PyTuple_Type DATA PyType_Type DATA PyUnicodeIter_Type DATA PyUnicode_Type DATA PyWrapperDescr_Type DATA PyZip_Type DATA Py_FileSystemDefaultEncoding DATA Py_HasFileSystemDefaultEncoding DATA _PyWeakref_CallableProxyType DATA _PyWeakref_ProxyType DATA _PyWeakref_RefType DATA _Py_EllipsisObject DATA _Py_FalseStruct DATA _Py_NoneStruct DATA _Py_NotImplementedStruct DATA _Py_SwappedOp DATA _Py_TrueStruct DATA PyModuleDef_Type DATA PyExc_ModuleNotFoundError DATA PyExc_BlockingIOError DATA PyExc_BrokenPipeError DATA PyExc_ChildProcessError DATA PyExc_ConnectionAbortedError DATA PyExc_ConnectionError DATA PyExc_ConnectionRefusedError DATA PyExc_ConnectionResetError DATA PyExc_FileExistsError DATA PyExc_FileNotFoundError DATA PyExc_InterruptedError DATA PyExc_IsADirectoryError DATA PyExc_NotADirectoryError DATA PyExc_PermissionError DATA PyExc_ProcessLookupError DATA PyExc_RecursionError DATA PyExc_ResourceWarning DATA PyExc_StopAsyncIteration DATA PyExc_TimeoutError DATA PyExc_WindowsError DATA Py_UTF8Mode DATA PyDictRevIterItem_Type DATA PyDictRevIterKey_Type DATA PyDictRevIterValue_Type DATA Py_GenericAliasType DATA Py_FileSystemDefaultEncodeErrors DATA PyExc_EncodingWarning DATA _Py_RefTotal DATA PyStructSequence_UnnamedField DATA Py_Version DATA python3-dll-a-0.2.10/src/python310.def000064400000000000000000001036371046102023000153250ustar 00000000000000; ; Definition file of python310.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "python310.dll" EXPORTS PyAIter_Check PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyArg_UnpackTuple PyArg_VaParse PyArg_VaParseTupleAndKeywords PyArg_ValidateKeywordArguments PyAsyncGen_New PyAsyncGen_Type DATA PyBaseObject_Type DATA PyBool_FromLong PyBool_Type DATA PyBuffer_FillContiguousStrides PyBuffer_FillInfo PyBuffer_FromContiguous PyBuffer_GetPointer PyBuffer_IsContiguous PyBuffer_Release PyBuffer_SizeFromFormat PyBuffer_ToContiguous PyByteArrayIter_Type DATA PyByteArray_AsString PyByteArray_Concat PyByteArray_FromObject PyByteArray_FromStringAndSize PyByteArray_Resize PyByteArray_Size PyByteArray_Type DATA PyBytesIter_Type DATA PyBytes_AsString PyBytes_AsStringAndSize PyBytes_Concat PyBytes_ConcatAndDel PyBytes_DecodeEscape PyBytes_FromFormat PyBytes_FromFormatV PyBytes_FromObject PyBytes_FromString PyBytes_FromStringAndSize PyBytes_Repr PyBytes_Size PyBytes_Type DATA PyCFunction_Call PyCFunction_GetFlags PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_New PyCFunction_NewEx PyCFunction_Type DATA PyCMethod_New PyCMethod_Type DATA PyCallIter_New PyCallIter_Type DATA PyCallable_Check PyCapsule_GetContext PyCapsule_GetDestructor PyCapsule_GetName PyCapsule_GetPointer PyCapsule_Import PyCapsule_IsValid PyCapsule_New PyCapsule_SetContext PyCapsule_SetDestructor PyCapsule_SetName PyCapsule_SetPointer PyCapsule_Type DATA PyCell_Get PyCell_New PyCell_Set PyCell_Type DATA PyClassMethodDescr_Type DATA PyClassMethod_New PyClassMethod_Type DATA PyCode_Addr2Line PyCode_New PyCode_NewEmpty PyCode_NewWithPosOnlyArgs PyCode_Optimize PyCode_Type DATA PyCodec_BackslashReplaceErrors PyCodec_Decode PyCodec_Decoder PyCodec_Encode PyCodec_Encoder PyCodec_IgnoreErrors PyCodec_IncrementalDecoder PyCodec_IncrementalEncoder PyCodec_KnownEncoding PyCodec_LookupError PyCodec_NameReplaceErrors PyCodec_Register PyCodec_RegisterError PyCodec_ReplaceErrors PyCodec_StreamReader PyCodec_StreamWriter PyCodec_StrictErrors PyCodec_Unregister PyCodec_XMLCharRefReplaceErrors PyCompile_OpcodeStackEffect PyCompile_OpcodeStackEffectWithJump PyComplex_AsCComplex PyComplex_FromCComplex PyComplex_FromDoubles PyComplex_ImagAsDouble PyComplex_RealAsDouble PyComplex_Type DATA PyConfig_Clear PyConfig_InitIsolatedConfig PyConfig_InitPythonConfig PyConfig_Read PyConfig_SetArgv PyConfig_SetBytesArgv PyConfig_SetBytesString PyConfig_SetString PyConfig_SetWideStringList PyContextToken_Type DATA PyContextVar_Get PyContextVar_New PyContextVar_Reset PyContextVar_Set PyContextVar_Type DATA PyContext_Copy PyContext_CopyCurrent PyContext_Enter PyContext_Exit PyContext_New PyContext_Type DATA PyCoro_New PyCoro_Type DATA PyDescr_IsData PyDescr_NewClassMethod PyDescr_NewGetSet PyDescr_NewMember PyDescr_NewMethod PyDescr_NewWrapper PyDictItems_Type DATA PyDictIterItem_Type DATA PyDictIterKey_Type DATA PyDictIterValue_Type DATA PyDictKeys_Type DATA PyDictProxy_New PyDictProxy_Type DATA PyDictRevIterItem_Type DATA PyDictRevIterKey_Type DATA PyDictRevIterValue_Type DATA PyDictValues_Type DATA PyDict_Clear PyDict_Contains PyDict_Copy PyDict_DelItem PyDict_DelItemString PyDict_GetItem PyDict_GetItemString PyDict_GetItemWithError PyDict_Items PyDict_Keys PyDict_Merge PyDict_MergeFromSeq2 PyDict_New PyDict_Next PyDict_SetDefault PyDict_SetItem PyDict_SetItemString PyDict_Size PyDict_Type DATA PyDict_Update PyDict_Values PyEllipsis_Type DATA PyEnum_Type DATA PyErr_BadArgument PyErr_BadInternalCall PyErr_CheckSignals PyErr_Clear PyErr_Display PyErr_ExceptionMatches PyErr_Fetch PyErr_Format PyErr_FormatV PyErr_GetExcInfo PyErr_GivenExceptionMatches PyErr_NewException PyErr_NewExceptionWithDoc PyErr_NoMemory PyErr_NormalizeException PyErr_Occurred PyErr_Print PyErr_PrintEx PyErr_ProgramText PyErr_ProgramTextObject PyErr_RangedSyntaxLocationObject PyErr_ResourceWarning PyErr_Restore PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetExcFromWindowsErrWithUnicodeFilename PyErr_SetExcInfo PyErr_SetFromErrno PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilenameObject PyErr_SetFromErrnoWithFilenameObjects PyErr_SetFromErrnoWithUnicodeFilename PyErr_SetFromWindowsErr PyErr_SetFromWindowsErrWithFilename PyErr_SetFromWindowsErrWithUnicodeFilename PyErr_SetImportError PyErr_SetImportErrorSubclass PyErr_SetInterrupt PyErr_SetInterruptEx PyErr_SetNone PyErr_SetObject PyErr_SetString PyErr_SyntaxLocation PyErr_SyntaxLocationEx PyErr_SyntaxLocationObject PyErr_WarnEx PyErr_WarnExplicit PyErr_WarnExplicitFormat PyErr_WarnExplicitObject PyErr_WarnFormat PyErr_WriteUnraisable PyEval_AcquireLock PyEval_AcquireThread PyEval_CallFunction PyEval_CallMethod PyEval_CallObjectWithKeywords PyEval_EvalCode PyEval_EvalCodeEx PyEval_EvalFrame PyEval_EvalFrameEx PyEval_GetBuiltins PyEval_GetFrame PyEval_GetFuncDesc PyEval_GetFuncName PyEval_GetGlobals PyEval_GetLocals PyEval_InitThreads PyEval_MergeCompilerFlags PyEval_ReleaseLock PyEval_ReleaseThread PyEval_RestoreThread PyEval_SaveThread PyEval_SetProfile PyEval_SetTrace PyEval_ThreadsInitialized PyExc_ArithmeticError DATA PyExc_AssertionError DATA PyExc_AttributeError DATA PyExc_BaseException DATA PyExc_BlockingIOError DATA PyExc_BrokenPipeError DATA PyExc_BufferError DATA PyExc_BytesWarning DATA PyExc_ChildProcessError DATA PyExc_ConnectionAbortedError DATA PyExc_ConnectionError DATA PyExc_ConnectionRefusedError DATA PyExc_ConnectionResetError DATA PyExc_DeprecationWarning DATA PyExc_EOFError DATA PyExc_EncodingWarning DATA PyExc_EnvironmentError DATA PyExc_Exception DATA PyExc_FileExistsError DATA PyExc_FileNotFoundError DATA PyExc_FloatingPointError DATA PyExc_FutureWarning DATA PyExc_GeneratorExit DATA PyExc_IOError DATA PyExc_ImportError DATA PyExc_ImportWarning DATA PyExc_IndentationError DATA PyExc_IndexError DATA PyExc_InterruptedError DATA PyExc_IsADirectoryError DATA PyExc_KeyError DATA PyExc_KeyboardInterrupt DATA PyExc_LookupError DATA PyExc_MemoryError DATA PyExc_ModuleNotFoundError DATA PyExc_NameError DATA PyExc_NotADirectoryError DATA PyExc_NotImplementedError DATA PyExc_OSError DATA PyExc_OverflowError DATA PyExc_PendingDeprecationWarning DATA PyExc_PermissionError DATA PyExc_ProcessLookupError DATA PyExc_RecursionError DATA PyExc_ReferenceError DATA PyExc_ResourceWarning DATA PyExc_RuntimeError DATA PyExc_RuntimeWarning DATA PyExc_StopAsyncIteration DATA PyExc_StopIteration DATA PyExc_SyntaxError DATA PyExc_SyntaxWarning DATA PyExc_SystemError DATA PyExc_SystemExit DATA PyExc_TabError DATA PyExc_TimeoutError DATA PyExc_TypeError DATA PyExc_UnboundLocalError DATA PyExc_UnicodeDecodeError DATA PyExc_UnicodeEncodeError DATA PyExc_UnicodeError DATA PyExc_UnicodeTranslateError DATA PyExc_UnicodeWarning DATA PyExc_UserWarning DATA PyExc_ValueError DATA PyExc_Warning DATA PyExc_WindowsError DATA PyExc_ZeroDivisionError DATA PyExceptionClass_Name PyException_GetCause PyException_GetContext PyException_GetTraceback PyException_SetCause PyException_SetContext PyException_SetTraceback PyFile_FromFd PyFile_GetLine PyFile_NewStdPrinter PyFile_OpenCode PyFile_OpenCodeObject PyFile_SetOpenCodeHook PyFile_WriteObject PyFile_WriteString PyFilter_Type DATA PyFloat_AsDouble PyFloat_FromDouble PyFloat_FromString PyFloat_GetInfo PyFloat_GetMax PyFloat_GetMin PyFloat_Type DATA PyFrame_BlockPop PyFrame_BlockSetup PyFrame_FastToLocals PyFrame_FastToLocalsWithError PyFrame_GetBack PyFrame_GetCode PyFrame_GetLineNumber PyFrame_LocalsToFast PyFrame_New PyFrame_Type DATA PyFrozenSet_New PyFrozenSet_Type DATA PyFunction_GetAnnotations PyFunction_GetClosure PyFunction_GetCode PyFunction_GetDefaults PyFunction_GetGlobals PyFunction_GetKwDefaults PyFunction_GetModule PyFunction_New PyFunction_NewWithQualName PyFunction_SetAnnotations PyFunction_SetClosure PyFunction_SetDefaults PyFunction_SetKwDefaults PyFunction_Type DATA PyGC_Collect PyGC_Disable PyGC_Enable PyGC_IsEnabled PyGILState_Check PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release PyGen_New PyGen_NewWithQualName PyGen_Type DATA PyGetSetDescr_Type DATA PyHash_GetFuncDef PyImport_AddModule PyImport_AddModuleObject PyImport_AppendInittab PyImport_ExecCodeModule PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleObject PyImport_ExecCodeModuleWithPathnames PyImport_ExtendInittab PyImport_FrozenModules DATA PyImport_GetImporter PyImport_GetMagicNumber PyImport_GetMagicTag PyImport_GetModule PyImport_GetModuleDict PyImport_Import PyImport_ImportFrozenModule PyImport_ImportFrozenModuleObject PyImport_ImportModule PyImport_ImportModuleLevel PyImport_ImportModuleLevelObject PyImport_ImportModuleNoBlock PyImport_Inittab DATA PyImport_ReloadModule PyIndex_Check PyInstanceMethod_Function PyInstanceMethod_New PyInstanceMethod_Type DATA PyInterpreterState_Clear PyInterpreterState_Delete PyInterpreterState_Get PyInterpreterState_GetDict PyInterpreterState_GetID PyInterpreterState_Head PyInterpreterState_Main PyInterpreterState_New PyInterpreterState_Next PyInterpreterState_ThreadHead PyIter_Check PyIter_Next PyIter_Send PyListIter_Type DATA PyListRevIter_Type DATA PyList_Append PyList_AsTuple PyList_GetItem PyList_GetSlice PyList_Insert PyList_New PyList_Reverse PyList_SetItem PyList_SetSlice PyList_Size PyList_Sort PyList_Type DATA PyLongRangeIter_Type DATA PyLong_AsDouble PyLong_AsLong PyLong_AsLongAndOverflow PyLong_AsLongLong PyLong_AsLongLongAndOverflow PyLong_AsSize_t PyLong_AsSsize_t PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongMask PyLong_AsVoidPtr PyLong_FromDouble PyLong_FromLong PyLong_FromLongLong PyLong_FromSize_t PyLong_FromSsize_t PyLong_FromString PyLong_FromUnicodeObject PyLong_FromUnsignedLong PyLong_FromUnsignedLongLong PyLong_FromVoidPtr PyLong_GetInfo PyLong_Type DATA PyMap_Type DATA PyMapping_Check PyMapping_GetItemString PyMapping_HasKey PyMapping_HasKeyString PyMapping_Items PyMapping_Keys PyMapping_Length PyMapping_SetItemString PyMapping_Size PyMapping_Values PyMarshal_ReadLastObjectFromFile PyMarshal_ReadLongFromFile PyMarshal_ReadObjectFromFile PyMarshal_ReadObjectFromString PyMarshal_ReadShortFromFile PyMarshal_WriteLongToFile PyMarshal_WriteObjectToFile PyMarshal_WriteObjectToString PyMem_Calloc PyMem_Free PyMem_GetAllocator PyMem_Malloc PyMem_RawCalloc PyMem_RawFree PyMem_RawMalloc PyMem_RawRealloc PyMem_Realloc PyMem_SetAllocator PyMem_SetupDebugHooks PyMemberDescr_Type DATA PyMember_GetOne PyMember_SetOne PyMemoryView_FromBuffer PyMemoryView_FromMemory PyMemoryView_FromObject PyMemoryView_GetContiguous PyMemoryView_Type DATA PyMethodDescr_Type DATA PyMethod_Function PyMethod_New PyMethod_Self PyMethod_Type DATA PyModuleDef_Init PyModuleDef_Type DATA PyModule_AddFunctions PyModule_AddIntConstant PyModule_AddObject PyModule_AddObjectRef PyModule_AddStringConstant PyModule_AddType PyModule_Create2 PyModule_ExecDef PyModule_FromDefAndSpec2 PyModule_GetDef PyModule_GetDict PyModule_GetFilename PyModule_GetFilenameObject PyModule_GetName PyModule_GetNameObject PyModule_GetState PyModule_New PyModule_NewObject PyModule_SetDocString PyModule_Type DATA PyNumber_Absolute PyNumber_Add PyNumber_And PyNumber_AsSsize_t PyNumber_Check PyNumber_Divmod PyNumber_Float PyNumber_FloorDivide PyNumber_InPlaceAdd PyNumber_InPlaceAnd PyNumber_InPlaceFloorDivide PyNumber_InPlaceLshift PyNumber_InPlaceMatrixMultiply PyNumber_InPlaceMultiply PyNumber_InPlaceOr PyNumber_InPlacePower PyNumber_InPlaceRemainder PyNumber_InPlaceRshift PyNumber_InPlaceSubtract PyNumber_InPlaceTrueDivide PyNumber_InPlaceXor PyNumber_Index PyNumber_Invert PyNumber_Long PyNumber_Lshift PyNumber_MatrixMultiply PyNumber_Multiply PyNumber_Negative PyNumber_Or PyNumber_Positive PyNumber_Power PyNumber_Remainder PyNumber_Rshift PyNumber_Subtract PyNumber_ToBase PyNumber_TrueDivide PyNumber_Xor PyODictItems_Type DATA PyODictIter_Type DATA PyODictKeys_Type DATA PyODictValues_Type DATA PyODict_DelItem PyODict_New PyODict_SetItem PyODict_Type DATA PyOS_AfterFork PyOS_FSPath PyOS_InputHook DATA PyOS_InterruptOccurred PyOS_Readline PyOS_ReadlineFunctionPointer DATA PyOS_double_to_string PyOS_getsig PyOS_mystricmp PyOS_mystrnicmp PyOS_setsig PyOS_snprintf PyOS_string_to_double PyOS_strtol PyOS_strtoul PyOS_vsnprintf PyObject_ASCII PyObject_AsCharBuffer PyObject_AsFileDescriptor PyObject_AsReadBuffer PyObject_AsWriteBuffer PyObject_Bytes PyObject_Call PyObject_CallFinalizer PyObject_CallFinalizerFromDealloc PyObject_CallFunction PyObject_CallFunctionObjArgs PyObject_CallMethod PyObject_CallMethodObjArgs PyObject_CallNoArgs PyObject_CallObject PyObject_Calloc PyObject_CheckBuffer PyObject_CheckReadBuffer PyObject_ClearWeakRefs PyObject_CopyData PyObject_DelItem PyObject_DelItemString PyObject_Dir PyObject_Format PyObject_Free PyObject_GC_Del PyObject_GC_IsFinalized PyObject_GC_IsTracked PyObject_GC_Track PyObject_GC_UnTrack PyObject_GET_WEAKREFS_LISTPTR PyObject_GenericGetAttr PyObject_GenericGetDict PyObject_GenericSetAttr PyObject_GenericSetDict PyObject_GetAIter PyObject_GetArenaAllocator PyObject_GetAttr PyObject_GetAttrString PyObject_GetBuffer PyObject_GetItem PyObject_GetIter PyObject_HasAttr PyObject_HasAttrString PyObject_Hash PyObject_HashNotImplemented PyObject_IS_GC PyObject_Init PyObject_InitVar PyObject_IsInstance PyObject_IsSubclass PyObject_IsTrue PyObject_Length PyObject_LengthHint PyObject_Malloc PyObject_Not PyObject_Print PyObject_Realloc PyObject_Repr PyObject_RichCompare PyObject_RichCompareBool PyObject_SelfIter PyObject_SetArenaAllocator PyObject_SetAttr PyObject_SetAttrString PyObject_SetItem PyObject_Size PyObject_Str PyObject_Type PyObject_VectorcallDict PyObject_VectorcallMethod PyPickleBuffer_FromObject PyPickleBuffer_GetBuffer PyPickleBuffer_Release PyPickleBuffer_Type DATA PyPreConfig_InitIsolatedConfig PyPreConfig_InitPythonConfig PyProperty_Type DATA PyRangeIter_Type DATA PyRange_Type DATA PyReversed_Type DATA PyRun_AnyFile PyRun_AnyFileEx PyRun_AnyFileExFlags PyRun_AnyFileFlags PyRun_File PyRun_FileEx PyRun_FileExFlags PyRun_FileFlags PyRun_InteractiveLoop PyRun_InteractiveLoopFlags PyRun_InteractiveOne PyRun_InteractiveOneFlags PyRun_InteractiveOneObject PyRun_SimpleFile PyRun_SimpleFileEx PyRun_SimpleFileExFlags PyRun_SimpleString PyRun_SimpleStringFlags PyRun_String PyRun_StringFlags PySeqIter_New PySeqIter_Type DATA PySequence_Check PySequence_Concat PySequence_Contains PySequence_Count PySequence_DelItem PySequence_DelSlice PySequence_Fast PySequence_GetItem PySequence_GetSlice PySequence_In PySequence_InPlaceConcat PySequence_InPlaceRepeat PySequence_Index PySequence_Length PySequence_List PySequence_Repeat PySequence_SetItem PySequence_SetSlice PySequence_Size PySequence_Tuple PySetIter_Type DATA PySet_Add PySet_Clear PySet_Contains PySet_Discard PySet_New PySet_Pop PySet_Size PySet_Type DATA PySlice_AdjustIndices PySlice_GetIndices PySlice_GetIndicesEx PySlice_New PySlice_Type DATA PySlice_Unpack PyState_AddModule PyState_FindModule PyState_RemoveModule PyStaticMethod_New PyStaticMethod_Type DATA PyStatus_Error PyStatus_Exception PyStatus_Exit PyStatus_IsError PyStatus_IsExit PyStatus_NoMemory PyStatus_Ok PyStdPrinter_Type DATA PyStructSequence_GetItem PyStructSequence_InitType PyStructSequence_InitType2 PyStructSequence_New PyStructSequence_NewType PyStructSequence_SetItem PySuper_Type DATA PySymtable_Lookup PySys_AddAuditHook PySys_AddWarnOption PySys_AddWarnOptionUnicode PySys_AddXOption PySys_Audit PySys_FormatStderr PySys_FormatStdout PySys_GetObject PySys_GetXOptions PySys_HasWarnOptions PySys_ResetWarnOptions PySys_SetArgv PySys_SetArgvEx PySys_SetObject PySys_SetPath PySys_WriteStderr PySys_WriteStdout PyThreadState_Clear PyThreadState_Delete PyThreadState_DeleteCurrent PyThreadState_Get PyThreadState_GetDict PyThreadState_GetFrame PyThreadState_GetID PyThreadState_GetInterpreter PyThreadState_New PyThreadState_Next PyThreadState_SetAsyncExc PyThreadState_Swap PyThread_GetInfo PyThread_ReInitTLS PyThread_acquire_lock PyThread_acquire_lock_timed PyThread_allocate_lock PyThread_create_key PyThread_delete_key PyThread_delete_key_value PyThread_exit_thread PyThread_free_lock PyThread_get_key_value PyThread_get_stacksize PyThread_get_thread_ident PyThread_get_thread_native_id PyThread_init_thread PyThread_release_lock PyThread_set_key_value PyThread_set_stacksize PyThread_start_new_thread PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyToken_OneChar PyToken_ThreeChars PyToken_TwoChars PyTraceBack_Here PyTraceBack_Print PyTraceBack_Type DATA PyTraceMalloc_Track PyTraceMalloc_Untrack PyTupleIter_Type DATA PyTuple_GetItem PyTuple_GetSlice PyTuple_New PyTuple_Pack PyTuple_SetItem PyTuple_Size PyTuple_Type DATA PyType_ClearCache PyType_FromModuleAndSpec PyType_FromSpec PyType_FromSpecWithBases PyType_GenericAlloc PyType_GenericNew PyType_GetFlags PyType_GetModule PyType_GetModuleState PyType_GetSlot PyType_IsSubtype PyType_Modified PyType_Ready PyType_Type DATA PyUnicodeDecodeError_Create PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetStart PyUnicodeEncodeError_Create PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetStart PyUnicodeIter_Type DATA PyUnicodeTranslateError_Create PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetStart PyUnicode_Append PyUnicode_AppendAndDel PyUnicode_AsASCIIString PyUnicode_AsCharmapString PyUnicode_AsDecodedObject PyUnicode_AsDecodedUnicode PyUnicode_AsEncodedObject PyUnicode_AsEncodedString PyUnicode_AsEncodedUnicode PyUnicode_AsLatin1String PyUnicode_AsMBCSString PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsUCS4 PyUnicode_AsUCS4Copy PyUnicode_AsUTF16String PyUnicode_AsUTF32String PyUnicode_AsUTF8 PyUnicode_AsUTF8AndSize PyUnicode_AsUTF8String PyUnicode_AsUnicode PyUnicode_AsUnicodeAndSize PyUnicode_AsUnicodeEscapeString PyUnicode_AsWideChar PyUnicode_AsWideCharString PyUnicode_BuildEncodingMap PyUnicode_Compare PyUnicode_CompareWithASCIIString PyUnicode_Concat PyUnicode_Contains PyUnicode_CopyCharacters PyUnicode_Count PyUnicode_Decode PyUnicode_DecodeASCII PyUnicode_DecodeCharmap PyUnicode_DecodeCodePageStateful PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeLatin1 PyUnicode_DecodeLocale PyUnicode_DecodeLocaleAndSize PyUnicode_DecodeMBCS PyUnicode_DecodeMBCSStateful PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUnicodeEscape PyUnicode_Encode PyUnicode_EncodeASCII PyUnicode_EncodeCharmap PyUnicode_EncodeCodePage PyUnicode_EncodeDecimal PyUnicode_EncodeFSDefault PyUnicode_EncodeLatin1 PyUnicode_EncodeLocale PyUnicode_EncodeMBCS PyUnicode_EncodeRawUnicodeEscape PyUnicode_EncodeUTF16 PyUnicode_EncodeUTF32 PyUnicode_EncodeUTF7 PyUnicode_EncodeUTF8 PyUnicode_EncodeUnicodeEscape PyUnicode_FSConverter PyUnicode_FSDecoder PyUnicode_Fill PyUnicode_Find PyUnicode_FindChar PyUnicode_Format PyUnicode_FromEncodedObject PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromKindAndData PyUnicode_FromObject PyUnicode_FromOrdinal PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_FromUnicode PyUnicode_FromWideChar PyUnicode_GetDefaultEncoding PyUnicode_GetLength PyUnicode_GetSize PyUnicode_InternFromString PyUnicode_InternImmortal PyUnicode_InternInPlace PyUnicode_IsIdentifier PyUnicode_Join PyUnicode_New PyUnicode_Partition PyUnicode_RPartition PyUnicode_RSplit PyUnicode_ReadChar PyUnicode_Replace PyUnicode_Resize PyUnicode_RichCompare PyUnicode_Split PyUnicode_Splitlines PyUnicode_Substring PyUnicode_Tailmatch PyUnicode_TransformDecimalToASCII PyUnicode_Translate PyUnicode_TranslateCharmap PyUnicode_Type DATA PyUnicode_WriteChar PyVectorcall_Call PyWeakref_GetObject PyWeakref_NewProxy PyWeakref_NewRef PyWideStringList_Append PyWideStringList_Insert PyWrapperDescr_Type DATA PyWrapper_New PyZip_Type DATA Py_AddPendingCall Py_AtExit Py_BuildValue Py_BytesMain Py_BytesWarningFlag DATA Py_CompileString Py_CompileStringExFlags Py_CompileStringFlags Py_CompileStringObject Py_DebugFlag DATA Py_DecRef Py_DecodeLocale Py_DontWriteBytecodeFlag DATA Py_EncodeLocale Py_EndInterpreter Py_EnterRecursiveCall Py_Exit Py_ExitStatusException Py_FatalError Py_FdIsInteractive Py_FileSystemDefaultEncodeErrors DATA Py_FileSystemDefaultEncoding DATA Py_Finalize Py_FinalizeEx Py_FrozenFlag DATA Py_GenericAlias Py_GenericAliasType DATA Py_GetArgcArgv Py_GetBuildInfo Py_GetCompiler Py_GetCopyright Py_GetExecPrefix Py_GetPath Py_GetPlatform Py_GetPrefix Py_GetProgramFullPath Py_GetProgramName Py_GetPythonHome Py_GetRecursionLimit Py_GetVersion Py_HasFileSystemDefaultEncoding DATA Py_HashRandomizationFlag DATA Py_IgnoreEnvironmentFlag DATA Py_IncRef Py_Initialize Py_InitializeEx Py_InitializeFromConfig Py_InspectFlag DATA Py_InteractiveFlag DATA Py_Is Py_IsFalse Py_IsInitialized Py_IsNone Py_IsTrue Py_IsolatedFlag DATA Py_LeaveRecursiveCall Py_LegacyWindowsFSEncodingFlag DATA Py_LegacyWindowsStdioFlag DATA Py_Main Py_MakePendingCalls Py_NewInterpreter Py_NewRef Py_NoSiteFlag DATA Py_NoUserSiteDirectory DATA Py_OptimizeFlag DATA Py_PreInitialize Py_PreInitializeFromArgs Py_PreInitializeFromBytesArgs Py_QuietFlag DATA Py_ReprEnter Py_ReprLeave Py_RunMain Py_SetPath Py_SetProgramName Py_SetPythonHome Py_SetRecursionLimit Py_SetStandardStreamEncoding Py_UTF8Mode DATA Py_UnbufferedStdioFlag DATA Py_UniversalNewlineFgets Py_VaBuildValue Py_VerboseFlag DATA Py_XNewRef Py_hexdigits DATA _PyAST_Compile _PyAccu_Accumulate _PyAccu_Destroy _PyAccu_Finish _PyAccu_FinishAsList _PyAccu_Init _PyArena_AddPyObject _PyArena_Free _PyArena_Malloc _PyArena_New _PyArg_BadArgument _PyArg_CheckPositional _PyArg_NoKeywords _PyArg_NoKwnames _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseStackAndKeywords_SizeT _PyArg_ParseStack_SizeT _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywordsFast_SizeT _PyArg_ParseTupleAndKeywords_SizeT _PyArg_ParseTuple_SizeT _PyArg_Parse_SizeT _PyArg_UnpackKeywords _PyArg_UnpackStack _PyArg_VaParseTupleAndKeywordsFast _PyArg_VaParseTupleAndKeywordsFast_SizeT _PyArg_VaParseTupleAndKeywords_SizeT _PyArg_VaParse_SizeT _PyArgv_AsWstrList _PyAsyncGenASend_Type DATA _PyAsyncGenAThrow_Type DATA _PyAsyncGenWrappedValue_Type DATA _PyByteArray_empty_string DATA _PyBytesIOBuffer_Type DATA _PyBytesWriter_Alloc _PyBytesWriter_Dealloc _PyBytesWriter_Finish _PyBytesWriter_Init _PyBytesWriter_Prepare _PyBytesWriter_Resize _PyBytesWriter_WriteBytes _PyBytes_DecodeEscape _PyBytes_FormatEx _PyBytes_FromHex _PyBytes_Join _PyBytes_Resize _PyCode_CheckLineNumber _PyCode_ConstantKey _PyCode_GetExtra _PyCode_SetExtra _PyCodecInfo_GetIncrementalDecoder _PyCodecInfo_GetIncrementalEncoder _PyCodec_DecodeText _PyCodec_EncodeText _PyCodec_Lookup _PyCodec_LookupTextEncoding _PyComplex_FormatAdvancedWriter _PyConfig_AsDict _PyConfig_FromDict _PyConfig_InitCompatConfig _PyContext_NewHamtForTests _PyCoroWrapper_Type DATA _PyCrossInterpreterData_Lookup _PyCrossInterpreterData_NewObject _PyCrossInterpreterData_RegisterClass _PyCrossInterpreterData_Release _PyDebugAllocatorStats _PyDictView_Intersect _PyDictView_New _PyDict_CheckConsistency _PyDict_ContainsId _PyDict_Contains_KnownHash _PyDict_DebugMallocStats _PyDict_DelItemId _PyDict_DelItemIf _PyDict_DelItem_KnownHash _PyDict_GetItemIdWithError _PyDict_GetItemStringWithError _PyDict_GetItem_KnownHash _PyDict_HasOnlyStringKeys _PyDict_MaybeUntrack _PyDict_MergeEx _PyDict_NewPresized _PyDict_Next _PyDict_Pop _PyDict_SetItemId _PyDict_SetItem_KnownHash _PyDict_SizeOf _PyErr_BadInternalCall _PyErr_ChainExceptions _PyErr_ChainStackItem _PyErr_CheckSignals _PyErr_CheckSignalsTstate _PyErr_Clear _PyErr_Display _PyErr_ExceptionMatches _PyErr_Fetch _PyErr_Format _PyErr_FormatFromCause _PyErr_FormatFromCauseTstate _PyErr_GetExcInfo _PyErr_GetTopmostException _PyErr_NoMemory _PyErr_NormalizeException _PyErr_Print _PyErr_ProgramDecodedTextObject _PyErr_Restore _PyErr_SetKeyError _PyErr_SetNone _PyErr_SetObject _PyErr_SetString _PyErr_TrySetFromCause _PyErr_WriteUnraisableMsg _PyEval_AddPendingCall _PyEval_CallTracing _PyEval_EvalFrameDefault _PyEval_GetAsyncGenFinalizer _PyEval_GetAsyncGenFirstiter _PyEval_GetBuiltinId _PyEval_GetCoroutineOriginTrackingDepth _PyEval_GetSwitchInterval _PyEval_RequestCodeExtraIndex _PyEval_SetAsyncGenFinalizer _PyEval_SetAsyncGenFirstiter _PyEval_SetCoroutineOriginTrackingDepth _PyEval_SetProfile _PyEval_SetSwitchInterval _PyEval_SetTrace _PyEval_SignalAsyncExc _PyEval_SignalReceived _PyEval_SliceIndex _PyEval_SliceIndexNotNone _PyFloat_DebugMallocStats _PyFloat_FormatAdvancedWriter _PyFloat_Pack2 _PyFloat_Pack4 _PyFloat_Pack8 _PyFloat_Unpack2 _PyFloat_Unpack4 _PyFloat_Unpack8 _PyFrame_DebugMallocStats _PyFunction_Vectorcall _PyGILState_GetInterpreterStateUnsafe _PyGen_FetchStopIterationValue _PyGen_Finalize _PyGen_SetStopIterationValue _PyHamtItems_Type DATA _PyHamtKeys_Type DATA _PyHamtValues_Type DATA _PyHamt_ArrayNode_Type DATA _PyHamt_BitmapNode_Type DATA _PyHamt_CollisionNode_Type DATA _PyHamt_Type DATA _PyImport_AcquireLock _PyImport_FindExtensionObject _PyImport_FixupBuiltin _PyImport_FixupExtensionObject _PyImport_GetModuleAttr _PyImport_GetModuleAttrString _PyImport_GetModuleId _PyImport_IsInitialized _PyImport_ReleaseLock _PyImport_SetModule _PyImport_SetModuleString _PyInterpreterID_LookUp _PyInterpreterID_New _PyInterpreterID_Type DATA _PyInterpreterState_Enable _PyInterpreterState_GetConfig _PyInterpreterState_GetConfigCopy _PyInterpreterState_GetEvalFrameFunc _PyInterpreterState_GetIDObject _PyInterpreterState_GetMainModule _PyInterpreterState_IDDecref _PyInterpreterState_IDIncref _PyInterpreterState_IDInitref _PyInterpreterState_LookUpID _PyInterpreterState_RequireIDRef _PyInterpreterState_RequiresIDRef _PyInterpreterState_SetConfig _PyInterpreterState_SetEvalFrameFunc _PyList_DebugMallocStats _PyList_Extend _PyLong_AsByteArray _PyLong_AsInt _PyLong_AsTime_t _PyLong_Copy _PyLong_DigitValue DATA _PyLong_DivmodNear _PyLong_FileDescriptor_Converter _PyLong_Format _PyLong_FormatAdvancedWriter _PyLong_FormatBytesWriter _PyLong_FormatWriter _PyLong_Frexp _PyLong_FromByteArray _PyLong_FromBytes _PyLong_FromTime_t _PyLong_GCD _PyLong_Lshift _PyLong_New _PyLong_NumBits _PyLong_Rshift _PyLong_Sign _PyLong_Size_t_Converter _PyLong_UnsignedInt_Converter _PyLong_UnsignedLongLong_Converter _PyLong_UnsignedLong_Converter _PyLong_UnsignedShort_Converter _PyManagedBuffer_Type DATA _PyMem_GetAllocatorName _PyMem_GetCurrentAllocatorName _PyMem_RawStrdup _PyMem_RawWcsdup _PyMem_SetDefaultAllocator _PyMem_SetupAllocators _PyMem_Strdup _PyMethodWrapper_Type DATA _PyModuleSpec_IsInitializing _PyModule_Clear _PyModule_ClearDict _PyModule_CreateInitialized _PyNamespace_New _PyNamespace_Type DATA _PyNone_Type DATA _PyNotImplemented_Type DATA _PyNumber_Index _PyOS_InterruptOccurred _PyOS_IsMainThread _PyOS_ReadlineTState DATA _PyOS_SigintEvent _PyOS_URandom _PyOS_URandomNonblock _PyObject_AssertFailed _PyObject_Call _PyObject_CallFunction_SizeT _PyObject_CallMethodId _PyObject_CallMethodIdObjArgs _PyObject_CallMethodId_SizeT _PyObject_CallMethod_SizeT _PyObject_Call_Prepend _PyObject_CheckConsistency _PyObject_CheckCrossInterpreterData _PyObject_DebugMallocStats _PyObject_DebugTypeStats _PyObject_Dump _PyObject_FastCallDictTstate _PyObject_FunctionStr _PyObject_GC_Calloc _PyObject_GC_Malloc _PyObject_GC_New _PyObject_GC_NewVar _PyObject_GC_Resize _PyObject_GenericGetAttrWithDict _PyObject_GenericSetAttrWithDict _PyObject_GetAttrId _PyObject_GetCrossInterpreterData _PyObject_GetDictPtr _PyObject_GetMethod _PyObject_HasLen _PyObject_IsAbstract _PyObject_IsFreed _PyObject_LookupAttr _PyObject_LookupAttrId _PyObject_LookupSpecial _PyObject_MakeTpCall _PyObject_New _PyObject_NewVar _PyObject_NextNotImplemented _PyObject_RealIsInstance _PyObject_RealIsSubclass _PyObject_SetAttrId _PyParser_TokenNames DATA _PyPreConfig_InitCompatConfig _PyRun_AnyFileObject _PyRun_InteractiveLoopObject _PyRun_SimpleFileObject _PyRuntime DATA _PyRuntimeState_Fini _PyRuntimeState_Init _PyRuntime_Finalize _PyRuntime_Initialize _PySequence_BytesToCharpArray _PySequence_IterSearch _PySet_Dummy DATA _PySet_NextEntry _PySet_Update _PySlice_FromIndices _PySlice_GetLongIndices _PyStack_AsDict _PyState_AddModule _PyStructSequence_InitType _PySys_GetObjectId _PySys_GetSizeOf _PySys_SetObjectId _PyThreadState_DeleteCurrent _PyThreadState_DeleteExcept _PyThreadState_GetDict _PyThreadState_Init _PyThreadState_Prealloc _PyThreadState_Swap _PyThreadState_UncheckedGet _PyThread_CurrentExceptions _PyThread_CurrentFrames _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_noraise _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetPerfCounter _PyTime_GetPerfCounterWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_MulDiv _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _PyTraceMalloc_GetTraceback _PyTraceback_Add _PyTrash_begin _PyTrash_cond _PyTrash_deposit_object _PyTrash_destroy_chain _PyTrash_end _PyTrash_thread_deposit_object _PyTrash_thread_destroy_chain _PyTuple_DebugMallocStats _PyTuple_MaybeUntrack _PyTuple_Resize _PyType_CalculateMetaclass _PyType_CheckConsistency _PyType_GetDocFromInternalDoc _PyType_GetModuleByDef _PyType_GetTextSignatureFromInternalDoc _PyType_Lookup _PyType_LookupId _PyType_Name _PyUnicodeTranslateError_Create _PyUnicodeWriter_Dealloc _PyUnicodeWriter_Finish _PyUnicodeWriter_Init _PyUnicodeWriter_PrepareInternal _PyUnicodeWriter_PrepareKindInternal _PyUnicodeWriter_WriteASCIIString _PyUnicodeWriter_WriteChar _PyUnicodeWriter_WriteLatin1String _PyUnicodeWriter_WriteStr _PyUnicodeWriter_WriteSubstring _PyUnicode_AsASCIIString _PyUnicode_AsLatin1String _PyUnicode_AsUTF8String _PyUnicode_AsUnicode _PyUnicode_CheckConsistency _PyUnicode_Copy _PyUnicode_DecodeRawUnicodeEscapeStateful _PyUnicode_DecodeUnicodeEscapeInternal _PyUnicode_DecodeUnicodeEscapeStateful _PyUnicode_EQ _PyUnicode_EncodeCharmap _PyUnicode_EncodeUTF16 _PyUnicode_EncodeUTF32 _PyUnicode_EncodeUTF7 _PyUnicode_EqualToASCIIId _PyUnicode_EqualToASCIIString _PyUnicode_FastCopyCharacters _PyUnicode_FastFill _PyUnicode_FindMaxChar _PyUnicode_FormatAdvancedWriter _PyUnicode_FormatLong _PyUnicode_FromASCII _PyUnicode_FromId _PyUnicode_InsertThousandsGrouping _PyUnicode_IsAlpha _PyUnicode_IsCaseIgnorable _PyUnicode_IsCased _PyUnicode_IsDecimalDigit _PyUnicode_IsDigit _PyUnicode_IsLinebreak _PyUnicode_IsLowercase _PyUnicode_IsNumeric _PyUnicode_IsPrintable _PyUnicode_IsTitlecase _PyUnicode_IsUppercase _PyUnicode_IsWhitespace _PyUnicode_IsXidContinue _PyUnicode_IsXidStart _PyUnicode_JoinArray _PyUnicode_Ready _PyUnicode_ScanIdentifier _PyUnicode_ToDecimalDigit _PyUnicode_ToDigit _PyUnicode_ToFoldedFull _PyUnicode_ToLowerFull _PyUnicode_ToLowercase _PyUnicode_ToNumeric _PyUnicode_ToTitleFull _PyUnicode_ToTitlecase _PyUnicode_ToUpperFull _PyUnicode_ToUppercase _PyUnicode_TransformDecimalAndSpaceToASCII _PyUnicode_WideCharString_Converter _PyUnicode_WideCharString_Opt_Converter _PyUnicode_XStrip _PyWarnings_Init _PyWeakref_CallableProxyType DATA _PyWeakref_ClearRef _PyWeakref_GetWeakrefCount _PyWeakref_ProxyType DATA _PyWeakref_RefType DATA _PyWideStringList_AsList _PyWideStringList_Clear _PyWideStringList_Copy _PyWideStringList_Extend _PyWindowsConsoleIO_Type DATA _Py_BreakPoint _Py_BuildValue_SizeT _Py_CheckFunctionResult _Py_CheckRecursiveCall _Py_ClearArgcArgv _Py_ClearStandardStreamEncoding _Py_CoerceLegacyLocale _Py_Dealloc _Py_DecRef _Py_DecodeLocaleEx _Py_DisplaySourceLine _Py_DumpExtensionModules _Py_EllipsisObject DATA _Py_EncodeLocaleEx _Py_EncodeLocaleRaw _Py_FalseStruct DATA _Py_FatalErrorFormat _Py_FatalErrorFunc _Py_FatalError_TstateNULL _Py_FdIsInteractive _Py_FreeCharPArray _Py_GetAllocatedBlocks _Py_GetConfig _Py_GetConfigsAsDict _Py_GetEnv _Py_GetErrorHandler _Py_GetForceASCII _Py_GetLocaleEncoding _Py_GetLocaleEncodingObject _Py_GetLocaleconvNumeric _Py_HandleSystemExit _Py_HashBytes _Py_HashDouble _Py_HashPointer _Py_HashPointerRaw _Py_HashSecret DATA _Py_IncRef _Py_InitializeMain _Py_IsCoreInitialized _Py_IsFinalizing _Py_IsLocaleCoercionTarget _Py_LegacyLocaleDetected _Py_NewInterpreter _Py_NewReference _Py_NoneStruct DATA _Py_NotImplementedStruct DATA _Py_PackageContext DATA _Py_PreInitializeFromConfig _Py_PreInitializeFromPyArgv _Py_ResetForceASCII _Py_RestoreSignals _Py_SetLocaleFromEnv _Py_SetProgramFullPath _Py_SourceAsString _Py_SwappedOp DATA _Py_TrueStruct DATA _Py_UTF8_Edit_Cost _Py_UnhandledKeyboardInterrupt DATA _Py_VaBuildStack _Py_VaBuildStack_SizeT _Py_VaBuildValue_SizeT _Py_abspath _Py_add_one_to_index_C _Py_add_one_to_index_F _Py_ascii_whitespace DATA _Py_c_abs _Py_c_diff _Py_c_neg _Py_c_pow _Py_c_prod _Py_c_quot _Py_c_sum _Py_closerange _Py_convert_optional_to_ssize_t _Py_ctype_table DATA _Py_ctype_tolower DATA _Py_ctype_toupper DATA _Py_device_encoding _Py_dg_dtoa _Py_dg_freedtoa _Py_dg_infinity _Py_dg_stdnan _Py_dg_strtod _Py_dup _Py_fopen_obj _Py_fstat _Py_fstat_noraise _Py_get_env_flag _Py_get_inheritable _Py_get_osfhandle _Py_get_osfhandle_noraise _Py_get_xoption _Py_gitidentifier _Py_gitversion _Py_hashtable_clear _Py_hashtable_compare_direct _Py_hashtable_destroy _Py_hashtable_foreach _Py_hashtable_get _Py_hashtable_hash_ptr _Py_hashtable_new _Py_hashtable_new_full _Py_hashtable_set _Py_hashtable_size _Py_hashtable_steal _Py_open _Py_open_noraise _Py_open_osfhandle _Py_open_osfhandle_noraise _Py_parse_inf_or_nan _Py_path_config DATA _Py_read _Py_set_inheritable _Py_set_inheritable_async_safe _Py_stat _Py_str_to_int _Py_strhex _Py_strhex_bytes _Py_strhex_bytes_with_sep _Py_strhex_with_sep _Py_string_to_number_with_underscores _Py_tracemalloc_config DATA _Py_wfopen _Py_wgetcwd _Py_write _Py_write_noraise python3-dll-a-0.2.10/src/python311.def000064400000000000000000001042631046102023000153220ustar 00000000000000; ; Definition file of python311.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "python311.dll" EXPORTS PyAIter_Check PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyArg_UnpackTuple PyArg_VaParse PyArg_VaParseTupleAndKeywords PyArg_ValidateKeywordArguments PyAsyncGen_New PyAsyncGen_Type DATA PyBaseObject_Type DATA PyBool_FromLong PyBool_Type DATA PyBuffer_FillContiguousStrides PyBuffer_FillInfo PyBuffer_FromContiguous PyBuffer_GetPointer PyBuffer_IsContiguous PyBuffer_Release PyBuffer_SizeFromFormat PyBuffer_ToContiguous PyByteArrayIter_Type DATA PyByteArray_AsString PyByteArray_Concat PyByteArray_FromObject PyByteArray_FromStringAndSize PyByteArray_Resize PyByteArray_Size PyByteArray_Type DATA PyBytesIter_Type DATA PyBytes_AsString PyBytes_AsStringAndSize PyBytes_Concat PyBytes_ConcatAndDel PyBytes_DecodeEscape PyBytes_FromFormat PyBytes_FromFormatV PyBytes_FromObject PyBytes_FromString PyBytes_FromStringAndSize PyBytes_Repr PyBytes_Size PyBytes_Type DATA PyCFunction_Call PyCFunction_GetFlags PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_New PyCFunction_NewEx PyCFunction_Type DATA PyCMethod_New PyCMethod_Type DATA PyCallIter_New PyCallIter_Type DATA PyCallable_Check PyCapsule_GetContext PyCapsule_GetDestructor PyCapsule_GetName PyCapsule_GetPointer PyCapsule_Import PyCapsule_IsValid PyCapsule_New PyCapsule_SetContext PyCapsule_SetDestructor PyCapsule_SetName PyCapsule_SetPointer PyCapsule_Type DATA PyCell_Get PyCell_New PyCell_Set PyCell_Type DATA PyClassMethodDescr_Type DATA PyClassMethod_New PyClassMethod_Type DATA PyCode_Addr2Line PyCode_Addr2Location PyCode_GetCellvars PyCode_GetCode PyCode_GetFreevars PyCode_GetVarnames PyCode_New PyCode_NewEmpty PyCode_NewWithPosOnlyArgs PyCode_Optimize PyCode_Type DATA PyCodec_BackslashReplaceErrors PyCodec_Decode PyCodec_Decoder PyCodec_Encode PyCodec_Encoder PyCodec_IgnoreErrors PyCodec_IncrementalDecoder PyCodec_IncrementalEncoder PyCodec_KnownEncoding PyCodec_LookupError PyCodec_NameReplaceErrors PyCodec_Register PyCodec_RegisterError PyCodec_ReplaceErrors PyCodec_StreamReader PyCodec_StreamWriter PyCodec_StrictErrors PyCodec_Unregister PyCodec_XMLCharRefReplaceErrors PyCompile_OpcodeStackEffect PyCompile_OpcodeStackEffectWithJump PyComplex_AsCComplex PyComplex_FromCComplex PyComplex_FromDoubles PyComplex_ImagAsDouble PyComplex_RealAsDouble PyComplex_Type DATA PyConfig_Clear PyConfig_InitIsolatedConfig PyConfig_InitPythonConfig PyConfig_Read PyConfig_SetArgv PyConfig_SetBytesArgv PyConfig_SetBytesString PyConfig_SetString PyConfig_SetWideStringList PyContextToken_Type DATA PyContextVar_Get PyContextVar_New PyContextVar_Reset PyContextVar_Set PyContextVar_Type DATA PyContext_Copy PyContext_CopyCurrent PyContext_Enter PyContext_Exit PyContext_New PyContext_Type DATA PyCoro_New PyCoro_Type DATA PyDescr_IsData PyDescr_NewClassMethod PyDescr_NewGetSet PyDescr_NewMember PyDescr_NewMethod PyDescr_NewWrapper PyDictItems_Type DATA PyDictIterItem_Type DATA PyDictIterKey_Type DATA PyDictIterValue_Type DATA PyDictKeys_Type DATA PyDictProxy_New PyDictProxy_Type DATA PyDictRevIterItem_Type DATA PyDictRevIterKey_Type DATA PyDictRevIterValue_Type DATA PyDictValues_Type DATA PyDict_Clear PyDict_Contains PyDict_Copy PyDict_DelItem PyDict_DelItemString PyDict_GetItem PyDict_GetItemString PyDict_GetItemWithError PyDict_Items PyDict_Keys PyDict_Merge PyDict_MergeFromSeq2 PyDict_New PyDict_Next PyDict_SetDefault PyDict_SetItem PyDict_SetItemString PyDict_Size PyDict_Type DATA PyDict_Update PyDict_Values PyEllipsis_Type DATA PyEnum_Type DATA PyErr_BadArgument PyErr_BadInternalCall PyErr_CheckSignals PyErr_Clear PyErr_Display PyErr_ExceptionMatches PyErr_Fetch PyErr_Format PyErr_FormatV PyErr_GetExcInfo PyErr_GetHandledException PyErr_GivenExceptionMatches PyErr_NewException PyErr_NewExceptionWithDoc PyErr_NoMemory PyErr_NormalizeException PyErr_Occurred PyErr_Print PyErr_PrintEx PyErr_ProgramText PyErr_ProgramTextObject PyErr_RangedSyntaxLocationObject PyErr_ResourceWarning PyErr_Restore PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetExcInfo PyErr_SetFromErrno PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilenameObject PyErr_SetFromErrnoWithFilenameObjects PyErr_SetFromWindowsErr PyErr_SetFromWindowsErrWithFilename PyErr_SetHandledException PyErr_SetImportError PyErr_SetImportErrorSubclass PyErr_SetInterrupt PyErr_SetInterruptEx PyErr_SetNone PyErr_SetObject PyErr_SetString PyErr_SyntaxLocation PyErr_SyntaxLocationEx PyErr_SyntaxLocationObject PyErr_WarnEx PyErr_WarnExplicit PyErr_WarnExplicitFormat PyErr_WarnExplicitObject PyErr_WarnFormat PyErr_WriteUnraisable PyEval_AcquireLock PyEval_AcquireThread PyEval_CallFunction PyEval_CallMethod PyEval_CallObjectWithKeywords PyEval_EvalCode PyEval_EvalCodeEx PyEval_EvalFrame PyEval_EvalFrameEx PyEval_GetBuiltins PyEval_GetFrame PyEval_GetFuncDesc PyEval_GetFuncName PyEval_GetGlobals PyEval_GetLocals PyEval_InitThreads PyEval_MergeCompilerFlags PyEval_ReleaseLock PyEval_ReleaseThread PyEval_RestoreThread PyEval_SaveThread PyEval_SetProfile PyEval_SetTrace PyEval_ThreadsInitialized PyExc_ArithmeticError DATA PyExc_AssertionError DATA PyExc_AttributeError DATA PyExc_BaseException DATA PyExc_BaseExceptionGroup DATA PyExc_BlockingIOError DATA PyExc_BrokenPipeError DATA PyExc_BufferError DATA PyExc_BytesWarning DATA PyExc_ChildProcessError DATA PyExc_ConnectionAbortedError DATA PyExc_ConnectionError DATA PyExc_ConnectionRefusedError DATA PyExc_ConnectionResetError DATA PyExc_DeprecationWarning DATA PyExc_EOFError DATA PyExc_EncodingWarning DATA PyExc_EnvironmentError DATA PyExc_Exception DATA PyExc_FileExistsError DATA PyExc_FileNotFoundError DATA PyExc_FloatingPointError DATA PyExc_FutureWarning DATA PyExc_GeneratorExit DATA PyExc_IOError DATA PyExc_ImportError DATA PyExc_ImportWarning DATA PyExc_IndentationError DATA PyExc_IndexError DATA PyExc_InterruptedError DATA PyExc_IsADirectoryError DATA PyExc_KeyError DATA PyExc_KeyboardInterrupt DATA PyExc_LookupError DATA PyExc_MemoryError DATA PyExc_ModuleNotFoundError DATA PyExc_NameError DATA PyExc_NotADirectoryError DATA PyExc_NotImplementedError DATA PyExc_OSError DATA PyExc_OverflowError DATA PyExc_PendingDeprecationWarning DATA PyExc_PermissionError DATA PyExc_ProcessLookupError DATA PyExc_RecursionError DATA PyExc_ReferenceError DATA PyExc_ResourceWarning DATA PyExc_RuntimeError DATA PyExc_RuntimeWarning DATA PyExc_StopAsyncIteration DATA PyExc_StopIteration DATA PyExc_SyntaxError DATA PyExc_SyntaxWarning DATA PyExc_SystemError DATA PyExc_SystemExit DATA PyExc_TabError DATA PyExc_TimeoutError DATA PyExc_TypeError DATA PyExc_UnboundLocalError DATA PyExc_UnicodeDecodeError DATA PyExc_UnicodeEncodeError DATA PyExc_UnicodeError DATA PyExc_UnicodeTranslateError DATA PyExc_UnicodeWarning DATA PyExc_UserWarning DATA PyExc_ValueError DATA PyExc_Warning DATA PyExc_WindowsError DATA PyExc_ZeroDivisionError DATA PyExceptionClass_Name PyException_GetCause PyException_GetContext PyException_GetTraceback PyException_SetCause PyException_SetContext PyException_SetTraceback PyFile_FromFd PyFile_GetLine PyFile_NewStdPrinter PyFile_OpenCode PyFile_OpenCodeObject PyFile_SetOpenCodeHook PyFile_WriteObject PyFile_WriteString PyFilter_Type DATA PyFloat_AsDouble PyFloat_FromDouble PyFloat_FromString PyFloat_GetInfo PyFloat_GetMax PyFloat_GetMin PyFloat_Pack2 PyFloat_Pack4 PyFloat_Pack8 PyFloat_Type DATA PyFloat_Unpack2 PyFloat_Unpack4 PyFloat_Unpack8 PyFrame_FastToLocals PyFrame_FastToLocalsWithError PyFrame_GetBack PyFrame_GetBuiltins PyFrame_GetCode PyFrame_GetGenerator PyFrame_GetGlobals PyFrame_GetLasti PyFrame_GetLineNumber PyFrame_GetLocals PyFrame_LocalsToFast PyFrame_New PyFrame_Type DATA PyFrozenSet_New PyFrozenSet_Type DATA PyFunction_GetAnnotations PyFunction_GetClosure PyFunction_GetCode PyFunction_GetDefaults PyFunction_GetGlobals PyFunction_GetKwDefaults PyFunction_GetModule PyFunction_New PyFunction_NewWithQualName PyFunction_SetAnnotations PyFunction_SetClosure PyFunction_SetDefaults PyFunction_SetKwDefaults PyFunction_Type DATA PyGC_Collect PyGC_Disable PyGC_Enable PyGC_IsEnabled PyGILState_Check PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release PyGen_New PyGen_NewWithQualName PyGen_Type DATA PyGetSetDescr_Type DATA PyHash_GetFuncDef PyImport_AddModule PyImport_AddModuleObject PyImport_AppendInittab PyImport_ExecCodeModule PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleObject PyImport_ExecCodeModuleWithPathnames PyImport_ExtendInittab PyImport_FrozenModules DATA PyImport_GetImporter PyImport_GetMagicNumber PyImport_GetMagicTag PyImport_GetModule PyImport_GetModuleDict PyImport_Import PyImport_ImportFrozenModule PyImport_ImportFrozenModuleObject PyImport_ImportModule PyImport_ImportModuleLevel PyImport_ImportModuleLevelObject PyImport_ImportModuleNoBlock PyImport_Inittab DATA PyImport_ReloadModule PyIndex_Check PyInstanceMethod_Function PyInstanceMethod_New PyInstanceMethod_Type DATA PyInterpreterState_Clear PyInterpreterState_Delete PyInterpreterState_Get PyInterpreterState_GetDict PyInterpreterState_GetID PyInterpreterState_Head PyInterpreterState_Main PyInterpreterState_New PyInterpreterState_Next PyInterpreterState_ThreadHead PyIter_Check PyIter_Next PyIter_Send PyListIter_Type DATA PyListRevIter_Type DATA PyList_Append PyList_AsTuple PyList_GetItem PyList_GetSlice PyList_Insert PyList_New PyList_Reverse PyList_SetItem PyList_SetSlice PyList_Size PyList_Sort PyList_Type DATA PyLongRangeIter_Type DATA PyLong_AsDouble PyLong_AsLong PyLong_AsLongAndOverflow PyLong_AsLongLong PyLong_AsLongLongAndOverflow PyLong_AsSize_t PyLong_AsSsize_t PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongMask PyLong_AsVoidPtr PyLong_FromDouble PyLong_FromLong PyLong_FromLongLong PyLong_FromSize_t PyLong_FromSsize_t PyLong_FromString PyLong_FromUnicodeObject PyLong_FromUnsignedLong PyLong_FromUnsignedLongLong PyLong_FromVoidPtr PyLong_GetInfo PyLong_Type DATA PyMap_Type DATA PyMapping_Check PyMapping_GetItemString PyMapping_HasKey PyMapping_HasKeyString PyMapping_Items PyMapping_Keys PyMapping_Length PyMapping_SetItemString PyMapping_Size PyMapping_Values PyMarshal_ReadLastObjectFromFile PyMarshal_ReadLongFromFile PyMarshal_ReadObjectFromFile PyMarshal_ReadObjectFromString PyMarshal_ReadShortFromFile PyMarshal_WriteLongToFile PyMarshal_WriteObjectToFile PyMarshal_WriteObjectToString PyMem_Calloc PyMem_Free PyMem_GetAllocator PyMem_Malloc PyMem_RawCalloc PyMem_RawFree PyMem_RawMalloc PyMem_RawRealloc PyMem_Realloc PyMem_SetAllocator PyMem_SetupDebugHooks PyMemberDescr_Type DATA PyMember_GetOne PyMember_SetOne PyMemoryView_FromBuffer PyMemoryView_FromMemory PyMemoryView_FromObject PyMemoryView_GetContiguous PyMemoryView_Type DATA PyMethodDescr_Type DATA PyMethod_Function PyMethod_New PyMethod_Self PyMethod_Type DATA PyModuleDef_Init PyModuleDef_Type DATA PyModule_AddFunctions PyModule_AddIntConstant PyModule_AddObject PyModule_AddObjectRef PyModule_AddStringConstant PyModule_AddType PyModule_Create2 PyModule_ExecDef PyModule_FromDefAndSpec2 PyModule_GetDef PyModule_GetDict PyModule_GetFilename PyModule_GetFilenameObject PyModule_GetName PyModule_GetNameObject PyModule_GetState PyModule_New PyModule_NewObject PyModule_SetDocString PyModule_Type DATA PyNumber_Absolute PyNumber_Add PyNumber_And PyNumber_AsSsize_t PyNumber_Check PyNumber_Divmod PyNumber_Float PyNumber_FloorDivide PyNumber_InPlaceAdd PyNumber_InPlaceAnd PyNumber_InPlaceFloorDivide PyNumber_InPlaceLshift PyNumber_InPlaceMatrixMultiply PyNumber_InPlaceMultiply PyNumber_InPlaceOr PyNumber_InPlacePower PyNumber_InPlaceRemainder PyNumber_InPlaceRshift PyNumber_InPlaceSubtract PyNumber_InPlaceTrueDivide PyNumber_InPlaceXor PyNumber_Index PyNumber_Invert PyNumber_Long PyNumber_Lshift PyNumber_MatrixMultiply PyNumber_Multiply PyNumber_Negative PyNumber_Or PyNumber_Positive PyNumber_Power PyNumber_Remainder PyNumber_Rshift PyNumber_Subtract PyNumber_ToBase PyNumber_TrueDivide PyNumber_Xor PyODictItems_Type DATA PyODictIter_Type DATA PyODictKeys_Type DATA PyODictValues_Type DATA PyODict_DelItem PyODict_New PyODict_SetItem PyODict_Type DATA PyOS_AfterFork PyOS_FSPath PyOS_InputHook DATA PyOS_InterruptOccurred PyOS_Readline PyOS_ReadlineFunctionPointer DATA PyOS_double_to_string PyOS_getsig PyOS_mystricmp PyOS_mystrnicmp PyOS_setsig PyOS_snprintf PyOS_string_to_double PyOS_strtol PyOS_strtoul PyOS_vsnprintf PyObject_ASCII PyObject_AsCharBuffer PyObject_AsFileDescriptor PyObject_AsReadBuffer PyObject_AsWriteBuffer PyObject_Bytes PyObject_Call PyObject_CallFinalizer PyObject_CallFinalizerFromDealloc PyObject_CallFunction PyObject_CallFunctionObjArgs PyObject_CallMethod PyObject_CallMethodObjArgs PyObject_CallNoArgs PyObject_CallObject PyObject_CallOneArg PyObject_Calloc PyObject_CheckBuffer PyObject_CheckReadBuffer PyObject_ClearWeakRefs PyObject_CopyData PyObject_DelItem PyObject_DelItemString PyObject_Dir PyObject_Format PyObject_Free PyObject_GC_Del PyObject_GC_IsFinalized PyObject_GC_IsTracked PyObject_GC_Track PyObject_GC_UnTrack PyObject_GET_WEAKREFS_LISTPTR PyObject_GenericGetAttr PyObject_GenericGetDict PyObject_GenericSetAttr PyObject_GenericSetDict PyObject_GetAIter PyObject_GetArenaAllocator PyObject_GetAttr PyObject_GetAttrString PyObject_GetBuffer PyObject_GetItem PyObject_GetIter PyObject_HasAttr PyObject_HasAttrString PyObject_Hash PyObject_HashNotImplemented PyObject_IS_GC PyObject_Init PyObject_InitVar PyObject_IsInstance PyObject_IsSubclass PyObject_IsTrue PyObject_Length PyObject_LengthHint PyObject_Malloc PyObject_Not PyObject_Print PyObject_Realloc PyObject_Repr PyObject_RichCompare PyObject_RichCompareBool PyObject_SelfIter PyObject_SetArenaAllocator PyObject_SetAttr PyObject_SetAttrString PyObject_SetItem PyObject_Size PyObject_Str PyObject_Type PyObject_Vectorcall PyObject_VectorcallDict PyObject_VectorcallMethod PyPickleBuffer_FromObject PyPickleBuffer_GetBuffer PyPickleBuffer_Release PyPickleBuffer_Type DATA PyPreConfig_InitIsolatedConfig PyPreConfig_InitPythonConfig PyProperty_Type DATA PyRangeIter_Type DATA PyRange_Type DATA PyReversed_Type DATA PyRun_AnyFile PyRun_AnyFileEx PyRun_AnyFileExFlags PyRun_AnyFileFlags PyRun_File PyRun_FileEx PyRun_FileExFlags PyRun_FileFlags PyRun_InteractiveLoop PyRun_InteractiveLoopFlags PyRun_InteractiveOne PyRun_InteractiveOneFlags PyRun_InteractiveOneObject PyRun_SimpleFile PyRun_SimpleFileEx PyRun_SimpleFileExFlags PyRun_SimpleString PyRun_SimpleStringFlags PyRun_String PyRun_StringFlags PySeqIter_New PySeqIter_Type DATA PySequence_Check PySequence_Concat PySequence_Contains PySequence_Count PySequence_DelItem PySequence_DelSlice PySequence_Fast PySequence_GetItem PySequence_GetSlice PySequence_In PySequence_InPlaceConcat PySequence_InPlaceRepeat PySequence_Index PySequence_Length PySequence_List PySequence_Repeat PySequence_SetItem PySequence_SetSlice PySequence_Size PySequence_Tuple PySetIter_Type DATA PySet_Add PySet_Clear PySet_Contains PySet_Discard PySet_New PySet_Pop PySet_Size PySet_Type DATA PySlice_AdjustIndices PySlice_GetIndices PySlice_GetIndicesEx PySlice_New PySlice_Type DATA PySlice_Unpack PyState_AddModule PyState_FindModule PyState_RemoveModule PyStaticMethod_New PyStaticMethod_Type DATA PyStatus_Error PyStatus_Exception PyStatus_Exit PyStatus_IsError PyStatus_IsExit PyStatus_NoMemory PyStatus_Ok PyStdPrinter_Type DATA PyStructSequence_GetItem PyStructSequence_InitType PyStructSequence_InitType2 PyStructSequence_New PyStructSequence_NewType PyStructSequence_SetItem PyStructSequence_UnnamedField DATA PySuper_Type DATA PySymtable_Lookup PySys_AddAuditHook PySys_AddWarnOption PySys_AddWarnOptionUnicode PySys_AddXOption PySys_Audit PySys_FormatStderr PySys_FormatStdout PySys_GetObject PySys_GetXOptions PySys_HasWarnOptions PySys_ResetWarnOptions PySys_SetArgv PySys_SetArgvEx PySys_SetObject PySys_SetPath PySys_WriteStderr PySys_WriteStdout PyThreadState_Clear PyThreadState_Delete PyThreadState_DeleteCurrent PyThreadState_EnterTracing PyThreadState_Get PyThreadState_GetDict PyThreadState_GetFrame PyThreadState_GetID PyThreadState_GetInterpreter PyThreadState_LeaveTracing PyThreadState_New PyThreadState_Next PyThreadState_SetAsyncExc PyThreadState_Swap PyThread_GetInfo PyThread_ReInitTLS PyThread_acquire_lock PyThread_acquire_lock_timed PyThread_allocate_lock PyThread_create_key PyThread_delete_key PyThread_delete_key_value PyThread_exit_thread PyThread_free_lock PyThread_get_key_value PyThread_get_stacksize PyThread_get_thread_ident PyThread_get_thread_native_id PyThread_init_thread PyThread_release_lock PyThread_set_key_value PyThread_set_stacksize PyThread_start_new_thread PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyToken_OneChar PyToken_ThreeChars PyToken_TwoChars PyTraceBack_Here PyTraceBack_Print PyTraceBack_Type DATA PyTraceMalloc_Track PyTraceMalloc_Untrack PyTupleIter_Type DATA PyTuple_GetItem PyTuple_GetSlice PyTuple_New PyTuple_Pack PyTuple_SetItem PyTuple_Size PyTuple_Type DATA PyType_ClearCache PyType_FromModuleAndSpec PyType_FromSpec PyType_FromSpecWithBases PyType_GenericAlloc PyType_GenericNew PyType_GetFlags PyType_GetModule PyType_GetModuleByDef PyType_GetModuleState PyType_GetName PyType_GetQualName PyType_GetSlot PyType_IsSubtype PyType_Modified PyType_Ready PyType_SUPPORTS_WEAKREFS PyType_Type DATA PyUnicodeDecodeError_Create PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetStart PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetStart PyUnicodeIter_Type DATA PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetStart PyUnicode_Append PyUnicode_AppendAndDel PyUnicode_AsASCIIString PyUnicode_AsCharmapString PyUnicode_AsDecodedObject PyUnicode_AsDecodedUnicode PyUnicode_AsEncodedObject PyUnicode_AsEncodedString PyUnicode_AsEncodedUnicode PyUnicode_AsLatin1String PyUnicode_AsMBCSString PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsUCS4 PyUnicode_AsUCS4Copy PyUnicode_AsUTF16String PyUnicode_AsUTF32String PyUnicode_AsUTF8 PyUnicode_AsUTF8AndSize PyUnicode_AsUTF8String PyUnicode_AsUnicode PyUnicode_AsUnicodeAndSize PyUnicode_AsUnicodeEscapeString PyUnicode_AsWideChar PyUnicode_AsWideCharString PyUnicode_BuildEncodingMap PyUnicode_Compare PyUnicode_CompareWithASCIIString PyUnicode_Concat PyUnicode_Contains PyUnicode_CopyCharacters PyUnicode_Count PyUnicode_Decode PyUnicode_DecodeASCII PyUnicode_DecodeCharmap PyUnicode_DecodeCodePageStateful PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeLatin1 PyUnicode_DecodeLocale PyUnicode_DecodeLocaleAndSize PyUnicode_DecodeMBCS PyUnicode_DecodeMBCSStateful PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUnicodeEscape PyUnicode_EncodeCodePage PyUnicode_EncodeFSDefault PyUnicode_EncodeLocale PyUnicode_FSConverter PyUnicode_FSDecoder PyUnicode_Fill PyUnicode_Find PyUnicode_FindChar PyUnicode_Format PyUnicode_FromEncodedObject PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromKindAndData PyUnicode_FromObject PyUnicode_FromOrdinal PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_FromUnicode PyUnicode_FromWideChar PyUnicode_GetDefaultEncoding PyUnicode_GetLength PyUnicode_GetSize PyUnicode_InternFromString PyUnicode_InternImmortal PyUnicode_InternInPlace PyUnicode_IsIdentifier PyUnicode_Join PyUnicode_New PyUnicode_Partition PyUnicode_RPartition PyUnicode_RSplit PyUnicode_ReadChar PyUnicode_Replace PyUnicode_Resize PyUnicode_RichCompare PyUnicode_Split PyUnicode_Splitlines PyUnicode_Substring PyUnicode_Tailmatch PyUnicode_Translate PyUnicode_Type DATA PyUnicode_WriteChar PyVectorcall_Call PyVectorcall_Function PyWeakref_GetObject PyWeakref_NewProxy PyWeakref_NewRef PyWideStringList_Append PyWideStringList_Insert PyWrapperDescr_Type DATA PyWrapper_New PyZip_Type DATA Py_AddPendingCall Py_AtExit Py_BuildValue Py_BytesMain Py_BytesWarningFlag DATA Py_CompileString Py_CompileStringExFlags Py_CompileStringFlags Py_CompileStringObject Py_DebugFlag DATA Py_DecRef Py_DecodeLocale Py_DontWriteBytecodeFlag DATA Py_EncodeLocale Py_EndInterpreter Py_EnterRecursiveCall Py_Exit Py_ExitStatusException Py_FatalError Py_FdIsInteractive Py_FileSystemDefaultEncodeErrors DATA Py_FileSystemDefaultEncoding DATA Py_Finalize Py_FinalizeEx Py_FrozenFlag DATA Py_GETENV Py_GenericAlias Py_GenericAliasType DATA Py_GetArgcArgv Py_GetBuildInfo Py_GetCompiler Py_GetCopyright Py_GetExecPrefix Py_GetPath Py_GetPlatform Py_GetPrefix Py_GetProgramFullPath Py_GetProgramName Py_GetPythonHome Py_GetRecursionLimit Py_GetVersion Py_HasFileSystemDefaultEncoding DATA Py_HashRandomizationFlag DATA Py_IgnoreEnvironmentFlag DATA Py_IncRef Py_Initialize Py_InitializeEx Py_InitializeFromConfig Py_InspectFlag DATA Py_InteractiveFlag DATA Py_Is Py_IsFalse Py_IsInitialized Py_IsNone Py_IsTrue Py_IsolatedFlag DATA Py_LeaveRecursiveCall Py_LegacyWindowsFSEncodingFlag DATA Py_LegacyWindowsStdioFlag DATA Py_Main Py_MakePendingCalls Py_NewInterpreter Py_NewRef Py_NoSiteFlag DATA Py_NoUserSiteDirectory DATA Py_OptimizeFlag DATA Py_PreInitialize Py_PreInitializeFromArgs Py_PreInitializeFromBytesArgs Py_QuietFlag DATA Py_ReprEnter Py_ReprLeave Py_RunMain Py_SetPath Py_SetProgramName Py_SetPythonHome Py_SetRecursionLimit Py_SetStandardStreamEncoding Py_UTF8Mode DATA Py_UnbufferedStdioFlag DATA Py_UniversalNewlineFgets Py_VaBuildValue Py_VerboseFlag DATA Py_Version DATA Py_XNewRef Py_hexdigits DATA _PyAST_Compile _PyAccu_Accumulate _PyAccu_Destroy _PyAccu_Finish _PyAccu_FinishAsList _PyAccu_Init _PyArena_AddPyObject _PyArena_Free _PyArena_Malloc _PyArena_New _PyArg_BadArgument _PyArg_CheckPositional _PyArg_NoKeywords _PyArg_NoKwnames _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseStackAndKeywords_SizeT _PyArg_ParseStack_SizeT _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywordsFast_SizeT _PyArg_ParseTupleAndKeywords_SizeT _PyArg_ParseTuple_SizeT _PyArg_Parse_SizeT _PyArg_UnpackKeywords _PyArg_UnpackKeywordsWithVararg _PyArg_UnpackStack _PyArg_VaParseTupleAndKeywordsFast _PyArg_VaParseTupleAndKeywordsFast_SizeT _PyArg_VaParseTupleAndKeywords_SizeT _PyArg_VaParse_SizeT _PyArgv_AsWstrList _PyAsyncGenASend_Type DATA _PyAsyncGenAThrow_Type DATA _PyAsyncGenWrappedValue_Type DATA _PyByteArray_empty_string DATA _PyBytesIOBuffer_Type DATA _PyBytesWriter_Alloc _PyBytesWriter_Dealloc _PyBytesWriter_Finish _PyBytesWriter_Init _PyBytesWriter_Prepare _PyBytesWriter_Resize _PyBytesWriter_WriteBytes _PyBytes_DecodeEscape _PyBytes_Find _PyBytes_FormatEx _PyBytes_FromHex _PyBytes_Join _PyBytes_Repeat _PyBytes_Resize _PyBytes_ReverseFind _PyCode_CheckLineNumber _PyCode_ConstantKey _PyCode_GetExtra _PyCode_New _PyCode_SetExtra _PyCode_Validate _PyCodecInfo_GetIncrementalDecoder _PyCodecInfo_GetIncrementalEncoder _PyCodec_DecodeText _PyCodec_EncodeText _PyCodec_Lookup _PyCodec_LookupTextEncoding _PyConfig_AsDict _PyConfig_FromDict _PyConfig_InitCompatConfig _PyContext_NewHamtForTests _PyCoroWrapper_Type DATA _PyCrossInterpreterData_Lookup _PyCrossInterpreterData_NewObject _PyCrossInterpreterData_RegisterClass _PyCrossInterpreterData_Release _PyDeadline_Get _PyDeadline_Init _PyDebugAllocatorStats _PyDictView_Intersect _PyDictView_New _PyDict_CheckConsistency _PyDict_ContainsId _PyDict_Contains_KnownHash _PyDict_DebugMallocStats _PyDict_DelItemId _PyDict_DelItemIf _PyDict_DelItem_KnownHash _PyDict_GetItemIdWithError _PyDict_GetItemStringWithError _PyDict_GetItemWithError _PyDict_GetItem_KnownHash _PyDict_HasOnlyStringKeys _PyDict_MaybeUntrack _PyDict_MergeEx _PyDict_NewPresized _PyDict_Next _PyDict_Pop _PyDict_SetItemId _PyDict_SetItem_KnownHash _PyDict_SizeOf _PyErr_BadInternalCall _PyErr_ChainExceptions _PyErr_ChainStackItem _PyErr_CheckSignals _PyErr_CheckSignalsTstate _PyErr_Clear _PyErr_Display _PyErr_ExceptionMatches _PyErr_Fetch _PyErr_Format _PyErr_FormatFromCause _PyErr_FormatFromCauseTstate _PyErr_GetExcInfo _PyErr_GetHandledException _PyErr_GetTopmostException _PyErr_NoMemory _PyErr_NormalizeException _PyErr_Print _PyErr_ProgramDecodedTextObject _PyErr_Restore _PyErr_SetHandledException _PyErr_SetKeyError _PyErr_SetNone _PyErr_SetObject _PyErr_SetString _PyErr_StackItemToExcInfoTuple _PyErr_TrySetFromCause _PyErr_WriteUnraisableMsg _PyEval_AddPendingCall _PyEval_EvalFrameDefault _PyEval_GetBuiltin _PyEval_GetBuiltinId _PyEval_GetSwitchInterval _PyEval_RequestCodeExtraIndex _PyEval_SetProfile _PyEval_SetSwitchInterval _PyEval_SetTrace _PyEval_SignalAsyncExc _PyEval_SignalReceived _PyEval_SliceIndex _PyEval_SliceIndexNotNone _PyFloat_DebugMallocStats _PyFloat_FormatAdvancedWriter _PyFrame_IsEntryFrame _PyFunction_Vectorcall _PyGILState_GetInterpreterStateUnsafe _PyGen_FetchStopIterationValue _PyGen_Finalize _PyGen_SetStopIterationValue _PyImport_AcquireLock _PyImport_FixupBuiltin _PyImport_FixupExtensionObject _PyImport_FrozenBootstrap DATA _PyImport_FrozenStdlib DATA _PyImport_FrozenTest DATA _PyImport_GetModuleAttr _PyImport_GetModuleAttrString _PyImport_GetModuleId _PyImport_IsInitialized _PyImport_ReleaseLock _PyImport_SetModule _PyImport_SetModuleString _PyInterpreterID_LookUp _PyInterpreterID_New _PyInterpreterID_Type DATA _PyInterpreterState_Enable _PyInterpreterState_GetConfig _PyInterpreterState_GetConfigCopy _PyInterpreterState_GetEvalFrameFunc _PyInterpreterState_GetIDObject _PyInterpreterState_GetMainModule _PyInterpreterState_IDDecref _PyInterpreterState_IDIncref _PyInterpreterState_IDInitref _PyInterpreterState_LookUpID _PyInterpreterState_RequireIDRef _PyInterpreterState_RequiresIDRef _PyInterpreterState_SetConfig _PyInterpreterState_SetEvalFrameFunc _PyList_DebugMallocStats _PyList_Extend _PyLong_AsByteArray _PyLong_AsInt _PyLong_AsTime_t _PyLong_Copy _PyLong_DigitValue DATA _PyLong_DivmodNear _PyLong_FileDescriptor_Converter _PyLong_Format _PyLong_FormatAdvancedWriter _PyLong_FormatBytesWriter _PyLong_FormatWriter _PyLong_Frexp _PyLong_FromByteArray _PyLong_FromBytes _PyLong_FromTime_t _PyLong_GCD _PyLong_Lshift _PyLong_New _PyLong_NumBits _PyLong_Rshift _PyLong_Sign _PyLong_Size_t_Converter _PyLong_UnsignedInt_Converter _PyLong_UnsignedLongLong_Converter _PyLong_UnsignedLong_Converter _PyLong_UnsignedShort_Converter _PyManagedBuffer_Type DATA _PyMem_GetAllocatorName _PyMem_GetCurrentAllocatorName _PyMem_RawStrdup _PyMem_RawWcsdup _PyMem_SetDefaultAllocator _PyMem_SetupAllocators _PyMem_Strdup _PyMethodWrapper_Type DATA _PyModuleSpec_IsInitializing _PyModule_Add _PyModule_Clear _PyModule_ClearDict _PyModule_CreateInitialized _PyNamespace_New _PyNamespace_Type DATA _PyNone_Type DATA _PyNotImplemented_Type DATA _PyNumber_Index _PyOS_InterruptOccurred _PyOS_IsMainThread _PyOS_ReadlineTState DATA _PyOS_SigintEvent _PyOS_URandom _PyOS_URandomNonblock _PyObject_AssertFailed _PyObject_Call _PyObject_CallFunction_SizeT _PyObject_CallMethod _PyObject_CallMethodId _PyObject_CallMethodIdObjArgs _PyObject_CallMethodId_SizeT _PyObject_CallMethod_SizeT _PyObject_Call_Prepend _PyObject_CheckConsistency _PyObject_CheckCrossInterpreterData _PyObject_DebugMallocStats _PyObject_DebugTypeStats _PyObject_Dump _PyObject_FastCall _PyObject_FastCallDictTstate _PyObject_FunctionStr _PyObject_GC_New _PyObject_GC_NewVar _PyObject_GC_Resize _PyObject_GenericGetAttrWithDict _PyObject_GenericSetAttrWithDict _PyObject_GetAttrId _PyObject_GetCrossInterpreterData _PyObject_GetDictPtr _PyObject_GetMethod _PyObject_GetState _PyObject_HasLen _PyObject_IsAbstract _PyObject_IsFreed _PyObject_LookupAttr _PyObject_LookupAttrId _PyObject_LookupSpecial _PyObject_LookupSpecialId _PyObject_MakeTpCall _PyObject_New _PyObject_NewVar _PyObject_NextNotImplemented _PyObject_RealIsInstance _PyObject_RealIsSubclass _PyObject_SetAttrId _PyParser_TokenNames DATA _PyPathConfig_ClearGlobal _PyPreConfig_InitCompatConfig _PyRun_AnyFileObject _PyRun_InteractiveLoopObject _PyRun_SimpleFileObject _PyRuntime DATA _PyRuntimeState_Fini _PyRuntimeState_Init _PyRuntime_Finalize _PyRuntime_Initialize _PySequence_BytesToCharpArray _PySequence_IterSearch _PySet_Dummy DATA _PySet_NextEntry _PySet_Update _PySlice_FromIndices _PySlice_GetLongIndices _PyStack_AsDict _PyState_AddModule _PyStructSequence_InitType _PyStructSequence_NewType _PySys_GetAttr _PySys_GetSizeOf _PyThreadState_DeleteCurrent _PyThreadState_DeleteExcept _PyThreadState_GetDict _PyThreadState_Init _PyThreadState_Prealloc _PyThreadState_SetCurrent _PyThreadState_Swap _PyThreadState_UncheckedGet _PyThread_CurrentExceptions _PyThread_CurrentFrames _PyTime_Add _PyTime_As100Nanoseconds _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanoseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_clamp _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetPerfCounter _PyTime_GetPerfCounterWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_MulDiv _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _PyTraceBack_FromFrame _PyTraceBack_Print_Indented _PyTraceMalloc_GetTraceback _PyTraceback_Add _PyTrash_begin _PyTrash_cond _PyTrash_end _PyTuple_DebugMallocStats _PyTuple_MaybeUntrack _PyTuple_Resize _PyType_CalculateMetaclass _PyType_CheckConsistency _PyType_GetDocFromInternalDoc _PyType_GetTextSignatureFromInternalDoc _PyType_Lookup _PyType_LookupId _PyType_Name _PyUnicodeTranslateError_Create _PyUnicodeWriter_Dealloc _PyUnicodeWriter_Finish _PyUnicodeWriter_Init _PyUnicodeWriter_PrepareInternal _PyUnicodeWriter_PrepareKindInternal _PyUnicodeWriter_WriteASCIIString _PyUnicodeWriter_WriteChar _PyUnicodeWriter_WriteLatin1String _PyUnicodeWriter_WriteStr _PyUnicodeWriter_WriteSubstring _PyUnicode_AsASCIIString _PyUnicode_AsLatin1String _PyUnicode_AsUTF8String _PyUnicode_AsUnicode _PyUnicode_CheckConsistency _PyUnicode_Copy _PyUnicode_DecodeRawUnicodeEscapeStateful _PyUnicode_DecodeUnicodeEscapeInternal _PyUnicode_DecodeUnicodeEscapeStateful _PyUnicode_EQ _PyUnicode_EncodeCharmap _PyUnicode_EncodeUTF16 _PyUnicode_EncodeUTF32 _PyUnicode_EncodeUTF7 _PyUnicode_Equal _PyUnicode_EqualToASCIIId _PyUnicode_EqualToASCIIString _PyUnicode_FastCopyCharacters _PyUnicode_FastFill _PyUnicode_FindMaxChar _PyUnicode_FormatAdvancedWriter _PyUnicode_FormatLong _PyUnicode_FromASCII _PyUnicode_FromId _PyUnicode_InsertThousandsGrouping _PyUnicode_IsAlpha _PyUnicode_IsCaseIgnorable _PyUnicode_IsCased _PyUnicode_IsDecimalDigit _PyUnicode_IsDigit _PyUnicode_IsLinebreak _PyUnicode_IsLowercase _PyUnicode_IsNumeric _PyUnicode_IsPrintable _PyUnicode_IsTitlecase _PyUnicode_IsUppercase _PyUnicode_IsWhitespace _PyUnicode_IsXidContinue _PyUnicode_IsXidStart _PyUnicode_JoinArray _PyUnicode_Ready _PyUnicode_ScanIdentifier _PyUnicode_ToDecimalDigit _PyUnicode_ToDigit _PyUnicode_ToFoldedFull _PyUnicode_ToLowerFull _PyUnicode_ToLowercase _PyUnicode_ToNumeric _PyUnicode_ToTitleFull _PyUnicode_ToTitlecase _PyUnicode_ToUpperFull _PyUnicode_ToUppercase _PyUnicode_TransformDecimalAndSpaceToASCII _PyUnicode_WideCharString_Converter _PyUnicode_WideCharString_Opt_Converter _PyUnicode_XStrip _PyWarnings_Init _PyWeakref_CallableProxyType DATA _PyWeakref_ClearRef _PyWeakref_GetWeakrefCount _PyWeakref_ProxyType DATA _PyWeakref_RefType DATA _PyWideStringList_AsList _PyWideStringList_Clear _PyWideStringList_Copy _PyWideStringList_Extend _PyWindowsConsoleIO_Type DATA _Py_BreakPoint _Py_BuildValue_SizeT _Py_CheckFunctionResult _Py_CheckRecursiveCall _Py_ClearArgcArgv _Py_ClearStandardStreamEncoding _Py_CoerceLegacyLocale _Py_Dealloc _Py_DecRef _Py_DecodeLocaleEx _Py_DecodeUTF8Ex _Py_DecodeUTF8_surrogateescape _Py_DisplaySourceLine _Py_DumpASCII _Py_DumpDecimal _Py_DumpExtensionModules _Py_DumpHexadecimal _Py_DumpTraceback _Py_DumpTracebackThreads _Py_EllipsisObject DATA _Py_EncodeLocaleEx _Py_EncodeLocaleRaw _Py_EncodeUTF8Ex _Py_FalseStruct DATA _Py_FatalErrorFormat _Py_FatalErrorFunc _Py_FatalError_TstateNULL _Py_FatalRefcountErrorFunc _Py_FdIsInteractive _Py_FreeCharPArray _Py_GetAllocatedBlocks _Py_GetConfig _Py_GetConfigsAsDict _Py_GetEnv _Py_GetErrorHandler _Py_GetForceASCII _Py_GetLocaleEncoding _Py_GetLocaleEncodingObject _Py_GetLocaleconvNumeric _Py_Get_Getpath_CodeObject _Py_HandleSystemExit _Py_HasFileSystemDefaultEncodeErrors DATA _Py_HashBytes _Py_HashDouble _Py_HashPointer _Py_HashPointerRaw _Py_HashSecret DATA _Py_IncRef _Py_InitializeMain _Py_IsCoreInitialized _Py_IsFinalizing _Py_IsLocaleCoercionTarget _Py_LegacyLocaleDetected _Py_NewInterpreter _Py_NewReference _Py_NoneStruct DATA _Py_NotImplementedStruct DATA _Py_PackageContext DATA _Py_PreInitializeFromConfig _Py_PreInitializeFromPyArgv _Py_ResetForceASCII _Py_RestoreSignals _Py_SetLocaleFromEnv _Py_SetProgramFullPath _Py_SourceAsString _Py_SwappedOp DATA _Py_TrueStruct DATA _Py_UTF8_Edit_Cost _Py_UnhandledKeyboardInterrupt DATA _Py_UniversalNewlineFgetsWithSize _Py_VaBuildStack _Py_VaBuildStack_SizeT _Py_VaBuildValue_SizeT _Py_WriteIndent _Py_WriteIndentedMargin _Py_add_one_to_index_C _Py_add_one_to_index_F _Py_ascii_whitespace DATA _Py_c_abs _Py_c_diff _Py_c_neg _Py_c_pow _Py_c_prod _Py_c_quot _Py_c_sum _Py_closerange _Py_convert_optional_to_ssize_t _Py_ctype_table DATA _Py_ctype_tolower DATA _Py_ctype_toupper DATA _Py_device_encoding _Py_dg_dtoa _Py_dg_freedtoa _Py_dg_infinity _Py_dg_stdnan _Py_dg_strtod _Py_dup _Py_fopen_obj _Py_fstat _Py_fstat_noraise _Py_get_env_flag _Py_get_inheritable _Py_get_osfhandle _Py_get_osfhandle_noraise _Py_get_xoption _Py_gitidentifier _Py_gitversion _Py_hashtable_clear _Py_hashtable_compare_direct _Py_hashtable_destroy _Py_hashtable_foreach _Py_hashtable_get _Py_hashtable_hash_ptr _Py_hashtable_new _Py_hashtable_new_full _Py_hashtable_set _Py_hashtable_size _Py_hashtable_steal _Py_normpath _Py_open _Py_open_noraise _Py_open_osfhandle _Py_open_osfhandle_noraise _Py_parse_inf_or_nan _Py_read _Py_set_inheritable _Py_set_inheritable_async_safe _Py_stat _Py_str_to_int _Py_strhex _Py_strhex_bytes _Py_strhex_bytes_with_sep _Py_strhex_with_sep _Py_string_to_number_with_underscores _Py_tracemalloc_config DATA _Py_wfopen _Py_wgetcwd _Py_write _Py_write_noraise python3-dll-a-0.2.10/src/python312.def000064400000000000000000001076201046102023000153230ustar 00000000000000; ; Definition file of python312.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "python312.dll" EXPORTS PyAIter_Check PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyArg_UnpackTuple PyArg_VaParse PyArg_VaParseTupleAndKeywords PyArg_ValidateKeywordArguments PyAsyncGen_New PyAsyncGen_Type DATA PyBaseObject_Type DATA PyBool_FromLong PyBool_Type DATA PyBuffer_FillContiguousStrides PyBuffer_FillInfo PyBuffer_FromContiguous PyBuffer_GetPointer PyBuffer_IsContiguous PyBuffer_Release PyBuffer_SizeFromFormat PyBuffer_ToContiguous PyByteArrayIter_Type DATA PyByteArray_AsString PyByteArray_Concat PyByteArray_FromObject PyByteArray_FromStringAndSize PyByteArray_Resize PyByteArray_Size PyByteArray_Type DATA PyBytesIter_Type DATA PyBytes_AsString PyBytes_AsStringAndSize PyBytes_Concat PyBytes_ConcatAndDel PyBytes_DecodeEscape PyBytes_FromFormat PyBytes_FromFormatV PyBytes_FromObject PyBytes_FromString PyBytes_FromStringAndSize PyBytes_Repr PyBytes_Size PyBytes_Type DATA PyCFunction_Call PyCFunction_GetFlags PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_New PyCFunction_NewEx PyCFunction_Type DATA PyCMethod_New PyCMethod_Type DATA PyCallIter_New PyCallIter_Type DATA PyCallable_Check PyCapsule_GetContext PyCapsule_GetDestructor PyCapsule_GetName PyCapsule_GetPointer PyCapsule_Import PyCapsule_IsValid PyCapsule_New PyCapsule_SetContext PyCapsule_SetDestructor PyCapsule_SetName PyCapsule_SetPointer PyCapsule_Type DATA PyCell_Get PyCell_New PyCell_Set PyCell_Type DATA PyClassMethodDescr_Type DATA PyClassMethod_New PyClassMethod_Type DATA PyCode_AddWatcher PyCode_Addr2Line PyCode_Addr2Location PyCode_ClearWatcher PyCode_GetCellvars PyCode_GetCode PyCode_GetFreevars PyCode_GetVarnames PyCode_NewEmpty PyCode_Optimize PyCode_Type DATA PyCodec_BackslashReplaceErrors PyCodec_Decode PyCodec_Decoder PyCodec_Encode PyCodec_Encoder PyCodec_IgnoreErrors PyCodec_IncrementalDecoder PyCodec_IncrementalEncoder PyCodec_KnownEncoding PyCodec_LookupError PyCodec_NameReplaceErrors PyCodec_Register PyCodec_RegisterError PyCodec_ReplaceErrors PyCodec_StreamReader PyCodec_StreamWriter PyCodec_StrictErrors PyCodec_Unregister PyCodec_XMLCharRefReplaceErrors PyCompile_OpcodeStackEffect PyCompile_OpcodeStackEffectWithJump PyComplex_AsCComplex PyComplex_FromCComplex PyComplex_FromDoubles PyComplex_ImagAsDouble PyComplex_RealAsDouble PyComplex_Type DATA PyConfig_Clear PyConfig_InitIsolatedConfig PyConfig_InitPythonConfig PyConfig_Read PyConfig_SetArgv PyConfig_SetBytesArgv PyConfig_SetBytesString PyConfig_SetString PyConfig_SetWideStringList PyContextToken_Type DATA PyContextVar_Get PyContextVar_New PyContextVar_Reset PyContextVar_Set PyContextVar_Type DATA PyContext_Copy PyContext_CopyCurrent PyContext_Enter PyContext_Exit PyContext_New PyContext_Type DATA PyCoro_New PyCoro_Type DATA PyDescr_IsData PyDescr_NewClassMethod PyDescr_NewGetSet PyDescr_NewMember PyDescr_NewMethod PyDescr_NewWrapper PyDictItems_Type DATA PyDictIterItem_Type DATA PyDictIterKey_Type DATA PyDictIterValue_Type DATA PyDictKeys_Type DATA PyDictProxy_New PyDictProxy_Type DATA PyDictRevIterItem_Type DATA PyDictRevIterKey_Type DATA PyDictRevIterValue_Type DATA PyDictValues_Type DATA PyDict_AddWatcher PyDict_Clear PyDict_ClearWatcher PyDict_Contains PyDict_Copy PyDict_DelItem PyDict_DelItemString PyDict_GetItem PyDict_GetItemString PyDict_GetItemWithError PyDict_Items PyDict_Keys PyDict_Merge PyDict_MergeFromSeq2 PyDict_New PyDict_Next PyDict_SetDefault PyDict_SetItem PyDict_SetItemString PyDict_Size PyDict_Type DATA PyDict_Unwatch PyDict_Update PyDict_Values PyDict_Watch PyEllipsis_Type DATA PyEnum_Type DATA PyErr_BadArgument PyErr_BadInternalCall PyErr_CheckSignals PyErr_Clear PyErr_Display PyErr_DisplayException PyErr_ExceptionMatches PyErr_Fetch PyErr_Format PyErr_FormatV PyErr_GetExcInfo PyErr_GetHandledException PyErr_GetRaisedException PyErr_GivenExceptionMatches PyErr_NewException PyErr_NewExceptionWithDoc PyErr_NoMemory PyErr_NormalizeException PyErr_Occurred PyErr_Print PyErr_PrintEx PyErr_ProgramText PyErr_ProgramTextObject PyErr_RangedSyntaxLocationObject PyErr_ResourceWarning PyErr_Restore PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetExcInfo PyErr_SetFromErrno PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilenameObject PyErr_SetFromErrnoWithFilenameObjects PyErr_SetFromWindowsErr PyErr_SetFromWindowsErrWithFilename PyErr_SetHandledException PyErr_SetImportError PyErr_SetImportErrorSubclass PyErr_SetInterrupt PyErr_SetInterruptEx PyErr_SetNone PyErr_SetObject PyErr_SetRaisedException PyErr_SetString PyErr_SyntaxLocation PyErr_SyntaxLocationEx PyErr_SyntaxLocationObject PyErr_WarnEx PyErr_WarnExplicit PyErr_WarnExplicitFormat PyErr_WarnExplicitObject PyErr_WarnFormat PyErr_WriteUnraisable PyEval_AcquireLock PyEval_AcquireThread PyEval_CallFunction PyEval_CallMethod PyEval_CallObjectWithKeywords PyEval_EvalCode PyEval_EvalCodeEx PyEval_EvalFrame PyEval_EvalFrameEx PyEval_GetBuiltins PyEval_GetFrame PyEval_GetFuncDesc PyEval_GetFuncName PyEval_GetGlobals PyEval_GetLocals PyEval_InitThreads PyEval_MergeCompilerFlags PyEval_ReleaseLock PyEval_ReleaseThread PyEval_RestoreThread PyEval_SaveThread PyEval_SetProfile PyEval_SetProfileAllThreads PyEval_SetTrace PyEval_SetTraceAllThreads PyEval_ThreadsInitialized PyExc_ArithmeticError DATA PyExc_AssertionError DATA PyExc_AttributeError DATA PyExc_BaseException DATA PyExc_BaseExceptionGroup DATA PyExc_BlockingIOError DATA PyExc_BrokenPipeError DATA PyExc_BufferError DATA PyExc_BytesWarning DATA PyExc_ChildProcessError DATA PyExc_ConnectionAbortedError DATA PyExc_ConnectionError DATA PyExc_ConnectionRefusedError DATA PyExc_ConnectionResetError DATA PyExc_DeprecationWarning DATA PyExc_EOFError DATA PyExc_EncodingWarning DATA PyExc_EnvironmentError DATA PyExc_Exception DATA PyExc_FileExistsError DATA PyExc_FileNotFoundError DATA PyExc_FloatingPointError DATA PyExc_FutureWarning DATA PyExc_GeneratorExit DATA PyExc_IOError DATA PyExc_ImportError DATA PyExc_ImportWarning DATA PyExc_IndentationError DATA PyExc_IndexError DATA PyExc_InterruptedError DATA PyExc_IsADirectoryError DATA PyExc_KeyError DATA PyExc_KeyboardInterrupt DATA PyExc_LookupError DATA PyExc_MemoryError DATA PyExc_ModuleNotFoundError DATA PyExc_NameError DATA PyExc_NotADirectoryError DATA PyExc_NotImplementedError DATA PyExc_OSError DATA PyExc_OverflowError DATA PyExc_PendingDeprecationWarning DATA PyExc_PermissionError DATA PyExc_ProcessLookupError DATA PyExc_RecursionError DATA PyExc_ReferenceError DATA PyExc_ResourceWarning DATA PyExc_RuntimeError DATA PyExc_RuntimeWarning DATA PyExc_StopAsyncIteration DATA PyExc_StopIteration DATA PyExc_SyntaxError DATA PyExc_SyntaxWarning DATA PyExc_SystemError DATA PyExc_SystemExit DATA PyExc_TabError DATA PyExc_TimeoutError DATA PyExc_TypeError DATA PyExc_UnboundLocalError DATA PyExc_UnicodeDecodeError DATA PyExc_UnicodeEncodeError DATA PyExc_UnicodeError DATA PyExc_UnicodeTranslateError DATA PyExc_UnicodeWarning DATA PyExc_UserWarning DATA PyExc_ValueError DATA PyExc_Warning DATA PyExc_WindowsError DATA PyExc_ZeroDivisionError DATA PyExceptionClass_Name PyException_GetArgs PyException_GetCause PyException_GetContext PyException_GetTraceback PyException_SetArgs PyException_SetCause PyException_SetContext PyException_SetTraceback PyFile_FromFd PyFile_GetLine PyFile_NewStdPrinter PyFile_OpenCode PyFile_OpenCodeObject PyFile_SetOpenCodeHook PyFile_WriteObject PyFile_WriteString PyFilter_Type DATA PyFloat_AsDouble PyFloat_FromDouble PyFloat_FromString PyFloat_GetInfo PyFloat_GetMax PyFloat_GetMin PyFloat_Pack2 PyFloat_Pack4 PyFloat_Pack8 PyFloat_Type DATA PyFloat_Unpack2 PyFloat_Unpack4 PyFloat_Unpack8 PyFrame_FastToLocals PyFrame_FastToLocalsWithError PyFrame_GetBack PyFrame_GetBuiltins PyFrame_GetCode PyFrame_GetGenerator PyFrame_GetGlobals PyFrame_GetLasti PyFrame_GetLineNumber PyFrame_GetLocals PyFrame_GetVar PyFrame_GetVarString PyFrame_LocalsToFast PyFrame_New PyFrame_Type DATA PyFrozenSet_New PyFrozenSet_Type DATA PyFunction_AddWatcher PyFunction_ClearWatcher PyFunction_GetAnnotations PyFunction_GetClosure PyFunction_GetCode PyFunction_GetDefaults PyFunction_GetGlobals PyFunction_GetKwDefaults PyFunction_GetModule PyFunction_New PyFunction_NewWithQualName PyFunction_SetAnnotations PyFunction_SetClosure PyFunction_SetDefaults PyFunction_SetKwDefaults PyFunction_SetVectorcall PyFunction_Type DATA PyGC_Collect PyGC_Disable PyGC_Enable PyGC_IsEnabled PyGILState_Check PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release PyGen_GetCode PyGen_New PyGen_NewWithQualName PyGen_Type DATA PyGetSetDescr_Type DATA PyHash_GetFuncDef PyImport_AddModule PyImport_AddModuleObject PyImport_AppendInittab PyImport_ExecCodeModule PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleObject PyImport_ExecCodeModuleWithPathnames PyImport_ExtendInittab PyImport_FrozenModules DATA PyImport_GetImporter PyImport_GetMagicNumber PyImport_GetMagicTag PyImport_GetModule PyImport_GetModuleDict PyImport_Import PyImport_ImportFrozenModule PyImport_ImportFrozenModuleObject PyImport_ImportModule PyImport_ImportModuleLevel PyImport_ImportModuleLevelObject PyImport_ImportModuleNoBlock PyImport_Inittab DATA PyImport_ReloadModule PyIndex_Check PyInstanceMethod_Function PyInstanceMethod_New PyInstanceMethod_Type DATA PyInterpreterState_Clear PyInterpreterState_Delete PyInterpreterState_Get PyInterpreterState_GetDict PyInterpreterState_GetID PyInterpreterState_Head PyInterpreterState_Main PyInterpreterState_New PyInterpreterState_Next PyInterpreterState_ThreadHead PyIter_Check PyIter_Next PyIter_Send PyListIter_Type DATA PyListRevIter_Type DATA PyList_Append PyList_AsTuple PyList_GetItem PyList_GetSlice PyList_Insert PyList_New PyList_Reverse PyList_SetItem PyList_SetSlice PyList_Size PyList_Sort PyList_Type DATA PyLongRangeIter_Type DATA PyLong_AsDouble PyLong_AsLong PyLong_AsLongAndOverflow PyLong_AsLongLong PyLong_AsLongLongAndOverflow PyLong_AsSize_t PyLong_AsSsize_t PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongMask PyLong_AsVoidPtr PyLong_FromDouble PyLong_FromLong PyLong_FromLongLong PyLong_FromSize_t PyLong_FromSsize_t PyLong_FromString PyLong_FromUnicodeObject PyLong_FromUnsignedLong PyLong_FromUnsignedLongLong PyLong_FromVoidPtr PyLong_GetInfo PyLong_Type DATA PyMap_Type DATA PyMapping_Check PyMapping_GetItemString PyMapping_HasKey PyMapping_HasKeyString PyMapping_Items PyMapping_Keys PyMapping_Length PyMapping_SetItemString PyMapping_Size PyMapping_Values PyMarshal_ReadLastObjectFromFile PyMarshal_ReadLongFromFile PyMarshal_ReadObjectFromFile PyMarshal_ReadObjectFromString PyMarshal_ReadShortFromFile PyMarshal_WriteLongToFile PyMarshal_WriteObjectToFile PyMarshal_WriteObjectToString PyMem_Calloc PyMem_Free PyMem_GetAllocator PyMem_Malloc PyMem_RawCalloc PyMem_RawFree PyMem_RawMalloc PyMem_RawRealloc PyMem_Realloc PyMem_SetAllocator PyMem_SetupDebugHooks PyMemberDescr_Type DATA PyMember_GetOne PyMember_SetOne PyMemoryView_FromBuffer PyMemoryView_FromMemory PyMemoryView_FromObject PyMemoryView_GetContiguous PyMemoryView_Type DATA PyMethodDescr_Type DATA PyMethod_Function PyMethod_New PyMethod_Self PyMethod_Type DATA PyModuleDef_Init PyModuleDef_Type DATA PyModule_AddFunctions PyModule_AddIntConstant PyModule_AddObject PyModule_AddObjectRef PyModule_AddStringConstant PyModule_AddType PyModule_Create2 PyModule_ExecDef PyModule_FromDefAndSpec2 PyModule_GetDef PyModule_GetDict PyModule_GetFilename PyModule_GetFilenameObject PyModule_GetName PyModule_GetNameObject PyModule_GetState PyModule_New PyModule_NewObject PyModule_SetDocString PyModule_Type DATA PyNumber_Absolute PyNumber_Add PyNumber_And PyNumber_AsSsize_t PyNumber_Check PyNumber_Divmod PyNumber_Float PyNumber_FloorDivide PyNumber_InPlaceAdd PyNumber_InPlaceAnd PyNumber_InPlaceFloorDivide PyNumber_InPlaceLshift PyNumber_InPlaceMatrixMultiply PyNumber_InPlaceMultiply PyNumber_InPlaceOr PyNumber_InPlacePower PyNumber_InPlaceRemainder PyNumber_InPlaceRshift PyNumber_InPlaceSubtract PyNumber_InPlaceTrueDivide PyNumber_InPlaceXor PyNumber_Index PyNumber_Invert PyNumber_Long PyNumber_Lshift PyNumber_MatrixMultiply PyNumber_Multiply PyNumber_Negative PyNumber_Or PyNumber_Positive PyNumber_Power PyNumber_Remainder PyNumber_Rshift PyNumber_Subtract PyNumber_ToBase PyNumber_TrueDivide PyNumber_Xor PyODictItems_Type DATA PyODictIter_Type DATA PyODictKeys_Type DATA PyODictValues_Type DATA PyODict_DelItem PyODict_New PyODict_SetItem PyODict_Type DATA PyOS_AfterFork PyOS_FSPath PyOS_InputHook DATA PyOS_InterruptOccurred PyOS_Readline PyOS_ReadlineFunctionPointer DATA PyOS_double_to_string PyOS_getsig PyOS_mystricmp PyOS_mystrnicmp PyOS_setsig PyOS_snprintf PyOS_string_to_double PyOS_strtol PyOS_strtoul PyOS_vsnprintf PyObject_ASCII PyObject_AsCharBuffer PyObject_AsFileDescriptor PyObject_AsReadBuffer PyObject_AsWriteBuffer PyObject_Bytes PyObject_Call PyObject_CallFinalizer PyObject_CallFinalizerFromDealloc PyObject_CallFunction PyObject_CallFunctionObjArgs PyObject_CallMethod PyObject_CallMethodObjArgs PyObject_CallNoArgs PyObject_CallObject PyObject_CallOneArg PyObject_Calloc PyObject_CheckBuffer PyObject_CheckReadBuffer PyObject_ClearWeakRefs PyObject_CopyData PyObject_DelItem PyObject_DelItemString PyObject_Dir PyObject_Format PyObject_Free PyObject_GC_Del PyObject_GC_IsFinalized PyObject_GC_IsTracked PyObject_GC_Track PyObject_GC_UnTrack PyObject_GET_WEAKREFS_LISTPTR PyObject_GenericGetAttr PyObject_GenericGetDict PyObject_GenericSetAttr PyObject_GenericSetDict PyObject_GetAIter PyObject_GetArenaAllocator PyObject_GetAttr PyObject_GetAttrString PyObject_GetBuffer PyObject_GetItem PyObject_GetItemData PyObject_GetIter PyObject_GetTypeData PyObject_HasAttr PyObject_HasAttrString PyObject_Hash PyObject_HashNotImplemented PyObject_IS_GC PyObject_Init PyObject_InitVar PyObject_IsInstance PyObject_IsSubclass PyObject_IsTrue PyObject_Length PyObject_LengthHint PyObject_Malloc PyObject_Not PyObject_Print PyObject_Realloc PyObject_Repr PyObject_RichCompare PyObject_RichCompareBool PyObject_SelfIter PyObject_SetArenaAllocator PyObject_SetAttr PyObject_SetAttrString PyObject_SetItem PyObject_Size PyObject_Str PyObject_Type PyObject_Vectorcall PyObject_VectorcallDict PyObject_VectorcallMethod PyPickleBuffer_FromObject PyPickleBuffer_GetBuffer PyPickleBuffer_Release PyPickleBuffer_Type DATA PyPreConfig_InitIsolatedConfig PyPreConfig_InitPythonConfig PyProperty_Type DATA PyRangeIter_Type DATA PyRange_Type DATA PyReversed_Type DATA PyRun_AnyFile PyRun_AnyFileEx PyRun_AnyFileExFlags PyRun_AnyFileFlags PyRun_File PyRun_FileEx PyRun_FileExFlags PyRun_FileFlags PyRun_InteractiveLoop PyRun_InteractiveLoopFlags PyRun_InteractiveOne PyRun_InteractiveOneFlags PyRun_InteractiveOneObject PyRun_SimpleFile PyRun_SimpleFileEx PyRun_SimpleFileExFlags PyRun_SimpleString PyRun_SimpleStringFlags PyRun_String PyRun_StringFlags PySeqIter_New PySeqIter_Type DATA PySequence_Check PySequence_Concat PySequence_Contains PySequence_Count PySequence_DelItem PySequence_DelSlice PySequence_Fast PySequence_GetItem PySequence_GetSlice PySequence_In PySequence_InPlaceConcat PySequence_InPlaceRepeat PySequence_Index PySequence_Length PySequence_List PySequence_Repeat PySequence_SetItem PySequence_SetSlice PySequence_Size PySequence_Tuple PySetIter_Type DATA PySet_Add PySet_Clear PySet_Contains PySet_Discard PySet_New PySet_Pop PySet_Size PySet_Type DATA PySlice_AdjustIndices PySlice_GetIndices PySlice_GetIndicesEx PySlice_New PySlice_Type DATA PySlice_Unpack PyState_AddModule PyState_FindModule PyState_RemoveModule PyStaticMethod_New PyStaticMethod_Type DATA PyStatus_Error PyStatus_Exception PyStatus_Exit PyStatus_IsError PyStatus_IsExit PyStatus_NoMemory PyStatus_Ok PyStdPrinter_Type DATA PyStructSequence_GetItem PyStructSequence_InitType PyStructSequence_InitType2 PyStructSequence_New PyStructSequence_NewType PyStructSequence_SetItem PyStructSequence_UnnamedField DATA PySuper_Type DATA PySymtable_Lookup PySys_AddAuditHook PySys_AddWarnOption PySys_AddWarnOptionUnicode PySys_AddXOption PySys_Audit PySys_FormatStderr PySys_FormatStdout PySys_GetObject PySys_GetXOptions PySys_HasWarnOptions PySys_ResetWarnOptions PySys_SetArgv PySys_SetArgvEx PySys_SetObject PySys_SetPath PySys_WriteStderr PySys_WriteStdout PyThreadState_Clear PyThreadState_Delete PyThreadState_DeleteCurrent PyThreadState_EnterTracing PyThreadState_Get PyThreadState_GetDict PyThreadState_GetFrame PyThreadState_GetID PyThreadState_GetInterpreter PyThreadState_LeaveTracing PyThreadState_New PyThreadState_Next PyThreadState_SetAsyncExc PyThreadState_Swap PyThread_GetInfo PyThread_ReInitTLS PyThread_acquire_lock PyThread_acquire_lock_timed PyThread_allocate_lock PyThread_create_key PyThread_delete_key PyThread_delete_key_value PyThread_exit_thread PyThread_free_lock PyThread_get_key_value PyThread_get_stacksize PyThread_get_thread_ident PyThread_get_thread_native_id PyThread_init_thread PyThread_release_lock PyThread_set_key_value PyThread_set_stacksize PyThread_start_new_thread PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyTraceBack_Here PyTraceBack_Print PyTraceBack_Type DATA PyTraceMalloc_Track PyTraceMalloc_Untrack PyTupleIter_Type DATA PyTuple_GetItem PyTuple_GetSlice PyTuple_New PyTuple_Pack PyTuple_SetItem PyTuple_Size PyTuple_Type DATA PyType_AddWatcher PyType_ClearCache PyType_ClearWatcher PyType_FromMetaclass PyType_FromModuleAndSpec PyType_FromSpec PyType_FromSpecWithBases PyType_GenericAlloc PyType_GenericNew PyType_GetDict PyType_GetFlags PyType_GetModule PyType_GetModuleByDef PyType_GetModuleState PyType_GetName PyType_GetQualName PyType_GetSlot PyType_GetTypeDataSize PyType_IsSubtype PyType_Modified PyType_Ready PyType_SUPPORTS_WEAKREFS PyType_Type DATA PyType_Unwatch PyType_Watch PyUnicodeDecodeError_Create PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetStart PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetStart PyUnicodeIter_Type DATA PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetStart PyUnicode_Append PyUnicode_AppendAndDel PyUnicode_AsASCIIString PyUnicode_AsCharmapString PyUnicode_AsDecodedObject PyUnicode_AsDecodedUnicode PyUnicode_AsEncodedObject PyUnicode_AsEncodedString PyUnicode_AsEncodedUnicode PyUnicode_AsLatin1String PyUnicode_AsMBCSString PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsUCS4 PyUnicode_AsUCS4Copy PyUnicode_AsUTF16String PyUnicode_AsUTF32String PyUnicode_AsUTF8 PyUnicode_AsUTF8AndSize PyUnicode_AsUTF8String PyUnicode_AsUnicodeEscapeString PyUnicode_AsWideChar PyUnicode_AsWideCharString PyUnicode_BuildEncodingMap PyUnicode_Compare PyUnicode_CompareWithASCIIString PyUnicode_Concat PyUnicode_Contains PyUnicode_CopyCharacters PyUnicode_Count PyUnicode_Decode PyUnicode_DecodeASCII PyUnicode_DecodeCharmap PyUnicode_DecodeCodePageStateful PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeLatin1 PyUnicode_DecodeLocale PyUnicode_DecodeLocaleAndSize PyUnicode_DecodeMBCS PyUnicode_DecodeMBCSStateful PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUnicodeEscape PyUnicode_EncodeCodePage PyUnicode_EncodeFSDefault PyUnicode_EncodeLocale PyUnicode_FSConverter PyUnicode_FSDecoder PyUnicode_Fill PyUnicode_Find PyUnicode_FindChar PyUnicode_Format PyUnicode_FromEncodedObject PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromKindAndData PyUnicode_FromObject PyUnicode_FromOrdinal PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_FromWideChar PyUnicode_GetDefaultEncoding PyUnicode_GetLength PyUnicode_GetSize PyUnicode_InternFromString PyUnicode_InternImmortal PyUnicode_InternInPlace PyUnicode_IsIdentifier PyUnicode_Join PyUnicode_New PyUnicode_Partition PyUnicode_RPartition PyUnicode_RSplit PyUnicode_ReadChar PyUnicode_Replace PyUnicode_Resize PyUnicode_RichCompare PyUnicode_Split PyUnicode_Splitlines PyUnicode_Substring PyUnicode_Tailmatch PyUnicode_Translate PyUnicode_Type DATA PyUnicode_WriteChar PyUnstable_Code_GetExtra PyUnstable_Code_New PyUnstable_Code_NewWithPosOnlyArgs PyUnstable_Code_SetExtra PyUnstable_Eval_RequestCodeExtraIndex PyUnstable_Exc_PrepReraiseStar PyUnstable_GC_VisitObjects PyUnstable_InterpreterFrame_GetCode PyUnstable_InterpreterFrame_GetLasti PyUnstable_InterpreterFrame_GetLine PyUnstable_Long_CompactValue PyUnstable_Long_IsCompact PyUnstable_Object_GC_NewWithExtraData PyUnstable_PerfMapState_Fini PyUnstable_PerfMapState_Init PyUnstable_Type_AssignVersionTag PyUnstable_WritePerfMapEntry PyVectorcall_Call PyVectorcall_Function PyVectorcall_NARGS PyWeakref_GetObject PyWeakref_NewProxy PyWeakref_NewRef PyWideStringList_Append PyWideStringList_Insert PyWrapperDescr_Type DATA PyWrapper_New PyZip_Type DATA Py_AddPendingCall Py_AtExit Py_BuildValue Py_BytesMain Py_BytesWarningFlag DATA Py_CompileString Py_CompileStringExFlags Py_CompileStringFlags Py_CompileStringObject Py_DebugFlag DATA Py_DecRef Py_DecodeLocale Py_DontWriteBytecodeFlag DATA Py_EncodeLocale Py_EndInterpreter Py_EnterRecursiveCall Py_Exit Py_ExitStatusException Py_FatalError Py_FdIsInteractive Py_FileSystemDefaultEncodeErrors DATA Py_FileSystemDefaultEncoding DATA Py_Finalize Py_FinalizeEx Py_FrozenFlag DATA Py_GETENV Py_GenericAlias Py_GenericAliasType DATA Py_GetArgcArgv Py_GetBuildInfo Py_GetCompiler Py_GetCopyright Py_GetExecPrefix Py_GetPath Py_GetPlatform Py_GetPrefix Py_GetProgramFullPath Py_GetProgramName Py_GetPythonHome Py_GetRecursionLimit Py_GetVersion Py_HasFileSystemDefaultEncoding DATA Py_HashRandomizationFlag DATA Py_IgnoreEnvironmentFlag DATA Py_IncRef Py_Initialize Py_InitializeEx Py_InitializeFromConfig Py_InspectFlag DATA Py_InteractiveFlag DATA Py_Is Py_IsFalse Py_IsInitialized Py_IsNone Py_IsTrue Py_IsolatedFlag DATA Py_LeaveRecursiveCall Py_LegacyWindowsFSEncodingFlag DATA Py_LegacyWindowsStdioFlag DATA Py_Main Py_MakePendingCalls Py_NewInterpreter Py_NewInterpreterFromConfig Py_NewRef Py_NoSiteFlag DATA Py_NoUserSiteDirectory DATA Py_OptimizeFlag DATA Py_PreInitialize Py_PreInitializeFromArgs Py_PreInitializeFromBytesArgs Py_QuietFlag DATA Py_ReprEnter Py_ReprLeave Py_RunMain Py_SetPath Py_SetProgramName Py_SetPythonHome Py_SetRecursionLimit Py_SetStandardStreamEncoding Py_UTF8Mode DATA Py_UnbufferedStdioFlag DATA Py_UniversalNewlineFgets Py_VaBuildValue Py_VerboseFlag DATA Py_Version DATA Py_XNewRef Py_hexdigits DATA _PyAST_Compile _PyArena_AddPyObject _PyArena_Free _PyArena_Malloc _PyArena_New _PyArg_BadArgument _PyArg_CheckPositional _PyArg_NoKeywords _PyArg_NoKwnames _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseStackAndKeywords_SizeT _PyArg_ParseStack_SizeT _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywordsFast_SizeT _PyArg_ParseTupleAndKeywords_SizeT _PyArg_ParseTuple_SizeT _PyArg_Parse_SizeT _PyArg_UnpackKeywords _PyArg_UnpackKeywordsWithVararg _PyArg_UnpackStack _PyArg_VaParseTupleAndKeywordsFast _PyArg_VaParseTupleAndKeywordsFast_SizeT _PyArg_VaParseTupleAndKeywords_SizeT _PyArg_VaParse_SizeT _PyArgv_AsWstrList _PyAsyncGenASend_Type DATA _PyAsyncGenAThrow_Type DATA _PyAsyncGenWrappedValue_Type DATA _PyBufferWrapper_Type DATA _PyByteArray_empty_string DATA _PyBytesWriter_Alloc _PyBytesWriter_Dealloc _PyBytesWriter_Finish _PyBytesWriter_Init _PyBytesWriter_Prepare _PyBytesWriter_Resize _PyBytesWriter_WriteBytes _PyBytes_DecodeEscape _PyBytes_Find _PyBytes_FormatEx _PyBytes_FromHex _PyBytes_Join _PyBytes_Repeat _PyBytes_Resize _PyBytes_ReverseFind _PyCode_CheckLineNumber _PyCode_ConstantKey _PyCode_New _PyCode_Validate _PyCodecInfo_GetIncrementalDecoder _PyCodecInfo_GetIncrementalEncoder _PyCodec_DecodeText _PyCodec_EncodeText _PyCodec_Lookup _PyCodec_LookupTextEncoding _PyCompile_Assemble _PyCompile_CodeGen _PyCompile_OptimizeCfg _PyConfig_AsDict _PyConfig_FromDict _PyConfig_InitCompatConfig _PyContext_NewHamtForTests _PyCoroWrapper_Type DATA _PyCrossInterpreterData_Clear _PyCrossInterpreterData_Init _PyCrossInterpreterData_InitWithSize _PyCrossInterpreterData_Lookup _PyCrossInterpreterData_NewObject _PyCrossInterpreterData_RegisterClass _PyCrossInterpreterData_Release _PyCrossInterpreterData_ReleaseAndRawFree _PyCrossInterpreterData_UnregisterClass _PyDeadline_Get _PyDeadline_Init _PyDebugAllocatorStats _PyDictView_Intersect _PyDictView_New _PyDict_CheckConsistency _PyDict_ContainsId _PyDict_Contains_KnownHash _PyDict_DebugMallocStats _PyDict_DelItemId _PyDict_DelItemIf _PyDict_DelItem_KnownHash _PyDict_GetItemIdWithError _PyDict_GetItemStringWithError _PyDict_GetItemWithError _PyDict_GetItem_KnownHash _PyDict_HasOnlyStringKeys _PyDict_MaybeUntrack _PyDict_MergeEx _PyDict_NewPresized _PyDict_Next _PyDict_Pop _PyDict_SetItemId _PyDict_SetItem_KnownHash _PyDict_SizeOf _PyErr_BadInternalCall _PyErr_ChainExceptions _PyErr_ChainExceptions1 _PyErr_ChainStackItem _PyErr_CheckSignals _PyErr_CheckSignalsTstate _PyErr_Clear _PyErr_Display _PyErr_DisplayException _PyErr_ExceptionMatches _PyErr_Fetch _PyErr_Format _PyErr_FormatFromCause _PyErr_FormatFromCauseTstate _PyErr_GetExcInfo _PyErr_GetHandledException _PyErr_GetTopmostException _PyErr_NoMemory _PyErr_NormalizeException _PyErr_Print _PyErr_ProgramDecodedTextObject _PyErr_Restore _PyErr_SetFromPyStatus _PyErr_SetHandledException _PyErr_SetKeyError _PyErr_SetNone _PyErr_SetObject _PyErr_SetString _PyErr_StackItemToExcInfoTuple _PyErr_WriteUnraisableMsg _PyEval_AddPendingCall _PyEval_EvalFrameDefault _PyEval_GetBuiltin _PyEval_GetBuiltinId _PyEval_GetSwitchInterval _PyEval_MakePendingCalls _PyEval_SetProfile _PyEval_SetSwitchInterval _PyEval_SetTrace _PyEval_SignalAsyncExc _PyEval_SignalReceived _PyEval_SliceIndex _PyEval_SliceIndexNotNone _PyExc_CreateExceptionGroup _PyExc_PrepReraiseStar _PyException_AddNote _PyFloat_DebugMallocStats _PyFloat_FormatAdvancedWriter _PyFrame_IsEntryFrame _PyFunction_Vectorcall _PyGILState_GetInterpreterStateUnsafe _PyGen_FetchStopIterationValue _PyGen_Finalize _PyGen_SetStopIterationValue _PyImport_AcquireLock _PyImport_CheckSubinterpIncompatibleExtensionAllowed _PyImport_ClearExtension _PyImport_FixupBuiltin _PyImport_FixupExtensionObject _PyImport_FrozenBootstrap DATA _PyImport_FrozenStdlib DATA _PyImport_FrozenTest DATA _PyImport_GetModuleAttr _PyImport_GetModuleAttrString _PyImport_GetModuleId _PyImport_IsInitialized _PyImport_ReleaseLock _PyImport_SetModule _PyImport_SetModuleString _PyInterpreterID_LookUp _PyInterpreterID_New _PyInterpreterID_Type DATA _PyInterpreterState_Enable _PyInterpreterState_GetConfig _PyInterpreterState_GetConfigCopy _PyInterpreterState_GetEvalFrameFunc _PyInterpreterState_GetIDObject _PyInterpreterState_GetMainModule _PyInterpreterState_HasFeature _PyInterpreterState_IDDecref _PyInterpreterState_IDIncref _PyInterpreterState_IDInitref _PyInterpreterState_IsRunningMain _PyInterpreterState_LookUpID _PyInterpreterState_RequireIDRef _PyInterpreterState_RequiresIDRef _PyInterpreterState_SetConfig _PyInterpreterState_SetEvalFrameFunc _PyInterpreterState_SetNotRunningMain _PyInterpreterState_SetRunningMain _PyList_DebugMallocStats _PyList_Extend _PyLong_AsByteArray _PyLong_AsInt _PyLong_AsTime_t _PyLong_Copy _PyLong_DigitValue DATA _PyLong_DivmodNear _PyLong_FileDescriptor_Converter _PyLong_Format _PyLong_FormatAdvancedWriter _PyLong_FormatBytesWriter _PyLong_FormatWriter _PyLong_Frexp _PyLong_FromByteArray _PyLong_FromBytes _PyLong_FromDigits _PyLong_FromTime_t _PyLong_GCD _PyLong_Lshift _PyLong_New _PyLong_NumBits _PyLong_Rshift _PyLong_Sign _PyLong_Size_t_Converter _PyLong_UnsignedInt_Converter _PyLong_UnsignedLongLong_Converter _PyLong_UnsignedLong_Converter _PyLong_UnsignedShort_Converter _PyManagedBuffer_Type DATA _PyMem_GetAllocatorName _PyMem_GetCurrentAllocatorName _PyMem_RawStrdup _PyMem_RawWcsdup _PyMem_SetDefaultAllocator _PyMem_SetupAllocators _PyMem_Strdup _PyMethodWrapper_Type DATA _PyModuleSpec_IsInitializing _PyModule_Add _PyModule_Clear _PyModule_ClearDict _PyModule_CreateInitialized _PyNamespace_New _PyNamespace_Type DATA _PyNone_Type DATA _PyNotImplemented_Type DATA _PyNumber_Index _PyOS_InterruptOccurred _PyOS_IsMainThread _PyOS_ReadlineTState DATA _PyOS_SigintEvent _PyOS_URandom _PyOS_URandomNonblock _PyObject_AssertFailed _PyObject_Call _PyObject_CallFunction_SizeT _PyObject_CallMethod _PyObject_CallMethodId _PyObject_CallMethodIdObjArgs _PyObject_CallMethodId_SizeT _PyObject_CallMethod_SizeT _PyObject_Call_Prepend _PyObject_CheckConsistency _PyObject_CheckCrossInterpreterData _PyObject_ClearManagedDict _PyObject_DebugMallocStats _PyObject_DebugTypeStats _PyObject_Dump _PyObject_FastCall _PyObject_FastCallDictTstate _PyObject_FunctionStr _PyObject_GC_New _PyObject_GC_NewVar _PyObject_GC_Resize _PyObject_GenericGetAttrWithDict _PyObject_GenericSetAttrWithDict _PyObject_GetAttrId _PyObject_GetCrossInterpreterData _PyObject_GetDictPtr _PyObject_GetMethod _PyObject_GetState _PyObject_HasLen _PyObject_IsAbstract _PyObject_IsFreed _PyObject_LookupAttr _PyObject_LookupAttrId _PyObject_LookupSpecial _PyObject_LookupSpecialId _PyObject_MakeTpCall _PyObject_New _PyObject_NewVar _PyObject_NextNotImplemented _PyObject_RealIsInstance _PyObject_RealIsSubclass _PyObject_SetAttrId _PyObject_VisitManagedDict _PyParser_TokenNames DATA _PyPathConfig_ClearGlobal _PyPreConfig_InitCompatConfig _PyRun_AnyFileObject _PyRun_InteractiveLoopObject _PyRun_SimpleFileObject _PyRuntime DATA _PyRuntimeState_Fini _PyRuntimeState_Init _PyRuntime_Finalize _PyRuntime_Initialize _PySequence_BytesToCharpArray _PySequence_IterSearch _PySet_Dummy DATA _PySet_NextEntry _PySet_Update _PySlice_FromIndices _PySlice_GetLongIndices _PyStack_AsDict _PyState_AddModule _PyStructSequence_NewType _PySys_GetAttr _PySys_GetSizeOf _PyThreadState_Bind _PyThreadState_DeleteCurrent _PyThreadState_DeleteExcept _PyThreadState_GetCurrent _PyThreadState_GetDict _PyThreadState_Init _PyThreadState_New _PyThreadState_Prealloc _PyThreadState_Swap _PyThreadState_UncheckedGet _PyThread_CurrentExceptions _PyThread_CurrentFrames _PyTime_Add _PyTime_As100Nanoseconds _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanoseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_clamp _PyTime_FromMicrosecondsClamp _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetPerfCounter _PyTime_GetPerfCounterWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_MulDiv _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _PyToken_OneChar _PyToken_ThreeChars _PyToken_TwoChars _PyTraceBack_FromFrame _PyTraceBack_Print_Indented _PyTraceMalloc_ClearTraces _PyTraceMalloc_GetMemory _PyTraceMalloc_GetObjectTraceback _PyTraceMalloc_GetTraceback _PyTraceMalloc_GetTracebackLimit _PyTraceMalloc_GetTracedMemory _PyTraceMalloc_GetTraces _PyTraceMalloc_Init _PyTraceMalloc_IsTracing _PyTraceMalloc_ResetPeak _PyTraceMalloc_Start _PyTraceMalloc_Stop _PyTraceback_Add _PyTrash_begin _PyTrash_cond _PyTrash_end _PyTuple_DebugMallocStats _PyTuple_MaybeUntrack _PyTuple_Resize _PyType_CalculateMetaclass _PyType_CheckConsistency _PyType_GetDict _PyType_GetDocFromInternalDoc _PyType_GetTextSignatureFromInternalDoc _PyType_Lookup _PyType_LookupId _PyType_Name _PyUnicodeTranslateError_Create _PyUnicodeWriter_Dealloc _PyUnicodeWriter_Finish _PyUnicodeWriter_Init _PyUnicodeWriter_PrepareInternal _PyUnicodeWriter_PrepareKindInternal _PyUnicodeWriter_WriteASCIIString _PyUnicodeWriter_WriteChar _PyUnicodeWriter_WriteLatin1String _PyUnicodeWriter_WriteStr _PyUnicodeWriter_WriteSubstring _PyUnicode_AsASCIIString _PyUnicode_AsLatin1String _PyUnicode_AsUTF8String _PyUnicode_CheckConsistency _PyUnicode_Copy _PyUnicode_DecodeRawUnicodeEscapeStateful _PyUnicode_DecodeUnicodeEscapeInternal _PyUnicode_DecodeUnicodeEscapeStateful _PyUnicode_EQ _PyUnicode_EncodeCharmap _PyUnicode_EncodeUTF16 _PyUnicode_EncodeUTF32 _PyUnicode_EncodeUTF7 _PyUnicode_Equal _PyUnicode_EqualToASCIIId _PyUnicode_EqualToASCIIString _PyUnicode_FastCopyCharacters _PyUnicode_FastFill _PyUnicode_FindMaxChar _PyUnicode_FormatAdvancedWriter _PyUnicode_FormatLong _PyUnicode_FromASCII _PyUnicode_FromId _PyUnicode_InsertThousandsGrouping _PyUnicode_IsAlpha _PyUnicode_IsCaseIgnorable _PyUnicode_IsCased _PyUnicode_IsDecimalDigit _PyUnicode_IsDigit _PyUnicode_IsLinebreak _PyUnicode_IsLowercase _PyUnicode_IsNumeric _PyUnicode_IsPrintable _PyUnicode_IsTitlecase _PyUnicode_IsUppercase _PyUnicode_IsWhitespace _PyUnicode_IsXidContinue _PyUnicode_IsXidStart _PyUnicode_JoinArray _PyUnicode_ScanIdentifier _PyUnicode_ToDecimalDigit _PyUnicode_ToDigit _PyUnicode_ToFoldedFull _PyUnicode_ToLowerFull _PyUnicode_ToLowercase _PyUnicode_ToNumeric _PyUnicode_ToTitleFull _PyUnicode_ToTitlecase _PyUnicode_ToUpperFull _PyUnicode_ToUppercase _PyUnicode_TransformDecimalAndSpaceToASCII _PyUnicode_WideCharString_Converter _PyUnicode_WideCharString_Opt_Converter _PyUnicode_XStrip _PyWarnings_Init _PyWeakref_CallableProxyType DATA _PyWeakref_ClearRef _PyWeakref_GetWeakrefCount _PyWeakref_ProxyType DATA _PyWeakref_RefType DATA _PyWideStringList_AsList _PyWideStringList_Clear _PyWideStringList_Copy _PyWideStringList_Extend _Py_AtExit _Py_BreakPoint _Py_BuildValue_SizeT _Py_CheckFunctionResult _Py_CheckRecursiveCall _Py_ClearArgcArgv _Py_ClearStandardStreamEncoding _Py_CoerceLegacyLocale _Py_Dealloc _Py_DecRef _Py_DecodeLocaleEx _Py_DecodeUTF8Ex _Py_DecodeUTF8_surrogateescape _Py_DisplaySourceLine _Py_DumpASCII _Py_DumpDecimal _Py_DumpExtensionModules _Py_DumpHexadecimal _Py_DumpTraceback _Py_DumpTracebackThreads _Py_EllipsisObject DATA _Py_EncodeLocaleEx _Py_EncodeLocaleRaw _Py_EncodeUTF8Ex _Py_FalseStruct DATA _Py_FatalErrorFormat _Py_FatalErrorFunc _Py_FatalRefcountErrorFunc _Py_FdIsInteractive _Py_FreeCharPArray _Py_GetConfig _Py_GetConfigsAsDict _Py_GetEnv _Py_GetErrorHandler _Py_GetForceASCII _Py_GetLocaleEncoding _Py_GetLocaleEncodingObject _Py_GetLocaleconvNumeric _Py_Get_Getpath_CodeObject _Py_HandleSystemExit _Py_HasFileSystemDefaultEncodeErrors DATA _Py_HashBytes _Py_HashDouble _Py_HashPointer _Py_HashPointerRaw _Py_HashSecret DATA _Py_IncRef _Py_InitializeMain _Py_IsCoreInitialized _Py_IsFinalizing _Py_IsInterpreterFinalizing _Py_IsLocaleCoercionTarget _Py_LegacyLocaleDetected _Py_NewReference _Py_NewReferenceNoTotal _Py_NoneStruct DATA _Py_NotImplementedStruct DATA _Py_PreInitializeFromConfig _Py_PreInitializeFromPyArgv _Py_ResetForceASCII _Py_RestoreSignals _Py_SetLocaleFromEnv _Py_SetProgramFullPath _Py_SourceAsString _Py_SwappedOp DATA _Py_TrueStruct DATA _Py_UTF8_Edit_Cost _Py_UniversalNewlineFgetsWithSize _Py_VaBuildStack _Py_VaBuildStack_SizeT _Py_VaBuildValue_SizeT _Py_WriteIndent _Py_WriteIndentedMargin _Py_add_one_to_index_C _Py_add_one_to_index_F _Py_ascii_whitespace DATA _Py_c_abs _Py_c_diff _Py_c_neg _Py_c_pow _Py_c_prod _Py_c_quot _Py_c_sum _Py_closerange _Py_convert_optional_to_ssize_t _Py_ctype_table DATA _Py_ctype_tolower DATA _Py_ctype_toupper DATA _Py_device_encoding _Py_dg_dtoa _Py_dg_freedtoa _Py_dg_strtod _Py_dup _Py_fopen_obj _Py_fstat _Py_fstat_noraise _Py_get_blocking _Py_get_env_flag _Py_get_inheritable _Py_get_osfhandle _Py_get_osfhandle_noraise _Py_get_xoption _Py_gitidentifier _Py_gitversion _Py_hashtable_clear _Py_hashtable_compare_direct _Py_hashtable_destroy _Py_hashtable_foreach _Py_hashtable_get _Py_hashtable_hash_ptr _Py_hashtable_len _Py_hashtable_new _Py_hashtable_new_full _Py_hashtable_set _Py_hashtable_size _Py_hashtable_steal _Py_normpath _Py_open _Py_open_noraise _Py_open_osfhandle _Py_open_osfhandle_noraise _Py_parse_inf_or_nan _Py_read _Py_set_blocking _Py_set_inheritable _Py_set_inheritable_async_safe _Py_stat _Py_str_to_int _Py_strhex _Py_strhex_bytes _Py_strhex_bytes_with_sep _Py_strhex_with_sep _Py_string_to_number_with_underscores _Py_wfopen _Py_wgetcwd _Py_write _Py_write_noraise python3-dll-a-0.2.10/src/python313.def000064400000000000000000001050311046102023000153160ustar 00000000000000; ; Definition file of python313.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "python313.dll" EXPORTS PY_TIMEOUT_MAX DATA PyAIter_Check PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyArg_UnpackTuple PyArg_VaParse PyArg_VaParseTupleAndKeywords PyArg_ValidateKeywordArguments PyAsyncGen_New PyAsyncGen_Type DATA PyBaseObject_Type DATA PyBool_FromLong PyBool_Type DATA PyBuffer_FillContiguousStrides PyBuffer_FillInfo PyBuffer_FromContiguous PyBuffer_GetPointer PyBuffer_IsContiguous PyBuffer_Release PyBuffer_SizeFromFormat PyBuffer_ToContiguous PyByteArrayIter_Type DATA PyByteArray_AsString PyByteArray_Concat PyByteArray_FromObject PyByteArray_FromStringAndSize PyByteArray_Resize PyByteArray_Size PyByteArray_Type DATA PyBytesIter_Type DATA PyBytes_AsString PyBytes_AsStringAndSize PyBytes_Concat PyBytes_ConcatAndDel PyBytes_DecodeEscape PyBytes_FromFormat PyBytes_FromFormatV PyBytes_FromObject PyBytes_FromString PyBytes_FromStringAndSize PyBytes_Repr PyBytes_Size PyBytes_Type DATA PyCFunction_Call PyCFunction_GetFlags PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_New PyCFunction_NewEx PyCFunction_Type DATA PyCMethod_New PyCMethod_Type DATA PyCallIter_New PyCallIter_Type DATA PyCallable_Check PyCapsule_GetContext PyCapsule_GetDestructor PyCapsule_GetName PyCapsule_GetPointer PyCapsule_Import PyCapsule_IsValid PyCapsule_New PyCapsule_SetContext PyCapsule_SetDestructor PyCapsule_SetName PyCapsule_SetPointer PyCapsule_Type DATA PyCell_Get PyCell_New PyCell_Set PyCell_Type DATA PyClassMethodDescr_Type DATA PyClassMethod_New PyClassMethod_Type DATA PyCode_AddWatcher PyCode_Addr2Line PyCode_Addr2Location PyCode_ClearWatcher PyCode_GetCellvars PyCode_GetCode PyCode_GetFreevars PyCode_GetVarnames PyCode_NewEmpty PyCode_Optimize PyCode_Type DATA PyCodec_BackslashReplaceErrors PyCodec_Decode PyCodec_Decoder PyCodec_Encode PyCodec_Encoder PyCodec_IgnoreErrors PyCodec_IncrementalDecoder PyCodec_IncrementalEncoder PyCodec_KnownEncoding PyCodec_LookupError PyCodec_NameReplaceErrors PyCodec_Register PyCodec_RegisterError PyCodec_ReplaceErrors PyCodec_StreamReader PyCodec_StreamWriter PyCodec_StrictErrors PyCodec_Unregister PyCodec_XMLCharRefReplaceErrors PyCompile_OpcodeStackEffect PyCompile_OpcodeStackEffectWithJump PyComplex_AsCComplex PyComplex_FromCComplex PyComplex_FromDoubles PyComplex_ImagAsDouble PyComplex_RealAsDouble PyComplex_Type DATA PyConfig_Clear PyConfig_InitIsolatedConfig PyConfig_InitPythonConfig PyConfig_Read PyConfig_SetArgv PyConfig_SetBytesArgv PyConfig_SetBytesString PyConfig_SetString PyConfig_SetWideStringList PyContextToken_Type DATA PyContextVar_Get PyContextVar_New PyContextVar_Reset PyContextVar_Set PyContextVar_Type DATA PyContext_Copy PyContext_CopyCurrent PyContext_Enter PyContext_Exit PyContext_New PyContext_Type DATA PyCoro_New PyCoro_Type DATA PyDescr_IsData PyDescr_NewClassMethod PyDescr_NewGetSet PyDescr_NewMember PyDescr_NewMethod PyDescr_NewWrapper PyDictItems_Type DATA PyDictIterItem_Type DATA PyDictIterKey_Type DATA PyDictIterValue_Type DATA PyDictKeys_Type DATA PyDictProxy_New PyDictProxy_Type DATA PyDictRevIterItem_Type DATA PyDictRevIterKey_Type DATA PyDictRevIterValue_Type DATA PyDictValues_Type DATA PyDict_AddWatcher PyDict_Clear PyDict_ClearWatcher PyDict_Contains PyDict_ContainsString PyDict_Copy PyDict_DelItem PyDict_DelItemString PyDict_GetItem PyDict_GetItemRef PyDict_GetItemString PyDict_GetItemStringRef PyDict_GetItemWithError PyDict_Items PyDict_Keys PyDict_Merge PyDict_MergeFromSeq2 PyDict_New PyDict_Next PyDict_Pop PyDict_PopString PyDict_SetDefault PyDict_SetDefaultRef PyDict_SetItem PyDict_SetItemString PyDict_Size PyDict_Type DATA PyDict_Unwatch PyDict_Update PyDict_Values PyDict_Watch PyEllipsis_Type DATA PyEnum_Type DATA PyErr_BadArgument PyErr_BadInternalCall PyErr_CheckSignals PyErr_Clear PyErr_Display PyErr_DisplayException PyErr_ExceptionMatches PyErr_Fetch PyErr_Format PyErr_FormatUnraisable PyErr_FormatV PyErr_GetExcInfo PyErr_GetHandledException PyErr_GetRaisedException PyErr_GivenExceptionMatches PyErr_NewException PyErr_NewExceptionWithDoc PyErr_NoMemory PyErr_NormalizeException PyErr_Occurred PyErr_Print PyErr_PrintEx PyErr_ProgramText PyErr_ProgramTextObject PyErr_RangedSyntaxLocationObject PyErr_ResourceWarning PyErr_Restore PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetExcInfo PyErr_SetFromErrno PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilenameObject PyErr_SetFromErrnoWithFilenameObjects PyErr_SetFromWindowsErr PyErr_SetFromWindowsErrWithFilename PyErr_SetHandledException PyErr_SetImportError PyErr_SetImportErrorSubclass PyErr_SetInterrupt PyErr_SetInterruptEx PyErr_SetNone PyErr_SetObject PyErr_SetRaisedException PyErr_SetString PyErr_SyntaxLocation PyErr_SyntaxLocationEx PyErr_SyntaxLocationObject PyErr_WarnEx PyErr_WarnExplicit PyErr_WarnExplicitFormat PyErr_WarnExplicitObject PyErr_WarnFormat PyErr_WriteUnraisable PyEval_AcquireLock PyEval_AcquireThread PyEval_CallFunction PyEval_CallMethod PyEval_CallObjectWithKeywords PyEval_EvalCode PyEval_EvalCodeEx PyEval_EvalFrame PyEval_EvalFrameEx PyEval_GetBuiltins PyEval_GetFrame PyEval_GetFrameBuiltins PyEval_GetFrameGlobals PyEval_GetFrameLocals PyEval_GetFuncDesc PyEval_GetFuncName PyEval_GetGlobals PyEval_GetLocals PyEval_InitThreads PyEval_MergeCompilerFlags PyEval_ReleaseLock PyEval_ReleaseThread PyEval_RestoreThread PyEval_SaveThread PyEval_SetProfile PyEval_SetProfileAllThreads PyEval_SetTrace PyEval_SetTraceAllThreads PyEval_ThreadsInitialized PyEvent_Wait PyEvent_WaitTimed PyExc_ArithmeticError DATA PyExc_AssertionError DATA PyExc_AttributeError DATA PyExc_BaseException DATA PyExc_BaseExceptionGroup DATA PyExc_BlockingIOError DATA PyExc_BrokenPipeError DATA PyExc_BufferError DATA PyExc_BytesWarning DATA PyExc_ChildProcessError DATA PyExc_ConnectionAbortedError DATA PyExc_ConnectionError DATA PyExc_ConnectionRefusedError DATA PyExc_ConnectionResetError DATA PyExc_DeprecationWarning DATA PyExc_EOFError DATA PyExc_EncodingWarning DATA PyExc_EnvironmentError DATA PyExc_Exception DATA PyExc_FileExistsError DATA PyExc_FileNotFoundError DATA PyExc_FloatingPointError DATA PyExc_FutureWarning DATA PyExc_GeneratorExit DATA PyExc_IOError DATA PyExc_ImportError DATA PyExc_ImportWarning DATA PyExc_IncompleteInputError DATA PyExc_IndentationError DATA PyExc_IndexError DATA PyExc_InterpreterError DATA PyExc_InterpreterNotFoundError DATA PyExc_InterruptedError DATA PyExc_IsADirectoryError DATA PyExc_KeyError DATA PyExc_KeyboardInterrupt DATA PyExc_LookupError DATA PyExc_MemoryError DATA PyExc_ModuleNotFoundError DATA PyExc_NameError DATA PyExc_NotADirectoryError DATA PyExc_NotImplementedError DATA PyExc_OSError DATA PyExc_OverflowError DATA PyExc_PendingDeprecationWarning DATA PyExc_PermissionError DATA PyExc_ProcessLookupError DATA PyExc_PythonFinalizationError DATA PyExc_RecursionError DATA PyExc_ReferenceError DATA PyExc_ResourceWarning DATA PyExc_RuntimeError DATA PyExc_RuntimeWarning DATA PyExc_StopAsyncIteration DATA PyExc_StopIteration DATA PyExc_SyntaxError DATA PyExc_SyntaxWarning DATA PyExc_SystemError DATA PyExc_SystemExit DATA PyExc_TabError DATA PyExc_TimeoutError DATA PyExc_TypeError DATA PyExc_UnboundLocalError DATA PyExc_UnicodeDecodeError DATA PyExc_UnicodeEncodeError DATA PyExc_UnicodeError DATA PyExc_UnicodeTranslateError DATA PyExc_UnicodeWarning DATA PyExc_UserWarning DATA PyExc_ValueError DATA PyExc_Warning DATA PyExc_WindowsError DATA PyExc_ZeroDivisionError DATA PyExceptionClass_Name PyException_GetArgs PyException_GetCause PyException_GetContext PyException_GetTraceback PyException_SetArgs PyException_SetCause PyException_SetContext PyException_SetTraceback PyFile_FromFd PyFile_GetLine PyFile_NewStdPrinter PyFile_OpenCode PyFile_OpenCodeObject PyFile_SetOpenCodeHook PyFile_WriteObject PyFile_WriteString PyFilter_Type DATA PyFloat_AsDouble PyFloat_FromDouble PyFloat_FromString PyFloat_GetInfo PyFloat_GetMax PyFloat_GetMin PyFloat_Pack2 PyFloat_Pack4 PyFloat_Pack8 PyFloat_Type DATA PyFloat_Unpack2 PyFloat_Unpack4 PyFloat_Unpack8 PyFrameLocalsProxy_Type DATA PyFrame_FastToLocals PyFrame_FastToLocalsWithError PyFrame_GetBack PyFrame_GetBuiltins PyFrame_GetCode PyFrame_GetGenerator PyFrame_GetGlobals PyFrame_GetLasti PyFrame_GetLineNumber PyFrame_GetLocals PyFrame_GetVar PyFrame_GetVarString PyFrame_LocalsToFast PyFrame_New PyFrame_Type DATA PyFrozenSet_New PyFrozenSet_Type DATA PyFunction_AddWatcher PyFunction_ClearWatcher PyFunction_GetAnnotations PyFunction_GetClosure PyFunction_GetCode PyFunction_GetDefaults PyFunction_GetGlobals PyFunction_GetKwDefaults PyFunction_GetModule PyFunction_New PyFunction_NewWithQualName PyFunction_SetAnnotations PyFunction_SetClosure PyFunction_SetDefaults PyFunction_SetKwDefaults PyFunction_SetVectorcall PyFunction_Type DATA PyGC_Collect PyGC_Disable PyGC_Enable PyGC_IsEnabled PyGILState_Check PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release PyGen_GetCode PyGen_New PyGen_NewWithQualName PyGen_Type DATA PyGetSetDescr_Type DATA PyHash_GetFuncDef PyImport_AddModule PyImport_AddModuleObject PyImport_AddModuleRef PyImport_AppendInittab PyImport_ExecCodeModule PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleObject PyImport_ExecCodeModuleWithPathnames PyImport_ExtendInittab PyImport_FrozenModules DATA PyImport_GetImporter PyImport_GetMagicNumber PyImport_GetMagicTag PyImport_GetModule PyImport_GetModuleDict PyImport_Import PyImport_ImportFrozenModule PyImport_ImportFrozenModuleObject PyImport_ImportModule PyImport_ImportModuleLevel PyImport_ImportModuleLevelObject PyImport_ImportModuleNoBlock PyImport_Inittab DATA PyImport_ReloadModule PyIndex_Check PyInstanceMethod_Function PyInstanceMethod_New PyInstanceMethod_Type DATA PyInterpreterState_Clear PyInterpreterState_Delete PyInterpreterState_Get PyInterpreterState_GetDict PyInterpreterState_GetID PyInterpreterState_Head PyInterpreterState_Main PyInterpreterState_New PyInterpreterState_Next PyInterpreterState_ThreadHead PyIter_Check PyIter_Next PyIter_Send PyListIter_Type DATA PyListRevIter_Type DATA PyList_Append PyList_AsTuple PyList_Clear PyList_Extend PyList_GetItem PyList_GetItemRef PyList_GetSlice PyList_Insert PyList_New PyList_Reverse PyList_SetItem PyList_SetSlice PyList_Size PyList_Sort PyList_Type DATA PyLongRangeIter_Type DATA PyLong_AsDouble PyLong_AsInt PyLong_AsLong PyLong_AsLongAndOverflow PyLong_AsLongLong PyLong_AsLongLongAndOverflow PyLong_AsNativeBytes PyLong_AsSize_t PyLong_AsSsize_t PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongMask PyLong_AsVoidPtr PyLong_FromDouble PyLong_FromLong PyLong_FromLongLong PyLong_FromNativeBytes PyLong_FromSize_t PyLong_FromSsize_t PyLong_FromString PyLong_FromUnicodeObject PyLong_FromUnsignedLong PyLong_FromUnsignedLongLong PyLong_FromUnsignedNativeBytes PyLong_FromVoidPtr PyLong_GetInfo PyLong_Type DATA PyMap_Type DATA PyMapping_Check PyMapping_GetItemString PyMapping_GetOptionalItem PyMapping_GetOptionalItemString PyMapping_HasKey PyMapping_HasKeyString PyMapping_HasKeyStringWithError PyMapping_HasKeyWithError PyMapping_Items PyMapping_Keys PyMapping_Length PyMapping_SetItemString PyMapping_Size PyMapping_Values PyMarshal_ReadLastObjectFromFile PyMarshal_ReadLongFromFile PyMarshal_ReadObjectFromFile PyMarshal_ReadObjectFromString PyMarshal_ReadShortFromFile PyMarshal_WriteLongToFile PyMarshal_WriteObjectToFile PyMarshal_WriteObjectToString PyMem_Calloc PyMem_Free PyMem_GetAllocator PyMem_Malloc PyMem_RawCalloc PyMem_RawFree PyMem_RawMalloc PyMem_RawRealloc PyMem_Realloc PyMem_SetAllocator PyMem_SetupDebugHooks PyMemberDescr_Type DATA PyMember_GetOne PyMember_SetOne PyMemoryView_FromBuffer PyMemoryView_FromMemory PyMemoryView_FromObject PyMemoryView_GetContiguous PyMemoryView_Type DATA PyMethodDescr_Type DATA PyMethod_Function PyMethod_New PyMethod_Self PyMethod_Type DATA PyModuleDef_Init PyModuleDef_Type DATA PyModule_Add PyModule_AddFunctions PyModule_AddIntConstant PyModule_AddObject PyModule_AddObjectRef PyModule_AddStringConstant PyModule_AddType PyModule_Create2 PyModule_ExecDef PyModule_FromDefAndSpec2 PyModule_GetDef PyModule_GetDict PyModule_GetFilename PyModule_GetFilenameObject PyModule_GetName PyModule_GetNameObject PyModule_GetState PyModule_New PyModule_NewObject PyModule_SetDocString PyModule_Type DATA PyMonitoring_EnterScope PyMonitoring_ExitScope PyNumber_Absolute PyNumber_Add PyNumber_And PyNumber_AsSsize_t PyNumber_Check PyNumber_Divmod PyNumber_Float PyNumber_FloorDivide PyNumber_InPlaceAdd PyNumber_InPlaceAnd PyNumber_InPlaceFloorDivide PyNumber_InPlaceLshift PyNumber_InPlaceMatrixMultiply PyNumber_InPlaceMultiply PyNumber_InPlaceOr PyNumber_InPlacePower PyNumber_InPlaceRemainder PyNumber_InPlaceRshift PyNumber_InPlaceSubtract PyNumber_InPlaceTrueDivide PyNumber_InPlaceXor PyNumber_Index PyNumber_Invert PyNumber_Long PyNumber_Lshift PyNumber_MatrixMultiply PyNumber_Multiply PyNumber_Negative PyNumber_Or PyNumber_Positive PyNumber_Power PyNumber_Remainder PyNumber_Rshift PyNumber_Subtract PyNumber_ToBase PyNumber_TrueDivide PyNumber_Xor PyODictItems_Type DATA PyODictIter_Type DATA PyODictKeys_Type DATA PyODictValues_Type DATA PyODict_DelItem PyODict_New PyODict_SetItem PyODict_Type DATA PyOS_AfterFork PyOS_FSPath PyOS_InputHook DATA PyOS_InterruptOccurred PyOS_Readline PyOS_ReadlineFunctionPointer DATA PyOS_double_to_string PyOS_getsig PyOS_mystricmp PyOS_mystrnicmp PyOS_setsig PyOS_snprintf PyOS_string_to_double PyOS_strtol PyOS_strtoul PyOS_vsnprintf PyObject_ASCII PyObject_AsCharBuffer PyObject_AsFileDescriptor PyObject_AsReadBuffer PyObject_AsWriteBuffer PyObject_Bytes PyObject_Call PyObject_CallFinalizer PyObject_CallFinalizerFromDealloc PyObject_CallFunction PyObject_CallFunctionObjArgs PyObject_CallMethod PyObject_CallMethodObjArgs PyObject_CallNoArgs PyObject_CallObject PyObject_CallOneArg PyObject_Calloc PyObject_CheckBuffer PyObject_CheckReadBuffer PyObject_ClearManagedDict PyObject_ClearWeakRefs PyObject_CopyData PyObject_DelAttr PyObject_DelAttrString PyObject_DelItem PyObject_DelItemString PyObject_Dir PyObject_Format PyObject_Free PyObject_GC_Del PyObject_GC_IsFinalized PyObject_GC_IsTracked PyObject_GC_Track PyObject_GC_UnTrack PyObject_GET_WEAKREFS_LISTPTR PyObject_GenericGetAttr PyObject_GenericGetDict PyObject_GenericHash PyObject_GenericSetAttr PyObject_GenericSetDict PyObject_GetAIter PyObject_GetArenaAllocator PyObject_GetAttr PyObject_GetAttrString PyObject_GetBuffer PyObject_GetItem PyObject_GetItemData PyObject_GetIter PyObject_GetOptionalAttr PyObject_GetOptionalAttrString PyObject_GetTypeData PyObject_HasAttr PyObject_HasAttrString PyObject_HasAttrStringWithError PyObject_HasAttrWithError PyObject_Hash PyObject_HashNotImplemented PyObject_IS_GC PyObject_Init PyObject_InitVar PyObject_IsInstance PyObject_IsSubclass PyObject_IsTrue PyObject_Length PyObject_LengthHint PyObject_Malloc PyObject_Not PyObject_Print PyObject_Realloc PyObject_Repr PyObject_RichCompare PyObject_RichCompareBool PyObject_SelfIter PyObject_SetArenaAllocator PyObject_SetAttr PyObject_SetAttrString PyObject_SetItem PyObject_Size PyObject_Str PyObject_Type PyObject_Vectorcall PyObject_VectorcallDict PyObject_VectorcallMethod PyObject_VisitManagedDict PyPickleBuffer_FromObject PyPickleBuffer_GetBuffer PyPickleBuffer_Release PyPickleBuffer_Type DATA PyPreConfig_InitIsolatedConfig PyPreConfig_InitPythonConfig PyProperty_Type DATA PyRangeIter_Type DATA PyRange_Type DATA PyRefTracer_GetTracer PyRefTracer_SetTracer PyReversed_Type DATA PyRun_AnyFile PyRun_AnyFileEx PyRun_AnyFileExFlags PyRun_AnyFileFlags PyRun_File PyRun_FileEx PyRun_FileExFlags PyRun_FileFlags PyRun_InteractiveLoop PyRun_InteractiveLoopFlags PyRun_InteractiveOne PyRun_InteractiveOneFlags PyRun_InteractiveOneObject PyRun_SimpleFile PyRun_SimpleFileEx PyRun_SimpleFileExFlags PyRun_SimpleString PyRun_SimpleStringFlags PyRun_String PyRun_StringFlags PySeqIter_New PySeqIter_Type DATA PySequence_Check PySequence_Concat PySequence_Contains PySequence_Count PySequence_DelItem PySequence_DelSlice PySequence_Fast PySequence_GetItem PySequence_GetSlice PySequence_In PySequence_InPlaceConcat PySequence_InPlaceRepeat PySequence_Index PySequence_Length PySequence_List PySequence_Repeat PySequence_SetItem PySequence_SetSlice PySequence_Size PySequence_Tuple PySetIter_Type DATA PySet_Add PySet_Clear PySet_Contains PySet_Discard PySet_New PySet_Pop PySet_Size PySet_Type DATA PySlice_AdjustIndices PySlice_GetIndices PySlice_GetIndicesEx PySlice_New PySlice_Type DATA PySlice_Unpack PyState_AddModule PyState_FindModule PyState_RemoveModule PyStaticMethod_New PyStaticMethod_Type DATA PyStatus_Error PyStatus_Exception PyStatus_Exit PyStatus_IsError PyStatus_IsExit PyStatus_NoMemory PyStatus_Ok PyStdPrinter_Type DATA PyStructSequence_GetItem PyStructSequence_InitType PyStructSequence_InitType2 PyStructSequence_New PyStructSequence_NewType PyStructSequence_SetItem PyStructSequence_UnnamedField DATA PySuper_Type DATA PySys_AddAuditHook PySys_AddWarnOption PySys_AddWarnOptionUnicode PySys_AddXOption PySys_Audit PySys_AuditTuple PySys_FormatStderr PySys_FormatStdout PySys_GetObject PySys_GetXOptions PySys_HasWarnOptions PySys_ResetWarnOptions PySys_SetArgv PySys_SetArgvEx PySys_SetObject PySys_SetPath PySys_WriteStderr PySys_WriteStdout PyThreadState_Clear PyThreadState_Delete PyThreadState_DeleteCurrent PyThreadState_EnterTracing PyThreadState_Get PyThreadState_GetDict PyThreadState_GetFrame PyThreadState_GetID PyThreadState_GetInterpreter PyThreadState_GetUnchecked PyThreadState_LeaveTracing PyThreadState_New PyThreadState_Next PyThreadState_SetAsyncExc PyThreadState_Swap PyThread_GetInfo PyThread_ParseTimeoutArg PyThread_ReInitTLS PyThread_acquire_lock PyThread_acquire_lock_timed PyThread_acquire_lock_timed_with_retries PyThread_allocate_lock PyThread_create_key PyThread_delete_key PyThread_delete_key_value PyThread_detach_thread PyThread_exit_thread PyThread_free_lock PyThread_get_key_value PyThread_get_stacksize PyThread_get_thread_ident PyThread_get_thread_ident_ex PyThread_get_thread_native_id PyThread_init_thread PyThread_join_thread PyThread_release_lock PyThread_set_key_value PyThread_set_stacksize PyThread_start_joinable_thread PyThread_start_new_thread PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyTime_AsSecondsDouble PyTime_Monotonic PyTime_MonotonicRaw PyTime_PerfCounter PyTime_PerfCounterRaw PyTime_Time PyTime_TimeRaw PyTraceBack_Here PyTraceBack_Print PyTraceBack_Type DATA PyTraceMalloc_Track PyTraceMalloc_Untrack PyTupleIter_Type DATA PyTuple_GetItem PyTuple_GetSlice PyTuple_New PyTuple_Pack PyTuple_SetItem PyTuple_Size PyTuple_Type DATA PyType_AddWatcher PyType_ClearCache PyType_ClearWatcher PyType_FromMetaclass PyType_FromModuleAndSpec PyType_FromSpec PyType_FromSpecWithBases PyType_GenericAlloc PyType_GenericNew PyType_GetDict PyType_GetFlags PyType_GetFullyQualifiedName PyType_GetModule PyType_GetModuleByDef PyType_GetModuleName PyType_GetModuleState PyType_GetName PyType_GetQualName PyType_GetSlot PyType_GetTypeDataSize PyType_IsSubtype PyType_Modified PyType_Ready PyType_SUPPORTS_WEAKREFS PyType_Type DATA PyType_Unwatch PyType_Watch PyUnicodeDecodeError_Create PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetStart PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetStart PyUnicodeIter_Type DATA PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetStart PyUnicode_Append PyUnicode_AppendAndDel PyUnicode_AsASCIIString PyUnicode_AsCharmapString PyUnicode_AsDecodedObject PyUnicode_AsDecodedUnicode PyUnicode_AsEncodedObject PyUnicode_AsEncodedString PyUnicode_AsEncodedUnicode PyUnicode_AsLatin1String PyUnicode_AsMBCSString PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsUCS4 PyUnicode_AsUCS4Copy PyUnicode_AsUTF16String PyUnicode_AsUTF32String PyUnicode_AsUTF8 PyUnicode_AsUTF8AndSize PyUnicode_AsUTF8String PyUnicode_AsUnicodeEscapeString PyUnicode_AsWideChar PyUnicode_AsWideCharString PyUnicode_BuildEncodingMap PyUnicode_Compare PyUnicode_CompareWithASCIIString PyUnicode_Concat PyUnicode_Contains PyUnicode_CopyCharacters PyUnicode_Count PyUnicode_Decode PyUnicode_DecodeASCII PyUnicode_DecodeCharmap PyUnicode_DecodeCodePageStateful PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeLatin1 PyUnicode_DecodeLocale PyUnicode_DecodeLocaleAndSize PyUnicode_DecodeMBCS PyUnicode_DecodeMBCSStateful PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUnicodeEscape PyUnicode_EncodeCodePage PyUnicode_EncodeFSDefault PyUnicode_EncodeLocale PyUnicode_EqualToUTF8 PyUnicode_EqualToUTF8AndSize PyUnicode_FSConverter PyUnicode_FSDecoder PyUnicode_Fill PyUnicode_Find PyUnicode_FindChar PyUnicode_Format PyUnicode_FromEncodedObject PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromKindAndData PyUnicode_FromObject PyUnicode_FromOrdinal PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_FromWideChar PyUnicode_GetDefaultEncoding PyUnicode_GetLength PyUnicode_GetSize PyUnicode_InternFromString PyUnicode_InternImmortal PyUnicode_InternInPlace PyUnicode_IsIdentifier PyUnicode_Join PyUnicode_New PyUnicode_Partition PyUnicode_RPartition PyUnicode_RSplit PyUnicode_ReadChar PyUnicode_Replace PyUnicode_Resize PyUnicode_RichCompare PyUnicode_Split PyUnicode_Splitlines PyUnicode_Substring PyUnicode_Tailmatch PyUnicode_Translate PyUnicode_Type DATA PyUnicode_WriteChar PyUnstable_AtExit PyUnstable_Code_GetExtra PyUnstable_Code_New PyUnstable_Code_NewWithPosOnlyArgs PyUnstable_Code_SetExtra PyUnstable_CopyPerfMapFile PyUnstable_Eval_RequestCodeExtraIndex PyUnstable_Exc_PrepReraiseStar PyUnstable_ExecutableKinds DATA PyUnstable_GC_VisitObjects PyUnstable_InterpreterFrame_GetCode PyUnstable_InterpreterFrame_GetLasti PyUnstable_InterpreterFrame_GetLine PyUnstable_InterpreterState_GetMainModule PyUnstable_Long_CompactValue PyUnstable_Long_IsCompact PyUnstable_Object_GC_NewWithExtraData PyUnstable_PerfMapState_Fini PyUnstable_PerfMapState_Init PyUnstable_PerfTrampoline_CompileCode PyUnstable_PerfTrampoline_SetPersistAfterFork PyUnstable_Type_AssignVersionTag PyUnstable_WritePerfMapEntry PyVectorcall_Call PyVectorcall_Function PyVectorcall_NARGS PyWeakref_GetObject PyWeakref_GetRef PyWeakref_NewProxy PyWeakref_NewRef PyWideStringList_Append PyWideStringList_Insert PyWrapperDescr_Type DATA PyWrapper_New PyZip_Type DATA Py_AddPendingCall Py_AtExit Py_BuildValue Py_BytesMain Py_BytesWarningFlag DATA Py_CompileString Py_CompileStringExFlags Py_CompileStringFlags Py_CompileStringObject Py_DebugFlag DATA Py_DecRef Py_DecodeLocale Py_DontWriteBytecodeFlag DATA Py_EncodeLocale Py_EndInterpreter Py_EnterRecursiveCall Py_Exit Py_ExitStatusException Py_FatalError Py_FdIsInteractive Py_FileSystemDefaultEncodeErrors DATA Py_FileSystemDefaultEncoding DATA Py_Finalize Py_FinalizeEx Py_FrozenFlag DATA Py_GETENV Py_GenericAlias Py_GenericAliasType DATA Py_GetArgcArgv Py_GetBuildInfo Py_GetCompiler Py_GetConstant Py_GetConstantBorrowed Py_GetCopyright Py_GetExecPrefix Py_GetPath Py_GetPlatform Py_GetPrefix Py_GetProgramFullPath Py_GetProgramName Py_GetPythonHome Py_GetRecursionLimit Py_GetVersion Py_HasFileSystemDefaultEncoding DATA Py_HashPointer Py_HashRandomizationFlag DATA Py_IgnoreEnvironmentFlag DATA Py_IncRef Py_Initialize Py_InitializeEx Py_InitializeFromConfig Py_InspectFlag DATA Py_InteractiveFlag DATA Py_Is Py_IsFalse Py_IsFinalizing Py_IsInitialized Py_IsNone Py_IsTrue Py_IsolatedFlag DATA Py_LeaveRecursiveCall Py_LegacyWindowsFSEncodingFlag DATA Py_LegacyWindowsStdioFlag DATA Py_Main Py_MakePendingCalls Py_NewInterpreter Py_NewInterpreterFromConfig Py_NewRef Py_NoSiteFlag DATA Py_NoUserSiteDirectory DATA Py_OptimizeFlag DATA Py_PreInitialize Py_PreInitializeFromArgs Py_PreInitializeFromBytesArgs Py_QuietFlag DATA Py_ReprEnter Py_ReprLeave Py_RunMain Py_SetPath Py_SetProgramName Py_SetPythonHome Py_SetRecursionLimit Py_UTF8Mode DATA Py_UnbufferedStdioFlag DATA Py_UniversalNewlineFgets Py_VaBuildValue Py_VerboseFlag DATA Py_Version DATA Py_XNewRef Py_hexdigits DATA _PyAST_Compile _PyArena_AddPyObject _PyArena_Free _PyArena_Malloc _PyArena_New _PyArg_BadArgument _PyArg_CheckPositional _PyArg_NoKeywords _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywords_SizeT _PyArg_ParseTuple_SizeT _PyArg_Parse_SizeT _PyArg_UnpackKeywords _PyArg_UnpackKeywordsWithVararg _PyArg_VaParseTupleAndKeywords_SizeT _PyArg_VaParse_SizeT _PyAsyncGenASend_Type DATA _PyBuffer_ReleaseInInterpreter _PyBuffer_ReleaseInInterpreterAndRawFree _PyByteArray_empty_string DATA _PyBytesWriter_Alloc _PyBytesWriter_Dealloc _PyBytesWriter_Finish _PyBytesWriter_Init _PyBytesWriter_Prepare _PyBytesWriter_Resize _PyBytesWriter_WriteBytes _PyBytes_DecodeEscape _PyBytes_Find _PyBytes_Repeat _PyBytes_Resize _PyBytes_ReverseFind _PyCapsule_SetTraverse _PyCode_CheckLineNumber _PyCode_ConstantKey _PyCompile_Assemble _PyCompile_CleanDoc _PyCompile_CodeGen _PyCompile_GetBinaryIntrinsicName _PyCompile_GetUnaryIntrinsicName _PyCompile_OpcodeHasArg _PyCompile_OpcodeHasConst _PyCompile_OpcodeHasExc _PyCompile_OpcodeHasFree _PyCompile_OpcodeHasJump _PyCompile_OpcodeHasLocal _PyCompile_OpcodeHasName _PyCompile_OpcodeIsValid _PyCompile_OptimizeCfg _PyConfig_AsDict _PyConfig_FromDict _PyConfig_InitCompatConfig _PyContext_NewHamtForTests _PyCoro_GetAwaitableIter _PyCriticalSection2_BeginSlow _PyCriticalSection_BeginSlow _PyCriticalSection_Resume _PyCriticalSection_SuspendAll _PyCrossInterpreterData_Clear _PyCrossInterpreterData_Free _PyCrossInterpreterData_Init _PyCrossInterpreterData_InitWithSize _PyCrossInterpreterData_Lookup _PyCrossInterpreterData_New _PyCrossInterpreterData_NewObject _PyCrossInterpreterData_RegisterClass _PyCrossInterpreterData_Release _PyCrossInterpreterData_ReleaseAndRawFree _PyCrossInterpreterData_UnregisterClass _PyDeadline_Get _PyDeadline_Init _PyDict_DelItem_KnownHash _PyDict_FromItems _PyDict_GetItemStringWithError _PyDict_GetItem_KnownHash _PyDict_LoadGlobal _PyDict_MergeEx _PyDict_NewPresized _PyDict_Pop _PyDict_SetItem_KnownHash _PyDict_SetItem_Take2 _PyDict_SizeOf _PyErr_BadInternalCall _PyErr_ChainExceptions1 _PyErr_Clear _PyErr_ExceptionMatches _PyErr_Format _PyErr_FormatFromCause _PyErr_ProgramDecodedTextObject _PyErr_SetFromPyStatus _PyErr_SetKeyError _PyErr_SetString _PyEvalFramePushAndInit _PyEval_AddPendingCall _PyEval_BinaryOps DATA _PyEval_CheckExceptStarTypeValid _PyEval_CheckExceptTypeValid _PyEval_ConversionFuncs DATA _PyEval_EvalFrameDefault _PyEval_ExceptionGroupMatch _PyEval_FormatAwaitableError _PyEval_FormatExcCheckArg _PyEval_FormatExcUnbound _PyEval_FormatKwargsError _PyEval_FrameClearAndPop _PyEval_GetBuiltin _PyEval_MakePendingCalls _PyEval_MatchClass _PyEval_MatchKeys _PyEval_SetProfile _PyEval_SliceIndex _PyEval_SliceIndexNotNone _PyEval_UnpackIterable _PyEvent_IsSet _PyEvent_Notify _PyFloat_ExactDealloc _PyFrame_IsEntryFrame _PyFunction_SetVersion _PyGen_FetchStopIterationValue _PyGen_SetStopIterationValue _PyGen_yf _PyImport_ClearExtension _PyImport_FrozenBootstrap DATA _PyImport_FrozenStdlib DATA _PyImport_FrozenTest DATA _PyImport_GetModuleAttr _PyImport_GetModuleAttrString _PyImport_SetModule _PyInstructionSequence_New _PyInterpreterConfig_AsDict _PyInterpreterConfig_InitFromDict _PyInterpreterConfig_InitFromState _PyInterpreterConfig_UpdateFromDict _PyInterpreterState_FailIfRunningMain _PyInterpreterState_GetConfigCopy _PyInterpreterState_GetEvalFrameFunc _PyInterpreterState_GetIDObject _PyInterpreterState_GetWhence _PyInterpreterState_IDDecref _PyInterpreterState_IDIncref _PyInterpreterState_IDInitref _PyInterpreterState_IsReady _PyInterpreterState_IsRunningMain _PyInterpreterState_LookUpID _PyInterpreterState_LookUpIDObject _PyInterpreterState_New _PyInterpreterState_ObjectToID _PyInterpreterState_RequireIDRef _PyInterpreterState_RequiresIDRef _PyInterpreterState_SetConfig _PyInterpreterState_SetEvalFrameFunc _PyInterpreterState_SetNotRunningMain _PyInterpreterState_SetRunningMain _PyIntrinsics_BinaryFunctions DATA _PyIntrinsics_UnaryFunctions DATA _PyList_AppendTakeRefListResize _PyList_Extend _PyList_FromArraySteal _PyLong_Add _PyLong_AsByteArray _PyLong_AsTime_t _PyLong_Copy _PyLong_DigitValue DATA _PyLong_DivmodNear _PyLong_FileDescriptor_Converter _PyLong_Format _PyLong_Frexp _PyLong_FromByteArray _PyLong_FromDigits _PyLong_FromTime_t _PyLong_GCD _PyLong_Lshift _PyLong_Multiply _PyLong_New _PyLong_NumBits _PyLong_Rshift _PyLong_Sign _PyLong_Size_t_Converter _PyLong_Subtract _PyLong_UnsignedInt_Converter _PyLong_UnsignedLongLong_Converter _PyLong_UnsignedLong_Converter _PyLong_UnsignedShort_Converter _PyMem_GetCurrentAllocatorName _PyMem_Strdup _PyMonitoring_FireBranchEvent _PyMonitoring_FireCRaiseEvent _PyMonitoring_FireCReturnEvent _PyMonitoring_FireCallEvent _PyMonitoring_FireExceptionHandledEvent _PyMonitoring_FireJumpEvent _PyMonitoring_FireLineEvent _PyMonitoring_FirePyResumeEvent _PyMonitoring_FirePyReturnEvent _PyMonitoring_FirePyStartEvent _PyMonitoring_FirePyThrowEvent _PyMonitoring_FirePyUnwindEvent _PyMonitoring_FirePyYieldEvent _PyMonitoring_FireRaiseEvent _PyMonitoring_FireReraiseEvent _PyMonitoring_FireStopIterationEvent _PyMutex_LockSlow _PyMutex_UnlockSlow _PyNamespace_New _PyNone_Type DATA _PyNotImplemented_Type DATA _PyNumber_Index _PyOS_IsMainThread _PyOS_ReadlineTState DATA _PyOS_SigintEvent _PyOS_URandomNonblock _PyObject_AssertFailed _PyObject_CallFunction_SizeT _PyObject_CallMethod _PyObject_CallMethodId _PyObject_CallMethod_SizeT _PyObject_CheckCrossInterpreterData _PyObject_DebugMallocStats _PyObject_Dump _PyObject_FunctionStr _PyObject_GC_New _PyObject_GC_NewVar _PyObject_GC_Resize _PyObject_GenericGetAttrWithDict _PyObject_GenericSetAttrWithDict _PyObject_GetAttrId _PyObject_GetCrossInterpreterData _PyObject_GetDictPtr _PyObject_GetMethod _PyObject_GetState _PyObject_IsFreed _PyObject_LookupSpecial _PyObject_MakeTpCall _PyObject_New _PyObject_NewVar _PyObject_SetManagedDict _PyOnceFlag_CallOnceSlow _PyParkingLot_AfterFork _PyParkingLot_Park _PyParkingLot_Unpark _PyParkingLot_UnparkAll _PyParser_TokenNames DATA _PyPathConfig_ClearGlobal _PyPreConfig_InitCompatConfig _PyRWMutex_Lock _PyRWMutex_RLock _PyRWMutex_RUnlock _PyRWMutex_Unlock _PyRuntime DATA _PySemaphore_Destroy _PySemaphore_Init _PySemaphore_Wait _PySemaphore_Wakeup _PySeqLock_AbandonWrite _PySeqLock_AfterFork _PySeqLock_BeginRead _PySeqLock_EndRead _PySeqLock_LockWrite _PySeqLock_UnlockWrite _PySet_Contains _PySet_Dummy DATA _PySet_NextEntry _PySet_NextEntryRef _PySet_Update _PySlice_FromIndices _PySlice_GetLongIndices _PyStack_AsDict _PyState_AddModule _PyStaticType_FiniForExtension _PyStaticType_InitForExtension _PyStructSequence_NewType _PySuper_Lookup _PySys_GetAttr _PySys_GetSizeOf _PyThreadState_GetCurrent _PyThreadState_GetDict _PyThreadState_Init _PyThreadState_PopFrame _PyThreadState_Prealloc _PyThread_CurrentFrames _PyTime_AsLong _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_clamp _PyTime_FromLong _PyTime_FromMillisecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_MonotonicWithInfo _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _PyToken_OneChar _PyToken_ThreeChars _PyToken_TwoChars _PyTraceMalloc_GetTraceback _PyTraceback_Add _PyTrash_thread_deposit_object _PyTrash_thread_destroy_chain _PyTuple_FromArraySteal _PyTuple_Resize _PyType_GetDict _PyType_GetModuleByDef2 _PyType_Lookup _PyType_LookupRef _PyType_Name _PyUnicodeWriter_Dealloc _PyUnicodeWriter_Finish _PyUnicodeWriter_Init _PyUnicodeWriter_PrepareInternal _PyUnicodeWriter_PrepareKindInternal _PyUnicodeWriter_WriteASCIIString _PyUnicodeWriter_WriteChar _PyUnicodeWriter_WriteLatin1String _PyUnicodeWriter_WriteStr _PyUnicodeWriter_WriteSubstring _PyUnicode_AsUTF8NoNUL _PyUnicode_AsUTF8String _PyUnicode_CheckConsistency _PyUnicode_Copy _PyUnicode_DecodeUnicodeEscapeInternal _PyUnicode_EncodeUTF16 _PyUnicode_EncodeUTF32 _PyUnicode_Equal _PyUnicode_EqualToASCIIString _PyUnicode_ExactDealloc _PyUnicode_FromId _PyUnicode_IsAlpha _PyUnicode_IsDecimalDigit _PyUnicode_IsDigit _PyUnicode_IsLinebreak _PyUnicode_IsLowercase _PyUnicode_IsNumeric _PyUnicode_IsPrintable _PyUnicode_IsTitlecase _PyUnicode_IsUppercase _PyUnicode_IsWhitespace _PyUnicode_JoinArray _PyUnicode_ScanIdentifier _PyUnicode_ToDecimalDigit _PyUnicode_ToDigit _PyUnicode_ToLowercase _PyUnicode_ToNumeric _PyUnicode_ToTitlecase _PyUnicode_ToUppercase _PyUnicode_TransformDecimalAndSpaceToASCII _PyUnion_Type DATA _PyWeakref_CallableProxyType DATA _PyWeakref_ClearRef _PyWeakref_IsDead _PyWeakref_ProxyType DATA _PyWeakref_RefType DATA _PyXI_ApplyCapturedException _PyXI_ApplyError _PyXI_ApplyNamespace _PyXI_ClearExcInfo _PyXI_EndInterpreter _PyXI_Enter _PyXI_ExcInfoAsObject _PyXI_Exit _PyXI_FillNamespaceFromDict _PyXI_FormatExcInfo _PyXI_FreeNamespace _PyXI_HasCapturedException _PyXI_InitExcInfo _PyXI_NamespaceFromNames _PyXI_NewInterpreter _Py_BreakPoint _Py_BuildValue_SizeT _Py_CheckFunctionResult _Py_CheckRecursiveCall _Py_Dealloc _Py_DecRef _Py_DecodeLocaleEx _Py_DisplaySourceLine _Py_EllipsisObject DATA _Py_EncodeLocaleEx _Py_FalseStruct DATA _Py_FatalErrorFunc _Py_FatalRefcountErrorFunc _Py_GetConfig _Py_GetConfigsAsDict _Py_GetErrorHandler _Py_Get_Getpath_CodeObject _Py_HandlePending _Py_HashBytes _Py_HashDouble _Py_HashSecret DATA _Py_IncRef _Py_InitializeMain _Py_IsInterpreterFinalizing _Py_IsValidFD _Py_MakeCoro _Py_NewReference _Py_NewReferenceNoTotal _Py_NoneStruct DATA _Py_NotImplementedStruct DATA _Py_RestoreSignals _Py_ResurrectReference _Py_SetLocaleFromEnv _Py_SetRefcnt _Py_SwappedOp DATA _Py_TrueStruct DATA _Py_UTF8_Edit_Cost _Py_UniversalNewlineFgetsWithSize _Py_VaBuildValue_SizeT _Py_ascii_whitespace DATA _Py_c_abs _Py_c_diff _Py_c_neg _Py_c_pow _Py_c_prod _Py_c_quot _Py_c_sum _Py_closerange _Py_convert_optional_to_ssize_t _Py_ctype_table DATA _Py_ctype_tolower DATA _Py_ctype_toupper DATA _Py_dup _Py_fopen_obj _Py_fstat _Py_fstat_noraise _Py_get_osfhandle _Py_hashtable_clear _Py_hashtable_compare_direct _Py_hashtable_destroy _Py_hashtable_foreach _Py_hashtable_get _Py_hashtable_hash_ptr _Py_hashtable_len _Py_hashtable_new _Py_hashtable_new_full _Py_hashtable_set _Py_hashtable_size _Py_hashtable_steal _Py_normpath _Py_open _Py_open_noraise _Py_set_inheritable _Py_set_inheritable_async_safe _Py_stat _Py_strhex _Py_strhex_bytes_with_sep _Py_union_type_or _Py_write _Py_write_noraise python3-dll-a-0.2.10/src/python37.def000064400000000000000000001010711046102023000152410ustar 00000000000000; ; Definition file of python37.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "python37.dll" EXPORTS PyAST_Compile PyAST_CompileEx PyAST_CompileObject PyAST_FromNode PyAST_FromNodeObject PyAST_Validate PyArena_AddPyObject PyArena_Free PyArena_Malloc PyArena_New PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyArg_UnpackTuple PyArg_VaParse PyArg_VaParseTupleAndKeywords PyArg_ValidateKeywordArguments PyAsyncGen_Fini PyAsyncGen_New PyAsyncGen_Type DATA PyBaseObject_Type DATA PyBool_FromLong PyBool_Type DATA PyBuffer_FillContiguousStrides PyBuffer_FillInfo PyBuffer_FromContiguous PyBuffer_GetPointer PyBuffer_IsContiguous PyBuffer_Release PyBuffer_ToContiguous PyByteArrayIter_Type DATA PyByteArray_AsString PyByteArray_Concat PyByteArray_Fini PyByteArray_FromObject PyByteArray_FromStringAndSize PyByteArray_Init PyByteArray_Resize PyByteArray_Size PyByteArray_Type DATA PyBytesIter_Type DATA PyBytes_AsString PyBytes_AsStringAndSize PyBytes_Concat PyBytes_ConcatAndDel PyBytes_DecodeEscape PyBytes_Fini PyBytes_FromFormat PyBytes_FromFormatV PyBytes_FromObject PyBytes_FromString PyBytes_FromStringAndSize PyBytes_Repr PyBytes_Size PyBytes_Type DATA PyCFunction_Call PyCFunction_ClearFreeList PyCFunction_Fini PyCFunction_GetFlags PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_New PyCFunction_NewEx PyCFunction_Type DATA PyCallIter_New PyCallIter_Type DATA PyCallable_Check PyCapsule_GetContext PyCapsule_GetDestructor PyCapsule_GetName PyCapsule_GetPointer PyCapsule_Import PyCapsule_IsValid PyCapsule_New PyCapsule_SetContext PyCapsule_SetDestructor PyCapsule_SetName PyCapsule_SetPointer PyCapsule_Type DATA PyCell_Get PyCell_New PyCell_Set PyCell_Type DATA PyClassMethodDescr_Type DATA PyClassMethod_New PyClassMethod_Type DATA PyCode_Addr2Line PyCode_New PyCode_NewEmpty PyCode_Optimize PyCode_Type DATA PyCodec_BackslashReplaceErrors PyCodec_Decode PyCodec_Decoder PyCodec_Encode PyCodec_Encoder PyCodec_IgnoreErrors PyCodec_IncrementalDecoder PyCodec_IncrementalEncoder PyCodec_KnownEncoding PyCodec_LookupError PyCodec_NameReplaceErrors PyCodec_Register PyCodec_RegisterError PyCodec_ReplaceErrors PyCodec_StreamReader PyCodec_StreamWriter PyCodec_StrictErrors PyCodec_XMLCharRefReplaceErrors PyCompile_OpcodeStackEffect PyComplex_AsCComplex PyComplex_FromCComplex PyComplex_FromDoubles PyComplex_ImagAsDouble PyComplex_RealAsDouble PyComplex_Type DATA PyContextToken_Type DATA PyContextVar_Get PyContextVar_New PyContextVar_Reset PyContextVar_Set PyContextVar_Type DATA PyContext_ClearFreeList PyContext_Copy PyContext_CopyCurrent PyContext_Enter PyContext_Exit PyContext_New PyContext_Type DATA PyCoro_New PyCoro_Type DATA PyDescr_NewClassMethod PyDescr_NewGetSet PyDescr_NewMember PyDescr_NewMethod PyDescr_NewWrapper PyDictItems_Type DATA PyDictIterItem_Type DATA PyDictIterKey_Type DATA PyDictIterValue_Type DATA PyDictKeys_Type DATA PyDictProxy_New PyDictProxy_Type DATA PyDictValues_Type DATA PyDict_Clear PyDict_ClearFreeList PyDict_Contains PyDict_Copy PyDict_DelItem PyDict_DelItemString PyDict_Fini PyDict_GetItem PyDict_GetItemString PyDict_GetItemWithError PyDict_Items PyDict_Keys PyDict_Merge PyDict_MergeFromSeq2 PyDict_New PyDict_Next PyDict_SetDefault PyDict_SetItem PyDict_SetItemString PyDict_Size PyDict_Type DATA PyDict_Update PyDict_Values PyEllipsis_Type DATA PyEnum_Type DATA PyErr_BadArgument PyErr_BadInternalCall PyErr_CheckSignals PyErr_Clear PyErr_Display PyErr_ExceptionMatches PyErr_Fetch PyErr_Format PyErr_FormatV PyErr_GetExcInfo PyErr_GivenExceptionMatches PyErr_NewException PyErr_NewExceptionWithDoc PyErr_NoMemory PyErr_NormalizeException PyErr_Occurred PyErr_Print PyErr_PrintEx PyErr_ProgramText PyErr_ProgramTextObject PyErr_ResourceWarning PyErr_Restore PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetExcFromWindowsErrWithUnicodeFilename PyErr_SetExcInfo PyErr_SetFromErrno PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilenameObject PyErr_SetFromErrnoWithFilenameObjects PyErr_SetFromErrnoWithUnicodeFilename PyErr_SetFromWindowsErr PyErr_SetFromWindowsErrWithFilename PyErr_SetFromWindowsErrWithUnicodeFilename PyErr_SetImportError PyErr_SetImportErrorSubclass PyErr_SetInterrupt PyErr_SetNone PyErr_SetObject PyErr_SetString PyErr_SyntaxLocation PyErr_SyntaxLocationEx PyErr_SyntaxLocationObject PyErr_Warn PyErr_WarnEx PyErr_WarnExplicit PyErr_WarnExplicitFormat PyErr_WarnExplicitObject PyErr_WarnFormat PyErr_WriteUnraisable PyEval_AcquireLock PyEval_AcquireThread PyEval_CallFunction PyEval_CallMethod PyEval_CallObjectWithKeywords PyEval_EvalCode PyEval_EvalCodeEx PyEval_EvalFrame PyEval_EvalFrameEx PyEval_GetBuiltins PyEval_GetFrame PyEval_GetFuncDesc PyEval_GetFuncName PyEval_GetGlobals PyEval_GetLocals PyEval_InitThreads PyEval_MergeCompilerFlags PyEval_ReInitThreads PyEval_ReleaseLock PyEval_ReleaseThread PyEval_RestoreThread PyEval_SaveThread PyEval_SetProfile PyEval_SetTrace PyEval_ThreadsInitialized PyExc_ArithmeticError DATA PyExc_AssertionError DATA PyExc_AttributeError DATA PyExc_BaseException DATA PyExc_BlockingIOError DATA PyExc_BrokenPipeError DATA PyExc_BufferError DATA PyExc_BytesWarning DATA PyExc_ChildProcessError DATA PyExc_ConnectionAbortedError DATA PyExc_ConnectionError DATA PyExc_ConnectionRefusedError DATA PyExc_ConnectionResetError DATA PyExc_DeprecationWarning DATA PyExc_EOFError DATA PyExc_EnvironmentError DATA PyExc_Exception DATA PyExc_FileExistsError DATA PyExc_FileNotFoundError DATA PyExc_FloatingPointError DATA PyExc_FutureWarning DATA PyExc_GeneratorExit DATA PyExc_IOError DATA PyExc_ImportError DATA PyExc_ImportWarning DATA PyExc_IndentationError DATA PyExc_IndexError DATA PyExc_InterruptedError DATA PyExc_IsADirectoryError DATA PyExc_KeyError DATA PyExc_KeyboardInterrupt DATA PyExc_LookupError DATA PyExc_MemoryError DATA PyExc_ModuleNotFoundError DATA PyExc_NameError DATA PyExc_NotADirectoryError DATA PyExc_NotImplementedError DATA PyExc_OSError DATA PyExc_OverflowError DATA PyExc_PendingDeprecationWarning DATA PyExc_PermissionError DATA PyExc_ProcessLookupError DATA PyExc_RecursionError DATA PyExc_ReferenceError DATA PyExc_ResourceWarning DATA PyExc_RuntimeError DATA PyExc_RuntimeWarning DATA PyExc_StopAsyncIteration DATA PyExc_StopIteration DATA PyExc_SyntaxError DATA PyExc_SyntaxWarning DATA PyExc_SystemError DATA PyExc_SystemExit DATA PyExc_TabError DATA PyExc_TimeoutError DATA PyExc_TypeError DATA PyExc_UnboundLocalError DATA PyExc_UnicodeDecodeError DATA PyExc_UnicodeEncodeError DATA PyExc_UnicodeError DATA PyExc_UnicodeTranslateError DATA PyExc_UnicodeWarning DATA PyExc_UserWarning DATA PyExc_ValueError DATA PyExc_Warning DATA PyExc_WindowsError DATA PyExc_ZeroDivisionError DATA PyException_GetCause PyException_GetContext PyException_GetTraceback PyException_SetCause PyException_SetContext PyException_SetTraceback PyFile_FromFd PyFile_GetLine PyFile_NewStdPrinter PyFile_WriteObject PyFile_WriteString PyFilter_Type DATA PyFloat_AsDouble PyFloat_ClearFreeList PyFloat_Fini PyFloat_FromDouble PyFloat_FromString PyFloat_GetInfo PyFloat_GetMax PyFloat_GetMin PyFloat_Type DATA PyFrame_BlockPop PyFrame_BlockSetup PyFrame_ClearFreeList PyFrame_FastToLocals PyFrame_FastToLocalsWithError PyFrame_Fini PyFrame_GetLineNumber PyFrame_LocalsToFast PyFrame_New PyFrame_Type DATA PyFrozenSet_New PyFrozenSet_Type DATA PyFunction_GetAnnotations PyFunction_GetClosure PyFunction_GetCode PyFunction_GetDefaults PyFunction_GetGlobals PyFunction_GetKwDefaults PyFunction_GetModule PyFunction_New PyFunction_NewWithQualName PyFunction_SetAnnotations PyFunction_SetClosure PyFunction_SetDefaults PyFunction_SetKwDefaults PyFunction_Type DATA PyFuture_FromAST PyFuture_FromASTObject PyGC_Collect PyGILState_Check PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release PyGen_NeedsFinalizing PyGen_New PyGen_NewWithQualName PyGen_Type DATA PyGetSetDescr_Type DATA PyHash_GetFuncDef PyImport_AddModule PyImport_AddModuleObject PyImport_AppendInittab PyImport_Cleanup PyImport_ExecCodeModule PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleObject PyImport_ExecCodeModuleWithPathnames PyImport_ExtendInittab PyImport_FrozenModules DATA PyImport_GetImporter PyImport_GetMagicNumber PyImport_GetMagicTag PyImport_GetModule PyImport_GetModuleDict PyImport_Import PyImport_ImportFrozenModule PyImport_ImportFrozenModuleObject PyImport_ImportModule PyImport_ImportModuleLevel PyImport_ImportModuleLevelObject PyImport_ImportModuleNoBlock PyImport_Inittab DATA PyImport_ReloadModule PyInstanceMethod_Function PyInstanceMethod_New PyInstanceMethod_Type DATA PyInterpreterState_Clear PyInterpreterState_Delete PyInterpreterState_GetID PyInterpreterState_Head PyInterpreterState_Main PyInterpreterState_New PyInterpreterState_Next PyInterpreterState_ThreadHead PyIter_Next PyListIter_Type DATA PyListRevIter_Type DATA PyList_Append PyList_AsTuple PyList_ClearFreeList PyList_Fini PyList_GetItem PyList_GetSlice PyList_Insert PyList_New PyList_Reverse PyList_SetItem PyList_SetSlice PyList_Size PyList_Sort PyList_Type DATA PyLongRangeIter_Type DATA PyLong_AsDouble PyLong_AsLong PyLong_AsLongAndOverflow PyLong_AsLongLong PyLong_AsLongLongAndOverflow PyLong_AsSize_t PyLong_AsSsize_t PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongMask PyLong_AsVoidPtr PyLong_FromDouble PyLong_FromLong PyLong_FromLongLong PyLong_FromSize_t PyLong_FromSsize_t PyLong_FromString PyLong_FromUnicode PyLong_FromUnicodeObject PyLong_FromUnsignedLong PyLong_FromUnsignedLongLong PyLong_FromVoidPtr PyLong_GetInfo PyLong_Type DATA PyMap_Type DATA PyMapping_Check PyMapping_GetItemString PyMapping_HasKey PyMapping_HasKeyString PyMapping_Items PyMapping_Keys PyMapping_Length PyMapping_SetItemString PyMapping_Size PyMapping_Values PyMarshal_ReadLastObjectFromFile PyMarshal_ReadLongFromFile PyMarshal_ReadObjectFromFile PyMarshal_ReadObjectFromString PyMarshal_ReadShortFromFile PyMarshal_WriteLongToFile PyMarshal_WriteObjectToFile PyMarshal_WriteObjectToString PyMem_Calloc PyMem_Free PyMem_GetAllocator PyMem_Malloc PyMem_RawCalloc PyMem_RawFree PyMem_RawMalloc PyMem_RawRealloc PyMem_Realloc PyMem_SetAllocator PyMem_SetupDebugHooks PyMemberDescr_Type DATA PyMember_GetOne PyMember_SetOne PyMemoryView_FromBuffer PyMemoryView_FromMemory PyMemoryView_FromObject PyMemoryView_GetContiguous PyMemoryView_Type DATA PyMethodDescr_Type DATA PyMethod_ClearFreeList PyMethod_Fini PyMethod_Function PyMethod_New PyMethod_Self PyMethod_Type DATA PyModuleDef_Init PyModuleDef_Type DATA PyModule_AddFunctions PyModule_AddIntConstant PyModule_AddObject PyModule_AddStringConstant PyModule_Create2 PyModule_ExecDef PyModule_FromDefAndSpec2 PyModule_GetDef PyModule_GetDict PyModule_GetFilename PyModule_GetFilenameObject PyModule_GetName PyModule_GetNameObject PyModule_GetState PyModule_New PyModule_NewObject PyModule_SetDocString PyModule_Type DATA PyNode_AddChild PyNode_Compile PyNode_Free PyNode_ListTree PyNode_New PyNumber_Absolute PyNumber_Add PyNumber_And PyNumber_AsSsize_t PyNumber_Check PyNumber_Divmod PyNumber_Float PyNumber_FloorDivide PyNumber_InPlaceAdd PyNumber_InPlaceAnd PyNumber_InPlaceFloorDivide PyNumber_InPlaceLshift PyNumber_InPlaceMatrixMultiply PyNumber_InPlaceMultiply PyNumber_InPlaceOr PyNumber_InPlacePower PyNumber_InPlaceRemainder PyNumber_InPlaceRshift PyNumber_InPlaceSubtract PyNumber_InPlaceTrueDivide PyNumber_InPlaceXor PyNumber_Index PyNumber_Invert PyNumber_Long PyNumber_Lshift PyNumber_MatrixMultiply PyNumber_Multiply PyNumber_Negative PyNumber_Or PyNumber_Positive PyNumber_Power PyNumber_Remainder PyNumber_Rshift PyNumber_Subtract PyNumber_ToBase PyNumber_TrueDivide PyNumber_Xor PyODictItems_Type DATA PyODictIter_Type DATA PyODictKeys_Type DATA PyODictValues_Type DATA PyODict_DelItem PyODict_New PyODict_SetItem PyODict_Type DATA PyOS_AfterFork PyOS_FSPath PyOS_FiniInterrupts PyOS_InitInterrupts PyOS_InputHook DATA PyOS_InterruptOccurred PyOS_Readline PyOS_ReadlineFunctionPointer DATA PyOS_double_to_string PyOS_getsig PyOS_mystricmp PyOS_mystrnicmp PyOS_setsig PyOS_snprintf PyOS_string_to_double PyOS_strtol PyOS_strtoul PyOS_vsnprintf PyObject_ASCII PyObject_AsCharBuffer PyObject_AsFileDescriptor PyObject_AsReadBuffer PyObject_AsWriteBuffer PyObject_Bytes PyObject_Call PyObject_CallFinalizer PyObject_CallFinalizerFromDealloc PyObject_CallFunction PyObject_CallFunctionObjArgs PyObject_CallMethod PyObject_CallMethodObjArgs PyObject_CallObject PyObject_Calloc PyObject_CheckReadBuffer PyObject_ClearWeakRefs PyObject_CopyData PyObject_DelItem PyObject_DelItemString PyObject_Dir PyObject_Format PyObject_Free PyObject_GC_Del PyObject_GC_Track PyObject_GC_UnTrack PyObject_GenericGetAttr PyObject_GenericGetDict PyObject_GenericSetAttr PyObject_GenericSetDict PyObject_GetArenaAllocator PyObject_GetAttr PyObject_GetAttrString PyObject_GetBuffer PyObject_GetItem PyObject_GetIter PyObject_HasAttr PyObject_HasAttrString PyObject_Hash PyObject_HashNotImplemented PyObject_Init PyObject_InitVar PyObject_IsInstance PyObject_IsSubclass PyObject_IsTrue PyObject_Length PyObject_LengthHint PyObject_Malloc PyObject_Not PyObject_Print PyObject_Realloc PyObject_Repr PyObject_RichCompare PyObject_RichCompareBool PyObject_SelfIter PyObject_SetArenaAllocator PyObject_SetAttr PyObject_SetAttrString PyObject_SetItem PyObject_Size PyObject_Str PyObject_Type PyParser_ASTFromFile PyParser_ASTFromFileObject PyParser_ASTFromString PyParser_ASTFromStringObject PyParser_ClearError PyParser_ParseFile PyParser_ParseFileFlags PyParser_ParseFileFlagsEx PyParser_ParseFileObject PyParser_ParseString PyParser_ParseStringFlags PyParser_ParseStringFlagsFilename PyParser_ParseStringFlagsFilenameEx PyParser_ParseStringObject PyParser_SetError PyParser_SimpleParseFile PyParser_SimpleParseFileFlags PyParser_SimpleParseString PyParser_SimpleParseStringFlags PyParser_SimpleParseStringFlagsFilename PyProperty_Type DATA PyRangeIter_Type DATA PyRange_Type DATA PyReversed_Type DATA PyRun_AnyFile PyRun_AnyFileEx PyRun_AnyFileExFlags PyRun_AnyFileFlags PyRun_File PyRun_FileEx PyRun_FileExFlags PyRun_FileFlags PyRun_InteractiveLoop PyRun_InteractiveLoopFlags PyRun_InteractiveOne PyRun_InteractiveOneFlags PyRun_InteractiveOneObject PyRun_SimpleFile PyRun_SimpleFileEx PyRun_SimpleFileExFlags PyRun_SimpleString PyRun_SimpleStringFlags PyRun_String PyRun_StringFlags PySTEntry_Type DATA PyST_GetScope PySeqIter_New PySeqIter_Type DATA PySequence_Check PySequence_Concat PySequence_Contains PySequence_Count PySequence_DelItem PySequence_DelSlice PySequence_Fast PySequence_GetItem PySequence_GetSlice PySequence_In PySequence_InPlaceConcat PySequence_InPlaceRepeat PySequence_Index PySequence_Length PySequence_List PySequence_Repeat PySequence_SetItem PySequence_SetSlice PySequence_Size PySequence_Tuple PySetIter_Type DATA PySet_Add PySet_Clear PySet_ClearFreeList PySet_Contains PySet_Discard PySet_Fini PySet_New PySet_Pop PySet_Size PySet_Type DATA PySlice_AdjustIndices PySlice_Fini PySlice_GetIndices PySlice_GetIndicesEx PySlice_New PySlice_Type DATA PySlice_Unpack PyState_AddModule PyState_FindModule PyState_RemoveModule PyStaticMethod_New PyStaticMethod_Type DATA PyStdPrinter_Type DATA PyStructSequence_GetItem PyStructSequence_InitType PyStructSequence_InitType2 PyStructSequence_New PyStructSequence_NewType PyStructSequence_SetItem PySuper_Type DATA PySymtable_Build PySymtable_BuildObject PySymtable_Free PySymtable_Lookup PySys_AddWarnOption PySys_AddWarnOptionUnicode PySys_AddXOption PySys_FormatStderr PySys_FormatStdout PySys_GetObject PySys_GetXOptions PySys_HasWarnOptions PySys_ResetWarnOptions PySys_SetArgv PySys_SetArgvEx PySys_SetObject PySys_SetPath PySys_WriteStderr PySys_WriteStdout PyThreadState_Clear PyThreadState_Delete PyThreadState_DeleteCurrent PyThreadState_Get PyThreadState_GetDict PyThreadState_New PyThreadState_Next PyThreadState_SetAsyncExc PyThreadState_Swap PyThread_GetInfo PyThread_ReInitTLS PyThread_acquire_lock PyThread_acquire_lock_timed PyThread_allocate_lock PyThread_create_key PyThread_delete_key PyThread_delete_key_value PyThread_exit_thread PyThread_free_lock PyThread_get_key_value PyThread_get_stacksize PyThread_get_thread_ident PyThread_init_thread PyThread_release_lock PyThread_set_key_value PyThread_set_stacksize PyThread_start_new_thread PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyToken_OneChar PyToken_ThreeChars PyToken_TwoChars PyTraceBack_Here PyTraceBack_Print PyTraceBack_Type DATA PyTraceMalloc_Track PyTraceMalloc_Untrack PyTupleIter_Type DATA PyTuple_ClearFreeList PyTuple_Fini PyTuple_GetItem PyTuple_GetSlice PyTuple_New PyTuple_Pack PyTuple_SetItem PyTuple_Size PyTuple_Type DATA PyType_ClearCache PyType_FromSpec PyType_FromSpecWithBases PyType_GenericAlloc PyType_GenericNew PyType_GetFlags PyType_GetSlot PyType_IsSubtype PyType_Modified PyType_Ready PyType_Type DATA PyUnicodeDecodeError_Create PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetStart PyUnicodeEncodeError_Create PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetStart PyUnicodeIter_Type DATA PyUnicodeTranslateError_Create PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetStart PyUnicode_Append PyUnicode_AppendAndDel PyUnicode_AsASCIIString PyUnicode_AsCharmapString PyUnicode_AsDecodedObject PyUnicode_AsDecodedUnicode PyUnicode_AsEncodedObject PyUnicode_AsEncodedString PyUnicode_AsEncodedUnicode PyUnicode_AsLatin1String PyUnicode_AsMBCSString PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsUCS4 PyUnicode_AsUCS4Copy PyUnicode_AsUTF16String PyUnicode_AsUTF32String PyUnicode_AsUTF8 PyUnicode_AsUTF8AndSize PyUnicode_AsUTF8String PyUnicode_AsUnicode PyUnicode_AsUnicodeAndSize PyUnicode_AsUnicodeCopy PyUnicode_AsUnicodeEscapeString PyUnicode_AsWideChar PyUnicode_AsWideCharString PyUnicode_BuildEncodingMap PyUnicode_ClearFreeList PyUnicode_Compare PyUnicode_CompareWithASCIIString PyUnicode_Concat PyUnicode_Contains PyUnicode_CopyCharacters PyUnicode_Count PyUnicode_Decode PyUnicode_DecodeASCII PyUnicode_DecodeCharmap PyUnicode_DecodeCodePageStateful PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeLatin1 PyUnicode_DecodeLocale PyUnicode_DecodeLocaleAndSize PyUnicode_DecodeMBCS PyUnicode_DecodeMBCSStateful PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUnicodeEscape PyUnicode_Encode PyUnicode_EncodeASCII PyUnicode_EncodeCharmap PyUnicode_EncodeCodePage PyUnicode_EncodeDecimal PyUnicode_EncodeFSDefault PyUnicode_EncodeLatin1 PyUnicode_EncodeLocale PyUnicode_EncodeMBCS PyUnicode_EncodeRawUnicodeEscape PyUnicode_EncodeUTF16 PyUnicode_EncodeUTF32 PyUnicode_EncodeUTF7 PyUnicode_EncodeUTF8 PyUnicode_EncodeUnicodeEscape PyUnicode_FSConverter PyUnicode_FSDecoder PyUnicode_Fill PyUnicode_Find PyUnicode_FindChar PyUnicode_Format PyUnicode_FromEncodedObject PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromKindAndData PyUnicode_FromObject PyUnicode_FromOrdinal PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_FromUnicode PyUnicode_FromWideChar PyUnicode_GetDefaultEncoding PyUnicode_GetLength PyUnicode_GetMax PyUnicode_GetSize PyUnicode_InternFromString PyUnicode_InternImmortal PyUnicode_InternInPlace PyUnicode_IsIdentifier PyUnicode_Join PyUnicode_New PyUnicode_Partition PyUnicode_RPartition PyUnicode_RSplit PyUnicode_ReadChar PyUnicode_Replace PyUnicode_Resize PyUnicode_RichCompare PyUnicode_Split PyUnicode_Splitlines PyUnicode_Substring PyUnicode_Tailmatch PyUnicode_TransformDecimalToASCII PyUnicode_Translate PyUnicode_TranslateCharmap PyUnicode_Type DATA PyUnicode_WriteChar PyWeakref_GetObject PyWeakref_NewProxy PyWeakref_NewRef PyWrapperDescr_Type DATA PyWrapper_New PyZip_Type DATA Py_AddPendingCall Py_AtExit Py_BuildValue Py_BytesWarningFlag DATA Py_CompileString Py_CompileStringExFlags Py_CompileStringFlags Py_CompileStringObject Py_DebugFlag DATA Py_DecRef Py_DecodeLocale Py_DontWriteBytecodeFlag DATA Py_EncodeLocale Py_EndInterpreter Py_Exit Py_FatalError Py_FdIsInteractive Py_FileSystemDefaultEncodeErrors DATA Py_FileSystemDefaultEncoding DATA Py_Finalize Py_FinalizeEx Py_FrozenFlag DATA Py_GetBuildInfo Py_GetCompiler Py_GetCopyright Py_GetExecPrefix Py_GetPath Py_GetPlatform Py_GetPrefix Py_GetProgramFullPath Py_GetProgramName Py_GetPythonHome Py_GetRecursionLimit Py_GetVersion Py_HasFileSystemDefaultEncoding DATA Py_HashRandomizationFlag DATA Py_IgnoreEnvironmentFlag DATA Py_IncRef Py_Initialize Py_InitializeEx Py_InspectFlag DATA Py_InteractiveFlag DATA Py_IsInitialized Py_IsolatedFlag DATA Py_LegacyWindowsFSEncodingFlag DATA Py_LegacyWindowsStdioFlag DATA Py_Main Py_MakePendingCalls Py_NewInterpreter Py_NoSiteFlag DATA Py_NoUserSiteDirectory DATA Py_OptimizeFlag DATA Py_QuietFlag DATA Py_ReprEnter Py_ReprLeave Py_SetPath Py_SetProgramName Py_SetPythonHome Py_SetRecursionLimit Py_SetStandardStreamEncoding Py_SymtableString Py_SymtableStringObject Py_UNICODE_strcat Py_UNICODE_strchr Py_UNICODE_strcmp Py_UNICODE_strcpy Py_UNICODE_strlen Py_UNICODE_strncmp Py_UNICODE_strncpy Py_UNICODE_strrchr Py_UTF8Mode DATA Py_UnbufferedStdioFlag DATA Py_UniversalNewlineFgets Py_VaBuildValue Py_VerboseFlag DATA Py_hexdigits DATA _PyAST_Optimize _PyAccu_Accumulate _PyAccu_Destroy _PyAccu_Finish _PyAccu_FinishAsList _PyAccu_Init _PyArg_NoKeywords _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseStackAndKeywords_SizeT _PyArg_ParseStack_SizeT _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywordsFast_SizeT _PyArg_ParseTupleAndKeywords_SizeT _PyArg_ParseTuple_SizeT _PyArg_Parse_SizeT _PyArg_UnpackStack _PyArg_VaParseTupleAndKeywordsFast _PyArg_VaParseTupleAndKeywordsFast_SizeT _PyArg_VaParseTupleAndKeywords_SizeT _PyArg_VaParse_SizeT _PyAsyncGenASend_Type DATA _PyAsyncGenAThrow_Type DATA _PyAsyncGenWrappedValue_Type DATA _PyBuiltin_Init _PyByteArray_empty_string DATA _PyBytesWriter_Alloc _PyBytesWriter_Dealloc _PyBytesWriter_Finish _PyBytesWriter_Init _PyBytesWriter_Prepare _PyBytesWriter_Resize _PyBytesWriter_WriteBytes _PyBytes_DecodeEscape _PyBytes_FormatEx _PyBytes_FromHex _PyBytes_Join _PyBytes_Resize _PyCFunction_DebugMallocStats _PyCFunction_FastCallDict _PyCFunction_FastCallKeywords _PyCode_CheckLineNumber _PyCode_ConstantKey _PyCode_GetExtra _PyCode_SetExtra _PyCodecInfo_GetIncrementalDecoder _PyCodecInfo_GetIncrementalEncoder _PyCodec_DecodeText _PyCodec_EncodeText _PyCodec_Forget _PyCodec_Lookup _PyCodec_LookupTextEncoding _PyComplex_FormatAdvancedWriter _PyContext_NewHamtForTests _PyCoreConfig_AsDict _PyCoreConfig_Clear _PyCoreConfig_Copy _PyCoreConfig_Read _PyCoreConfig_SetGlobalConfig _PyCoroWrapper_Type DATA _PyDebugAllocatorStats _PyDictView_Intersect _PyDict_Contains _PyDict_DebugMallocStats _PyDict_DelItemId _PyDict_DelItemIf _PyDict_DelItem_KnownHash _PyDict_GetItemId _PyDict_GetItemIdWithError _PyDict_GetItem_KnownHash _PyDict_HasOnlyStringKeys _PyDict_MaybeUntrack _PyDict_MergeEx _PyDict_NewPresized _PyDict_Next _PyDict_Pop _PyDict_SetItemId _PyDict_SetItem_KnownHash _PyDict_SizeOf _PyErr_BadInternalCall _PyErr_ChainExceptions _PyErr_FormatFromCause _PyErr_SetKeyError _PyErr_TrySetFromCause _PyEval_CallTracing _PyEval_EvalCodeWithName _PyEval_EvalFrameDefault _PyEval_FiniThreads _PyEval_GetAsyncGenFinalizer _PyEval_GetAsyncGenFirstiter _PyEval_GetBuiltinId _PyEval_GetCoroutineOriginTrackingDepth _PyEval_GetCoroutineWrapper _PyEval_GetSwitchInterval _PyEval_Initialize _PyEval_RequestCodeExtraIndex _PyEval_SetAsyncGenFinalizer _PyEval_SetAsyncGenFirstiter _PyEval_SetCoroutineOriginTrackingDepth _PyEval_SetCoroutineWrapper _PyEval_SetSwitchInterval _PyEval_SignalAsyncExc _PyEval_SignalReceived _PyEval_SliceIndex _PyEval_SliceIndexNotNone _PyExc_Fini _PyExc_Init _PyFloat_DebugMallocStats _PyFloat_FormatAdvancedWriter _PyFloat_Init _PyFloat_Pack2 _PyFloat_Pack4 _PyFloat_Pack8 _PyFloat_Unpack2 _PyFloat_Unpack4 _PyFloat_Unpack8 _PyFrame_DebugMallocStats _PyFrame_Init _PyFunction_FastCallDict _PyFunction_FastCallKeywords _PyGC_CollectIfEnabled _PyGC_CollectNoFail _PyGC_DumpShutdownStats _PyGC_Fini _PyGC_Initialize _PyGILState_GetInterpreterStateUnsafe _PyGILState_Reinit _PyGen_FetchStopIterationValue _PyGen_Finalize _PyGen_Send _PyGen_SetStopIterationValue _PyHamtItems_Type DATA _PyHamtKeys_Type DATA _PyHamtValues_Type DATA _PyHamt_ArrayNode_Type DATA _PyHamt_BitmapNode_Type DATA _PyHamt_CollisionNode_Type DATA _PyHamt_Type DATA _PyImportHooks_Init _PyImportZip_Init _PyImport_AcquireLock _PyImport_AddModuleObject _PyImport_FindBuiltin _PyImport_FindExtensionObject _PyImport_FindExtensionObjectEx _PyImport_Fini _PyImport_Fini2 _PyImport_FixupBuiltin _PyImport_FixupExtensionObject _PyImport_GetModuleId _PyImport_Init _PyImport_IsInitialized _PyImport_ReInitLock _PyImport_ReleaseLock _PyImport_SetModule _PyImport_SetModuleString _PyInterpreterState_Enable _PyInterpreterState_IDDecref _PyInterpreterState_IDIncref _PyInterpreterState_IDInitref _PyInterpreterState_LookUpID _PyList_DebugMallocStats _PyList_Extend _PyLong_AsByteArray _PyLong_AsInt _PyLong_AsTime_t _PyLong_Copy _PyLong_DigitValue DATA _PyLong_DivmodNear _PyLong_Format _PyLong_FormatAdvancedWriter _PyLong_FormatBytesWriter _PyLong_FormatWriter _PyLong_Frexp _PyLong_FromByteArray _PyLong_FromBytes _PyLong_FromNbInt _PyLong_FromTime_t _PyLong_GCD _PyLong_New _PyLong_NumBits _PyLong_One DATA _PyLong_Sign _PyLong_Zero DATA _PyMainInterpreterConfig_AsDict _PyMainInterpreterConfig_Clear _PyMainInterpreterConfig_Copy _PyMainInterpreterConfig_Read _PyManagedBuffer_Type DATA _PyMem_GetAllocatorsName _PyMem_RawStrdup _PyMem_RawWcsdup _PyMem_SetDefaultAllocator _PyMem_SetupAllocators _PyMem_Strdup _PyMethodDef_RawFastCallDict _PyMethodDef_RawFastCallKeywords _PyMethodDescr_FastCallKeywords _PyMethodWrapper_Type DATA _PyMethod_DebugMallocStats _PyModule_Clear _PyModule_ClearDict _PyModule_CreateInitialized _PyNamespace_New _PyNamespace_Type DATA _PyNode_SizeOf _PyNone_Type DATA _PyNotImplemented_Type DATA _PyOS_IsMainThread _PyOS_ReadlineTState DATA _PyOS_SigintEvent _PyOS_URandom _PyOS_URandomNonblock _PyObject_CallFunction_SizeT _PyObject_CallMethodId _PyObject_CallMethodIdObjArgs _PyObject_CallMethodId_SizeT _PyObject_CallMethod_SizeT _PyObject_Call_Prepend _PyObject_DebugMallocStats _PyObject_DebugTypeStats _PyObject_Dump _PyObject_FastCallDict _PyObject_FastCallKeywords _PyObject_FastCall_Prepend _PyObject_GC_Calloc _PyObject_GC_Malloc _PyObject_GC_New _PyObject_GC_NewVar _PyObject_GC_Resize _PyObject_GenericGetAttrWithDict _PyObject_GenericSetAttrWithDict _PyObject_GetAttrId _PyObject_GetBuiltin _PyObject_GetDictPtr _PyObject_HasAttrId _PyObject_HasFastCall _PyObject_HasLen _PyObject_IsAbstract _PyObject_IsFreed _PyObject_LookupAttr _PyObject_LookupAttrId _PyObject_LookupSpecial _PyObject_New _PyObject_NewVar _PyObject_NextNotImplemented _PyObject_RealIsInstance _PyObject_RealIsSubclass _PyObject_SetAttrId _PyParser_Grammar DATA _PyParser_TokenNames DATA _PyPathConfig_Calculate _PyPathConfig_Clear _PyPathConfig_ComputeArgv0 _PyPathConfig_Init _PyRuntime DATA _PyRuntimeState_Fini _PyRuntimeState_Init _PyRuntime_Finalize _PyRuntime_Initialize _PySequence_BytesToCharpArray _PySequence_IterSearch _PySet_Dummy DATA _PySet_NextEntry _PySet_Update _PySignal_AfterFork _PySlice_FromIndices _PySlice_GetLongIndices _PyStack_AsDict _PyStack_AsTuple _PyStack_AsTupleSlice _PyStack_UnpackDict _PyState_AddModule _PyState_ClearModules _PySys_AddWarnOptionWithError _PySys_AddXOptionWithError _PySys_BeginInit _PySys_EndInit _PySys_GetObjectId _PySys_GetSizeOf _PySys_SetObjectId _PyThreadState_DeleteExcept _PyThreadState_Init _PyThreadState_Prealloc _PyThreadState_UncheckedGet _PyThread_CurrentFrames _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_noraise _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetPerfCounter _PyTime_GetPerfCounterWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_Init _PyTime_MulDiv _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _PyTraceMalloc_GetTraceback _PyTraceback_Add _PyTrash_deposit_object _PyTrash_destroy_chain _PyTrash_thread_deposit_object _PyTrash_thread_destroy_chain _PyTuple_DebugMallocStats _PyTuple_MaybeUntrack _PyTuple_Resize _PyType_CalculateMetaclass _PyType_Fini _PyType_GetDocFromInternalDoc _PyType_GetTextSignatureFromInternalDoc _PyType_Lookup _PyType_LookupId _PyType_Name _PyUnicodeTranslateError_Create _PyUnicodeWriter_Dealloc _PyUnicodeWriter_Finish _PyUnicodeWriter_Init _PyUnicodeWriter_PrepareInternal _PyUnicodeWriter_PrepareKindInternal _PyUnicodeWriter_WriteASCIIString _PyUnicodeWriter_WriteChar _PyUnicodeWriter_WriteLatin1String _PyUnicodeWriter_WriteStr _PyUnicodeWriter_WriteSubstring _PyUnicode_AsASCIIString _PyUnicode_AsKind _PyUnicode_AsLatin1String _PyUnicode_AsUTF8String _PyUnicode_AsUnicode _PyUnicode_ClearStaticStrings _PyUnicode_Copy _PyUnicode_DecodeUnicodeEscape _PyUnicode_EQ _PyUnicode_EncodeCharmap _PyUnicode_EncodeUTF16 _PyUnicode_EncodeUTF32 _PyUnicode_EncodeUTF7 _PyUnicode_EqualToASCIIId _PyUnicode_EqualToASCIIString _PyUnicode_FastCopyCharacters _PyUnicode_FastFill _PyUnicode_FindMaxChar _PyUnicode_FormatAdvancedWriter _PyUnicode_FormatLong _PyUnicode_FromASCII _PyUnicode_FromId _PyUnicode_InsertThousandsGrouping _PyUnicode_IsAlpha _PyUnicode_IsCaseIgnorable _PyUnicode_IsCased _PyUnicode_IsDecimalDigit _PyUnicode_IsDigit _PyUnicode_IsLinebreak _PyUnicode_IsLowercase _PyUnicode_IsNumeric _PyUnicode_IsPrintable _PyUnicode_IsTitlecase _PyUnicode_IsUppercase _PyUnicode_IsWhitespace _PyUnicode_IsXidContinue _PyUnicode_IsXidStart _PyUnicode_JoinArray _PyUnicode_Ready _PyUnicode_ToDecimalDigit _PyUnicode_ToDigit _PyUnicode_ToFoldedFull _PyUnicode_ToLowerFull _PyUnicode_ToLowercase _PyUnicode_ToNumeric _PyUnicode_ToTitleFull _PyUnicode_ToTitlecase _PyUnicode_ToUpperFull _PyUnicode_ToUppercase _PyUnicode_TransformDecimalAndSpaceToASCII _PyUnicode_XStrip _PyWarnings_Init _PyWeakref_CallableProxyType DATA _PyWeakref_ClearRef _PyWeakref_GetWeakrefCount _PyWeakref_ProxyType DATA _PyWeakref_RefType DATA _PyWindowsConsoleIO_Type DATA _Py_BreakPoint _Py_BuildValue_SizeT _Py_CheckFunctionResult _Py_CheckRecursionLimit DATA _Py_CheckRecursiveCall _Py_CoerceLegacyLocale _Py_Dealloc _Py_DecodeLocaleEx _Py_DecodeUTF8Ex _Py_DecodeUTF8_surrogateescape _Py_DisplaySourceLine _Py_DumpASCII _Py_DumpDecimal _Py_DumpHexadecimal _Py_DumpTraceback _Py_DumpTracebackThreads _Py_EllipsisObject DATA _Py_EncodeLocaleEx _Py_EncodeLocaleRaw _Py_EncodeUTF8Ex _Py_FalseStruct DATA _Py_FatalInitError _Py_FindEnvConfigValue _Py_FreeCharPArray _Py_GetAllocatedBlocks _Py_GetForceASCII _Py_GetGlobalVariablesAsDict _Py_GetLocaleconvNumeric _Py_HashBytes _Py_HashDouble _Py_HashPointer _Py_HashRandomization_Fini _Py_HashRandomization_Init _Py_HashSecret DATA _Py_InitializeCore _Py_InitializeFromConfig _Py_InitializeMainInterpreter _Py_Initialize_ReadEnvVarsNoAlloc _Py_IsCoreInitialized _Py_IsFinalizing _Py_LegacyLocaleDetected _Py_Mangle _Py_NoneStruct DATA _Py_NotImplementedStruct DATA _Py_PackageContext DATA _Py_PyAtExit _Py_ReadHashSeed _Py_ReleaseInternedUnicodeStrings _Py_ResetForceASCII _Py_RestoreSignals _Py_SetLocaleFromEnv _Py_SetProgramFullPath _Py_SwappedOp DATA _Py_TrueStruct DATA _Py_UnixMain _Py_VaBuildStack _Py_VaBuildStack_SizeT _Py_VaBuildValue_SizeT _Py_add_one_to_index_C _Py_add_one_to_index_F _Py_ascii_whitespace DATA _Py_c_abs _Py_c_diff _Py_c_neg _Py_c_pow _Py_c_prod _Py_c_quot _Py_c_sum _Py_convert_optional_to_ssize_t _Py_ctype_table DATA _Py_ctype_tolower DATA _Py_ctype_toupper DATA _Py_device_encoding _Py_dg_dtoa _Py_dg_freedtoa _Py_dg_infinity _Py_dg_stdnan _Py_dg_strtod _Py_dup _Py_fopen _Py_fopen_obj _Py_fstat _Py_fstat_noraise _Py_get_inheritable _Py_gitidentifier _Py_gitversion _Py_hashtable_clear _Py_hashtable_compare_direct _Py_hashtable_copy _Py_hashtable_destroy _Py_hashtable_foreach _Py_hashtable_get _Py_hashtable_get_entry _Py_hashtable_hash_ptr _Py_hashtable_new _Py_hashtable_new_full _Py_hashtable_pop _Py_hashtable_set _Py_hashtable_size _Py_open _Py_open_noraise _Py_parse_inf_or_nan _Py_path_config DATA _Py_read _Py_set_inheritable _Py_set_inheritable_async_safe _Py_stat _Py_strhex _Py_strhex_bytes _Py_string_to_number_with_underscores _Py_wfopen _Py_wgetcwd _Py_write _Py_write_noraise python3-dll-a-0.2.10/src/python38.def000064400000000000000000001040471046102023000152500ustar 00000000000000; ; Definition file of python38.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "python38.dll" EXPORTS PyAST_CompileEx PyAST_CompileObject PyAST_FromNode PyAST_FromNodeObject PyAST_Validate PyArena_AddPyObject PyArena_Free PyArena_Malloc PyArena_New PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyArg_UnpackTuple PyArg_VaParse PyArg_VaParseTupleAndKeywords PyArg_ValidateKeywordArguments PyAsyncGen_New PyAsyncGen_Type DATA PyBaseObject_Type DATA PyBool_FromLong PyBool_Type DATA PyBuffer_FillContiguousStrides PyBuffer_FillInfo PyBuffer_FromContiguous PyBuffer_GetPointer PyBuffer_IsContiguous PyBuffer_Release PyBuffer_ToContiguous PyByteArrayIter_Type DATA PyByteArray_AsString PyByteArray_Concat PyByteArray_FromObject PyByteArray_FromStringAndSize PyByteArray_Resize PyByteArray_Size PyByteArray_Type DATA PyBytesIter_Type DATA PyBytes_AsString PyBytes_AsStringAndSize PyBytes_Concat PyBytes_ConcatAndDel PyBytes_DecodeEscape PyBytes_FromFormat PyBytes_FromFormatV PyBytes_FromObject PyBytes_FromString PyBytes_FromStringAndSize PyBytes_Repr PyBytes_Size PyBytes_Type DATA PyCFunction_Call PyCFunction_ClearFreeList PyCFunction_GetFlags PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_NewEx PyCFunction_Type DATA PyCallIter_New PyCallIter_Type DATA PyCallable_Check PyCapsule_GetContext PyCapsule_GetDestructor PyCapsule_GetName PyCapsule_GetPointer PyCapsule_Import PyCapsule_IsValid PyCapsule_New PyCapsule_SetContext PyCapsule_SetDestructor PyCapsule_SetName PyCapsule_SetPointer PyCapsule_Type DATA PyCell_Get PyCell_New PyCell_Set PyCell_Type DATA PyClassMethodDescr_Type DATA PyClassMethod_New PyClassMethod_Type DATA PyCode_Addr2Line PyCode_New PyCode_NewEmpty PyCode_NewWithPosOnlyArgs PyCode_Optimize PyCode_Type DATA PyCodec_BackslashReplaceErrors PyCodec_Decode PyCodec_Decoder PyCodec_Encode PyCodec_Encoder PyCodec_IgnoreErrors PyCodec_IncrementalDecoder PyCodec_IncrementalEncoder PyCodec_KnownEncoding PyCodec_LookupError PyCodec_NameReplaceErrors PyCodec_Register PyCodec_RegisterError PyCodec_ReplaceErrors PyCodec_StreamReader PyCodec_StreamWriter PyCodec_StrictErrors PyCodec_XMLCharRefReplaceErrors PyCompile_OpcodeStackEffect PyCompile_OpcodeStackEffectWithJump PyComplex_AsCComplex PyComplex_FromCComplex PyComplex_FromDoubles PyComplex_ImagAsDouble PyComplex_RealAsDouble PyComplex_Type DATA PyConfig_Clear PyConfig_InitIsolatedConfig PyConfig_InitPythonConfig PyConfig_Read PyConfig_SetArgv PyConfig_SetBytesArgv PyConfig_SetBytesString PyConfig_SetString PyConfig_SetWideStringList PyContextToken_Type DATA PyContextVar_Get PyContextVar_New PyContextVar_Reset PyContextVar_Set PyContextVar_Type DATA PyContext_ClearFreeList PyContext_Copy PyContext_CopyCurrent PyContext_Enter PyContext_Exit PyContext_New PyContext_Type DATA PyCoro_New PyCoro_Type DATA PyDescr_NewClassMethod PyDescr_NewGetSet PyDescr_NewMember PyDescr_NewMethod PyDescr_NewWrapper PyDictItems_Type DATA PyDictIterItem_Type DATA PyDictIterKey_Type DATA PyDictIterValue_Type DATA PyDictKeys_Type DATA PyDictProxy_New PyDictProxy_Type DATA PyDictRevIterItem_Type DATA PyDictRevIterKey_Type DATA PyDictRevIterValue_Type DATA PyDictValues_Type DATA PyDict_Clear PyDict_ClearFreeList PyDict_Contains PyDict_Copy PyDict_DelItem PyDict_DelItemString PyDict_GetItem PyDict_GetItemString PyDict_GetItemWithError PyDict_Items PyDict_Keys PyDict_Merge PyDict_MergeFromSeq2 PyDict_New PyDict_Next PyDict_SetDefault PyDict_SetItem PyDict_SetItemString PyDict_Size PyDict_Type DATA PyDict_Update PyDict_Values PyEllipsis_Type DATA PyEnum_Type DATA PyErr_BadArgument PyErr_BadInternalCall PyErr_CheckSignals PyErr_Clear PyErr_Display PyErr_ExceptionMatches PyErr_Fetch PyErr_Format PyErr_FormatV PyErr_GetExcInfo PyErr_GivenExceptionMatches PyErr_NewException PyErr_NewExceptionWithDoc PyErr_NoMemory PyErr_NormalizeException PyErr_Occurred PyErr_Print PyErr_PrintEx PyErr_ProgramText PyErr_ProgramTextObject PyErr_ResourceWarning PyErr_Restore PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetExcFromWindowsErrWithUnicodeFilename PyErr_SetExcInfo PyErr_SetFromErrno PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilenameObject PyErr_SetFromErrnoWithFilenameObjects PyErr_SetFromErrnoWithUnicodeFilename PyErr_SetFromWindowsErr PyErr_SetFromWindowsErrWithFilename PyErr_SetFromWindowsErrWithUnicodeFilename PyErr_SetImportError PyErr_SetImportErrorSubclass PyErr_SetInterrupt PyErr_SetNone PyErr_SetObject PyErr_SetString PyErr_SyntaxLocation PyErr_SyntaxLocationEx PyErr_SyntaxLocationObject PyErr_WarnEx PyErr_WarnExplicit PyErr_WarnExplicitFormat PyErr_WarnExplicitObject PyErr_WarnFormat PyErr_WriteUnraisable PyEval_AcquireLock PyEval_AcquireThread PyEval_CallFunction PyEval_CallMethod PyEval_CallObjectWithKeywords PyEval_EvalCode PyEval_EvalCodeEx PyEval_EvalFrame PyEval_EvalFrameEx PyEval_GetBuiltins PyEval_GetFrame PyEval_GetFuncDesc PyEval_GetFuncName PyEval_GetGlobals PyEval_GetLocals PyEval_InitThreads PyEval_MergeCompilerFlags PyEval_ReleaseLock PyEval_ReleaseThread PyEval_RestoreThread PyEval_SaveThread PyEval_SetProfile PyEval_SetTrace PyEval_ThreadsInitialized PyExc_ArithmeticError DATA PyExc_AssertionError DATA PyExc_AttributeError DATA PyExc_BaseException DATA PyExc_BlockingIOError DATA PyExc_BrokenPipeError DATA PyExc_BufferError DATA PyExc_BytesWarning DATA PyExc_ChildProcessError DATA PyExc_ConnectionAbortedError DATA PyExc_ConnectionError DATA PyExc_ConnectionRefusedError DATA PyExc_ConnectionResetError DATA PyExc_DeprecationWarning DATA PyExc_EOFError DATA PyExc_EnvironmentError DATA PyExc_Exception DATA PyExc_FileExistsError DATA PyExc_FileNotFoundError DATA PyExc_FloatingPointError DATA PyExc_FutureWarning DATA PyExc_GeneratorExit DATA PyExc_IOError DATA PyExc_ImportError DATA PyExc_ImportWarning DATA PyExc_IndentationError DATA PyExc_IndexError DATA PyExc_InterruptedError DATA PyExc_IsADirectoryError DATA PyExc_KeyError DATA PyExc_KeyboardInterrupt DATA PyExc_LookupError DATA PyExc_MemoryError DATA PyExc_ModuleNotFoundError DATA PyExc_NameError DATA PyExc_NotADirectoryError DATA PyExc_NotImplementedError DATA PyExc_OSError DATA PyExc_OverflowError DATA PyExc_PendingDeprecationWarning DATA PyExc_PermissionError DATA PyExc_ProcessLookupError DATA PyExc_RecursionError DATA PyExc_ReferenceError DATA PyExc_ResourceWarning DATA PyExc_RuntimeError DATA PyExc_RuntimeWarning DATA PyExc_StopAsyncIteration DATA PyExc_StopIteration DATA PyExc_SyntaxError DATA PyExc_SyntaxWarning DATA PyExc_SystemError DATA PyExc_SystemExit DATA PyExc_TabError DATA PyExc_TimeoutError DATA PyExc_TypeError DATA PyExc_UnboundLocalError DATA PyExc_UnicodeDecodeError DATA PyExc_UnicodeEncodeError DATA PyExc_UnicodeError DATA PyExc_UnicodeTranslateError DATA PyExc_UnicodeWarning DATA PyExc_UserWarning DATA PyExc_ValueError DATA PyExc_Warning DATA PyExc_WindowsError DATA PyExc_ZeroDivisionError DATA PyExceptionClass_Name PyException_GetCause PyException_GetContext PyException_GetTraceback PyException_SetCause PyException_SetContext PyException_SetTraceback PyFile_FromFd PyFile_GetLine PyFile_NewStdPrinter PyFile_OpenCode PyFile_OpenCodeObject PyFile_SetOpenCodeHook PyFile_WriteObject PyFile_WriteString PyFilter_Type DATA PyFloat_AsDouble PyFloat_ClearFreeList PyFloat_FromDouble PyFloat_FromString PyFloat_GetInfo PyFloat_GetMax PyFloat_GetMin PyFloat_Type DATA PyFrame_BlockPop PyFrame_BlockSetup PyFrame_ClearFreeList PyFrame_FastToLocals PyFrame_FastToLocalsWithError PyFrame_GetLineNumber PyFrame_LocalsToFast PyFrame_New PyFrame_Type DATA PyFrozenSet_New PyFrozenSet_Type DATA PyFunction_GetAnnotations PyFunction_GetClosure PyFunction_GetCode PyFunction_GetDefaults PyFunction_GetGlobals PyFunction_GetKwDefaults PyFunction_GetModule PyFunction_New PyFunction_NewWithQualName PyFunction_SetAnnotations PyFunction_SetClosure PyFunction_SetDefaults PyFunction_SetKwDefaults PyFunction_Type DATA PyFuture_FromAST PyFuture_FromASTObject PyGC_Collect PyGILState_Check PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release PyGen_NeedsFinalizing PyGen_New PyGen_NewWithQualName PyGen_Type DATA PyGetSetDescr_Type DATA PyHash_GetFuncDef PyImport_AddModule PyImport_AddModuleObject PyImport_AppendInittab PyImport_Cleanup PyImport_ExecCodeModule PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleObject PyImport_ExecCodeModuleWithPathnames PyImport_ExtendInittab PyImport_FrozenModules DATA PyImport_GetImporter PyImport_GetMagicNumber PyImport_GetMagicTag PyImport_GetModule PyImport_GetModuleDict PyImport_Import PyImport_ImportFrozenModule PyImport_ImportFrozenModuleObject PyImport_ImportModule PyImport_ImportModuleLevel PyImport_ImportModuleLevelObject PyImport_ImportModuleNoBlock PyImport_Inittab DATA PyImport_ReloadModule PyIndex_Check PyInstanceMethod_Function PyInstanceMethod_New PyInstanceMethod_Type DATA PyInterpreterState_Clear PyInterpreterState_Delete PyInterpreterState_GetDict PyInterpreterState_GetID PyInterpreterState_Head PyInterpreterState_Main PyInterpreterState_New PyInterpreterState_Next PyInterpreterState_ThreadHead PyIter_Check PyIter_Next PyListIter_Type DATA PyListRevIter_Type DATA PyList_Append PyList_AsTuple PyList_ClearFreeList PyList_GetItem PyList_GetSlice PyList_Insert PyList_New PyList_Reverse PyList_SetItem PyList_SetSlice PyList_Size PyList_Sort PyList_Type DATA PyLongRangeIter_Type DATA PyLong_AsDouble PyLong_AsLong PyLong_AsLongAndOverflow PyLong_AsLongLong PyLong_AsLongLongAndOverflow PyLong_AsSize_t PyLong_AsSsize_t PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongMask PyLong_AsVoidPtr PyLong_FromDouble PyLong_FromLong PyLong_FromLongLong PyLong_FromSize_t PyLong_FromSsize_t PyLong_FromString PyLong_FromUnicode PyLong_FromUnicodeObject PyLong_FromUnsignedLong PyLong_FromUnsignedLongLong PyLong_FromVoidPtr PyLong_GetInfo PyLong_Type DATA PyMap_Type DATA PyMapping_Check PyMapping_GetItemString PyMapping_HasKey PyMapping_HasKeyString PyMapping_Items PyMapping_Keys PyMapping_Length PyMapping_SetItemString PyMapping_Size PyMapping_Values PyMarshal_ReadLastObjectFromFile PyMarshal_ReadLongFromFile PyMarshal_ReadObjectFromFile PyMarshal_ReadObjectFromString PyMarshal_ReadShortFromFile PyMarshal_WriteLongToFile PyMarshal_WriteObjectToFile PyMarshal_WriteObjectToString PyMem_Calloc PyMem_Free PyMem_GetAllocator PyMem_Malloc PyMem_RawCalloc PyMem_RawFree PyMem_RawMalloc PyMem_RawRealloc PyMem_Realloc PyMem_SetAllocator PyMem_SetupDebugHooks PyMemberDescr_Type DATA PyMember_GetOne PyMember_SetOne PyMemoryView_FromBuffer PyMemoryView_FromMemory PyMemoryView_FromObject PyMemoryView_GetContiguous PyMemoryView_Type DATA PyMethodDescr_Type DATA PyMethod_ClearFreeList PyMethod_Function PyMethod_New PyMethod_Self PyMethod_Type DATA PyModuleDef_Init PyModuleDef_Type DATA PyModule_AddFunctions PyModule_AddIntConstant PyModule_AddObject PyModule_AddStringConstant PyModule_Create2 PyModule_ExecDef PyModule_FromDefAndSpec2 PyModule_GetDef PyModule_GetDict PyModule_GetFilename PyModule_GetFilenameObject PyModule_GetName PyModule_GetNameObject PyModule_GetState PyModule_New PyModule_NewObject PyModule_SetDocString PyModule_Type DATA PyNode_AddChild PyNode_Compile PyNode_Free PyNode_ListTree PyNode_New PyNumber_Absolute PyNumber_Add PyNumber_And PyNumber_AsSsize_t PyNumber_Check PyNumber_Divmod PyNumber_Float PyNumber_FloorDivide PyNumber_InPlaceAdd PyNumber_InPlaceAnd PyNumber_InPlaceFloorDivide PyNumber_InPlaceLshift PyNumber_InPlaceMatrixMultiply PyNumber_InPlaceMultiply PyNumber_InPlaceOr PyNumber_InPlacePower PyNumber_InPlaceRemainder PyNumber_InPlaceRshift PyNumber_InPlaceSubtract PyNumber_InPlaceTrueDivide PyNumber_InPlaceXor PyNumber_Index PyNumber_Invert PyNumber_Long PyNumber_Lshift PyNumber_MatrixMultiply PyNumber_Multiply PyNumber_Negative PyNumber_Or PyNumber_Positive PyNumber_Power PyNumber_Remainder PyNumber_Rshift PyNumber_Subtract PyNumber_ToBase PyNumber_TrueDivide PyNumber_Xor PyODictItems_Type DATA PyODictIter_Type DATA PyODictKeys_Type DATA PyODictValues_Type DATA PyODict_DelItem PyODict_New PyODict_SetItem PyODict_Type DATA PyOS_AfterFork PyOS_FSPath PyOS_InitInterrupts PyOS_InputHook DATA PyOS_InterruptOccurred PyOS_Readline PyOS_ReadlineFunctionPointer DATA PyOS_double_to_string PyOS_getsig PyOS_mystricmp PyOS_mystrnicmp PyOS_setsig PyOS_snprintf PyOS_string_to_double PyOS_strtol PyOS_strtoul PyOS_vsnprintf PyObject_ASCII PyObject_AsCharBuffer PyObject_AsFileDescriptor PyObject_AsReadBuffer PyObject_AsWriteBuffer PyObject_Bytes PyObject_Call PyObject_CallFinalizer PyObject_CallFinalizerFromDealloc PyObject_CallFunction PyObject_CallFunctionObjArgs PyObject_CallMethod PyObject_CallMethodObjArgs PyObject_CallObject PyObject_Calloc PyObject_CheckReadBuffer PyObject_ClearWeakRefs PyObject_CopyData PyObject_DelItem PyObject_DelItemString PyObject_Dir PyObject_Format PyObject_Free PyObject_GC_Del PyObject_GC_Track PyObject_GC_UnTrack PyObject_GenericGetAttr PyObject_GenericGetDict PyObject_GenericSetAttr PyObject_GenericSetDict PyObject_GetArenaAllocator PyObject_GetAttr PyObject_GetAttrString PyObject_GetBuffer PyObject_GetItem PyObject_GetIter PyObject_HasAttr PyObject_HasAttrString PyObject_Hash PyObject_HashNotImplemented PyObject_Init PyObject_InitVar PyObject_IsInstance PyObject_IsSubclass PyObject_IsTrue PyObject_Length PyObject_LengthHint PyObject_Malloc PyObject_Not PyObject_Print PyObject_Realloc PyObject_Repr PyObject_RichCompare PyObject_RichCompareBool PyObject_SelfIter PyObject_SetArenaAllocator PyObject_SetAttr PyObject_SetAttrString PyObject_SetItem PyObject_Size PyObject_Str PyObject_Type PyParser_ASTFromFile PyParser_ASTFromFileObject PyParser_ASTFromString PyParser_ASTFromStringObject PyParser_ClearError PyParser_ParseFile PyParser_ParseFileFlags PyParser_ParseFileFlagsEx PyParser_ParseFileObject PyParser_ParseString PyParser_ParseStringFlags PyParser_ParseStringFlagsFilename PyParser_ParseStringFlagsFilenameEx PyParser_ParseStringObject PyParser_SetError PyParser_SimpleParseFile PyParser_SimpleParseFileFlags PyParser_SimpleParseString PyParser_SimpleParseStringFlags PyParser_SimpleParseStringFlagsFilename PyPickleBuffer_FromObject PyPickleBuffer_GetBuffer PyPickleBuffer_Release PyPickleBuffer_Type DATA PyPreConfig_InitIsolatedConfig PyPreConfig_InitPythonConfig PyProperty_Type DATA PyRangeIter_Type DATA PyRange_Type DATA PyReversed_Type DATA PyRun_AnyFile PyRun_AnyFileEx PyRun_AnyFileExFlags PyRun_AnyFileFlags PyRun_File PyRun_FileEx PyRun_FileExFlags PyRun_FileFlags PyRun_InteractiveLoop PyRun_InteractiveLoopFlags PyRun_InteractiveOne PyRun_InteractiveOneFlags PyRun_InteractiveOneObject PyRun_SimpleFile PyRun_SimpleFileEx PyRun_SimpleFileExFlags PyRun_SimpleString PyRun_SimpleStringFlags PyRun_String PyRun_StringFlags PySTEntry_Type DATA PyST_GetScope PySeqIter_New PySeqIter_Type DATA PySequence_Check PySequence_Concat PySequence_Contains PySequence_Count PySequence_DelItem PySequence_DelSlice PySequence_Fast PySequence_GetItem PySequence_GetSlice PySequence_In PySequence_InPlaceConcat PySequence_InPlaceRepeat PySequence_Index PySequence_Length PySequence_List PySequence_Repeat PySequence_SetItem PySequence_SetSlice PySequence_Size PySequence_Tuple PySetIter_Type DATA PySet_Add PySet_Clear PySet_ClearFreeList PySet_Contains PySet_Discard PySet_New PySet_Pop PySet_Size PySet_Type DATA PySlice_AdjustIndices PySlice_GetIndices PySlice_GetIndicesEx PySlice_New PySlice_Type DATA PySlice_Unpack PyState_AddModule PyState_FindModule PyState_RemoveModule PyStaticMethod_New PyStaticMethod_Type DATA PyStatus_Error PyStatus_Exception PyStatus_Exit PyStatus_IsError PyStatus_IsExit PyStatus_NoMemory PyStatus_Ok PyStdPrinter_Type DATA PyStructSequence_GetItem PyStructSequence_InitType PyStructSequence_InitType2 PyStructSequence_New PyStructSequence_NewType PyStructSequence_SetItem PySuper_Type DATA PySymtable_Build PySymtable_BuildObject PySymtable_Free PySymtable_Lookup PySys_AddAuditHook PySys_AddWarnOption PySys_AddWarnOptionUnicode PySys_AddXOption PySys_Audit PySys_FormatStderr PySys_FormatStdout PySys_GetObject PySys_GetXOptions PySys_HasWarnOptions PySys_ResetWarnOptions PySys_SetArgv PySys_SetArgvEx PySys_SetObject PySys_SetPath PySys_WriteStderr PySys_WriteStdout PyThreadState_Clear PyThreadState_Delete PyThreadState_DeleteCurrent PyThreadState_Get PyThreadState_GetDict PyThreadState_New PyThreadState_Next PyThreadState_SetAsyncExc PyThreadState_Swap PyThread_GetInfo PyThread_ReInitTLS PyThread_acquire_lock PyThread_acquire_lock_timed PyThread_allocate_lock PyThread_create_key PyThread_delete_key PyThread_delete_key_value PyThread_exit_thread PyThread_free_lock PyThread_get_key_value PyThread_get_stacksize PyThread_get_thread_ident PyThread_get_thread_native_id PyThread_init_thread PyThread_release_lock PyThread_set_key_value PyThread_set_stacksize PyThread_start_new_thread PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyToken_OneChar PyToken_ThreeChars PyToken_TwoChars PyTraceBack_Here PyTraceBack_Print PyTraceBack_Type DATA PyTraceMalloc_Track PyTraceMalloc_Untrack PyTupleIter_Type DATA PyTuple_ClearFreeList PyTuple_GetItem PyTuple_GetSlice PyTuple_New PyTuple_Pack PyTuple_SetItem PyTuple_Size PyTuple_Type DATA PyType_ClearCache PyType_FromSpec PyType_FromSpecWithBases PyType_GenericAlloc PyType_GenericNew PyType_GetFlags PyType_GetSlot PyType_IsSubtype PyType_Modified PyType_Ready PyType_Type DATA PyUnicodeDecodeError_Create PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetStart PyUnicodeEncodeError_Create PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetStart PyUnicodeIter_Type DATA PyUnicodeTranslateError_Create PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetStart PyUnicode_Append PyUnicode_AppendAndDel PyUnicode_AsASCIIString PyUnicode_AsCharmapString PyUnicode_AsDecodedObject PyUnicode_AsDecodedUnicode PyUnicode_AsEncodedObject PyUnicode_AsEncodedString PyUnicode_AsEncodedUnicode PyUnicode_AsLatin1String PyUnicode_AsMBCSString PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsUCS4 PyUnicode_AsUCS4Copy PyUnicode_AsUTF16String PyUnicode_AsUTF32String PyUnicode_AsUTF8 PyUnicode_AsUTF8AndSize PyUnicode_AsUTF8String PyUnicode_AsUnicode PyUnicode_AsUnicodeAndSize PyUnicode_AsUnicodeCopy PyUnicode_AsUnicodeEscapeString PyUnicode_AsWideChar PyUnicode_AsWideCharString PyUnicode_BuildEncodingMap PyUnicode_ClearFreeList PyUnicode_Compare PyUnicode_CompareWithASCIIString PyUnicode_Concat PyUnicode_Contains PyUnicode_CopyCharacters PyUnicode_Count PyUnicode_Decode PyUnicode_DecodeASCII PyUnicode_DecodeCharmap PyUnicode_DecodeCodePageStateful PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeLatin1 PyUnicode_DecodeLocale PyUnicode_DecodeLocaleAndSize PyUnicode_DecodeMBCS PyUnicode_DecodeMBCSStateful PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUnicodeEscape PyUnicode_Encode PyUnicode_EncodeASCII PyUnicode_EncodeCharmap PyUnicode_EncodeCodePage PyUnicode_EncodeDecimal PyUnicode_EncodeFSDefault PyUnicode_EncodeLatin1 PyUnicode_EncodeLocale PyUnicode_EncodeMBCS PyUnicode_EncodeRawUnicodeEscape PyUnicode_EncodeUTF16 PyUnicode_EncodeUTF32 PyUnicode_EncodeUTF7 PyUnicode_EncodeUTF8 PyUnicode_EncodeUnicodeEscape PyUnicode_FSConverter PyUnicode_FSDecoder PyUnicode_Fill PyUnicode_Find PyUnicode_FindChar PyUnicode_Format PyUnicode_FromEncodedObject PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromKindAndData PyUnicode_FromObject PyUnicode_FromOrdinal PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_FromUnicode PyUnicode_FromWideChar PyUnicode_GetDefaultEncoding PyUnicode_GetLength PyUnicode_GetMax PyUnicode_GetSize PyUnicode_InternFromString PyUnicode_InternImmortal PyUnicode_InternInPlace PyUnicode_IsIdentifier PyUnicode_Join PyUnicode_New PyUnicode_Partition PyUnicode_RPartition PyUnicode_RSplit PyUnicode_ReadChar PyUnicode_Replace PyUnicode_Resize PyUnicode_RichCompare PyUnicode_Split PyUnicode_Splitlines PyUnicode_Substring PyUnicode_Tailmatch PyUnicode_TransformDecimalToASCII PyUnicode_Translate PyUnicode_TranslateCharmap PyUnicode_Type DATA PyUnicode_WriteChar PyVectorcall_Call PyWeakref_GetObject PyWeakref_NewProxy PyWeakref_NewRef PyWideStringList_Append PyWideStringList_Insert PyWrapperDescr_Type DATA PyWrapper_New PyZip_Type DATA Py_AddPendingCall Py_AtExit Py_BuildValue Py_BytesMain Py_BytesWarningFlag DATA Py_CompileString Py_CompileStringExFlags Py_CompileStringFlags Py_CompileStringObject Py_DebugFlag DATA Py_DecRef Py_DecodeLocale Py_DontWriteBytecodeFlag DATA Py_EncodeLocale Py_EndInterpreter Py_Exit Py_ExitStatusException Py_FatalError Py_FdIsInteractive Py_FileSystemDefaultEncodeErrors DATA Py_FileSystemDefaultEncoding DATA Py_Finalize Py_FinalizeEx Py_FrozenFlag DATA Py_GetBuildInfo Py_GetCompiler Py_GetCopyright Py_GetExecPrefix Py_GetPath Py_GetPlatform Py_GetPrefix Py_GetProgramFullPath Py_GetProgramName Py_GetPythonHome Py_GetRecursionLimit Py_GetVersion Py_HasFileSystemDefaultEncoding DATA Py_HashRandomizationFlag DATA Py_IgnoreEnvironmentFlag DATA Py_IncRef Py_Initialize Py_InitializeEx Py_InitializeFromConfig Py_InspectFlag DATA Py_InteractiveFlag DATA Py_IsInitialized Py_IsolatedFlag DATA Py_LegacyWindowsFSEncodingFlag DATA Py_LegacyWindowsStdioFlag DATA Py_Main Py_MakePendingCalls Py_NewInterpreter Py_NoSiteFlag DATA Py_NoUserSiteDirectory DATA Py_OptimizeFlag DATA Py_PreInitialize Py_PreInitializeFromArgs Py_PreInitializeFromBytesArgs Py_QuietFlag DATA Py_ReprEnter Py_ReprLeave Py_RunMain Py_SetPath Py_SetProgramName Py_SetPythonHome Py_SetRecursionLimit Py_SetStandardStreamEncoding Py_SymtableString Py_SymtableStringObject Py_UNICODE_strcat Py_UNICODE_strchr Py_UNICODE_strcmp Py_UNICODE_strcpy Py_UNICODE_strlen Py_UNICODE_strncmp Py_UNICODE_strncpy Py_UNICODE_strrchr Py_UTF8Mode DATA Py_UnbufferedStdioFlag DATA Py_UniversalNewlineFgets Py_VaBuildValue Py_VerboseFlag DATA Py_hexdigits DATA _PyAST_GetDocString _PyAST_Optimize _PyAccu_Accumulate _PyAccu_Destroy _PyAccu_Finish _PyAccu_FinishAsList _PyAccu_Init _PyArg_BadArgument _PyArg_CheckPositional _PyArg_NoKeywords _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseStackAndKeywords_SizeT _PyArg_ParseStack_SizeT _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywordsFast_SizeT _PyArg_ParseTupleAndKeywords_SizeT _PyArg_ParseTuple_SizeT _PyArg_Parse_SizeT _PyArg_UnpackKeywords _PyArg_UnpackStack _PyArg_VaParseTupleAndKeywordsFast _PyArg_VaParseTupleAndKeywordsFast_SizeT _PyArg_VaParseTupleAndKeywords_SizeT _PyArg_VaParse_SizeT _PyArgv_AsWstrList _PyAsyncGenASend_Type DATA _PyAsyncGenAThrow_Type DATA _PyAsyncGenWrappedValue_Type DATA _PyByteArray_empty_string DATA _PyBytesWriter_Alloc _PyBytesWriter_Dealloc _PyBytesWriter_Finish _PyBytesWriter_Init _PyBytesWriter_Prepare _PyBytesWriter_Resize _PyBytesWriter_WriteBytes _PyBytes_DecodeEscape _PyBytes_FormatEx _PyBytes_FromHex _PyBytes_Join _PyBytes_Resize _PyCFunction_DebugMallocStats _PyCFunction_FastCallDict _PyCode_CheckLineNumber _PyCode_ConstantKey _PyCode_GetExtra _PyCode_SetExtra _PyCodecInfo_GetIncrementalDecoder _PyCodecInfo_GetIncrementalEncoder _PyCodec_DecodeText _PyCodec_EncodeText _PyCodec_Forget _PyCodec_Lookup _PyCodec_LookupTextEncoding _PyComplex_FormatAdvancedWriter _PyConfig_InitCompatConfig _PyContext_NewHamtForTests _PyCoroWrapper_Type DATA _PyCrossInterpreterData_Lookup _PyCrossInterpreterData_NewObject _PyCrossInterpreterData_RegisterClass _PyCrossInterpreterData_Release _PyDebugAllocatorStats _PyDictView_Intersect _PyDictView_New _PyDict_CheckConsistency _PyDict_Contains _PyDict_DebugMallocStats _PyDict_DelItemId _PyDict_DelItemIf _PyDict_DelItem_KnownHash _PyDict_GetItemId _PyDict_GetItemIdWithError _PyDict_GetItemStringWithError _PyDict_GetItem_KnownHash _PyDict_HasOnlyStringKeys _PyDict_MaybeUntrack _PyDict_MergeEx _PyDict_NewPresized _PyDict_Next _PyDict_Pop _PyDict_SetItemId _PyDict_SetItem_KnownHash _PyDict_SizeOf _PyErr_BadInternalCall _PyErr_ChainExceptions _PyErr_CheckSignals _PyErr_Clear _PyErr_Display _PyErr_ExceptionMatches _PyErr_Fetch _PyErr_Format _PyErr_FormatFromCause _PyErr_NormalizeException _PyErr_Print _PyErr_Restore _PyErr_SetKeyError _PyErr_SetNone _PyErr_SetObject _PyErr_SetString _PyErr_TrySetFromCause _PyErr_WriteUnraisableMsg _PyEval_AddPendingCall _PyEval_CallTracing _PyEval_EvalCodeWithName _PyEval_EvalFrameDefault _PyEval_FiniThreads _PyEval_GetAsyncGenFinalizer _PyEval_GetAsyncGenFirstiter _PyEval_GetBuiltinId _PyEval_GetCoroutineOriginTrackingDepth _PyEval_GetSwitchInterval _PyEval_Initialize _PyEval_ReInitThreads _PyEval_RequestCodeExtraIndex _PyEval_SetAsyncGenFinalizer _PyEval_SetAsyncGenFirstiter _PyEval_SetCoroutineOriginTrackingDepth _PyEval_SetSwitchInterval _PyEval_SignalAsyncExc _PyEval_SignalReceived _PyEval_SliceIndex _PyEval_SliceIndexNotNone _PyFloat_DebugMallocStats _PyFloat_FormatAdvancedWriter _PyFloat_Pack2 _PyFloat_Pack4 _PyFloat_Pack8 _PyFloat_Unpack2 _PyFloat_Unpack4 _PyFloat_Unpack8 _PyFrame_DebugMallocStats _PyFunction_FastCallDict _PyFunction_Vectorcall _PyGC_CollectIfEnabled _PyGC_CollectNoFail _PyGC_Initialize _PyGILState_GetInterpreterStateUnsafe _PyGILState_Reinit _PyGen_FetchStopIterationValue _PyGen_Finalize _PyGen_Send _PyGen_SetStopIterationValue _PyHamtItems_Type DATA _PyHamtKeys_Type DATA _PyHamtValues_Type DATA _PyHamt_ArrayNode_Type DATA _PyHamt_BitmapNode_Type DATA _PyHamt_CollisionNode_Type DATA _PyHamt_Type DATA _PyImport_AcquireLock _PyImport_AddModuleObject _PyImport_FindBuiltin _PyImport_FindExtensionObject _PyImport_FindExtensionObjectEx _PyImport_FixupBuiltin _PyImport_FixupExtensionObject _PyImport_GetModuleId _PyImport_IsInitialized _PyImport_ReInitLock _PyImport_ReleaseLock _PyImport_SetModule _PyImport_SetModuleString _PyInterpreterID_LookUp _PyInterpreterID_New _PyInterpreterID_Type DATA _PyInterpreterState_DeleteExceptMain _PyInterpreterState_Enable _PyInterpreterState_Get _PyInterpreterState_GetIDObject _PyInterpreterState_GetMainModule _PyInterpreterState_IDDecref _PyInterpreterState_IDIncref _PyInterpreterState_IDInitref _PyInterpreterState_LookUpID _PyInterpreterState_RequireIDRef _PyInterpreterState_RequiresIDRef _PyList_DebugMallocStats _PyList_Extend _PyLong_AsByteArray _PyLong_AsInt _PyLong_AsTime_t _PyLong_Copy _PyLong_DigitValue DATA _PyLong_DivmodNear _PyLong_Format _PyLong_FormatAdvancedWriter _PyLong_FormatBytesWriter _PyLong_FormatWriter _PyLong_Frexp _PyLong_FromByteArray _PyLong_FromBytes _PyLong_FromNbIndexOrNbInt _PyLong_FromNbInt _PyLong_FromTime_t _PyLong_GCD _PyLong_Lshift _PyLong_New _PyLong_NumBits _PyLong_One DATA _PyLong_Rshift _PyLong_Sign _PyLong_Size_t_Converter _PyLong_UnsignedInt_Converter _PyLong_UnsignedLongLong_Converter _PyLong_UnsignedLong_Converter _PyLong_UnsignedShort_Converter _PyLong_Zero DATA _PyManagedBuffer_Type DATA _PyMem_GetAllocatorName _PyMem_GetCurrentAllocatorName _PyMem_RawStrdup _PyMem_RawWcsdup _PyMem_SetDefaultAllocator _PyMem_SetupAllocators _PyMem_Strdup _PyMethodDef_RawFastCallDict _PyMethodDef_RawFastCallKeywords _PyMethodWrapper_Type DATA _PyMethod_DebugMallocStats _PyModuleSpec_IsInitializing _PyModule_Clear _PyModule_ClearDict _PyModule_CreateInitialized _PyNamespace_New _PyNamespace_Type DATA _PyNode_SizeOf _PyNone_Type DATA _PyNotImplemented_Type DATA _PyOS_InterruptOccurred _PyOS_IsMainThread _PyOS_ReadlineTState DATA _PyOS_SigintEvent _PyOS_URandom _PyOS_URandomNonblock _PyObject_AssertFailed _PyObject_CallFunction_SizeT _PyObject_CallMethodId _PyObject_CallMethodIdObjArgs _PyObject_CallMethodId_SizeT _PyObject_CallMethod_SizeT _PyObject_Call_Prepend _PyObject_CheckConsistency _PyObject_CheckCrossInterpreterData _PyObject_DebugMallocStats _PyObject_DebugTypeStats _PyObject_Dump _PyObject_FastCallDict _PyObject_FastCall_Prepend _PyObject_GC_Calloc _PyObject_GC_Malloc _PyObject_GC_New _PyObject_GC_NewVar _PyObject_GC_Resize _PyObject_GenericGetAttrWithDict _PyObject_GenericSetAttrWithDict _PyObject_GetAttrId _PyObject_GetCrossInterpreterData _PyObject_GetDictPtr _PyObject_HasAttrId _PyObject_HasLen _PyObject_IsAbstract _PyObject_IsFreed _PyObject_LookupAttr _PyObject_LookupAttrId _PyObject_LookupSpecial _PyObject_MakeTpCall _PyObject_New _PyObject_NewVar _PyObject_NextNotImplemented _PyObject_RealIsInstance _PyObject_RealIsSubclass _PyObject_SetAttrId _PyParser_TokenNames DATA _PyPreConfig_InitCompatConfig _PyRuntime DATA _PyRuntimeState_Fini _PyRuntimeState_Init _PyRuntimeState_ReInitThreads _PyRuntime_Finalize _PyRuntime_Initialize _PySequence_BytesToCharpArray _PySequence_IterSearch _PySet_Dummy DATA _PySet_NextEntry _PySet_Update _PySignal_AfterFork _PySlice_FromIndices _PySlice_GetLongIndices _PyStack_AsDict _PyStack_UnpackDict _PyState_AddModule _PyState_ClearModules _PySys_GetObjectId _PySys_GetSizeOf _PySys_SetObjectId _PyThreadState_DeleteExcept _PyThreadState_Init _PyThreadState_Prealloc _PyThreadState_Swap _PyThreadState_UncheckedGet _PyThread_CurrentFrames _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_noraise _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetPerfCounter _PyTime_GetPerfCounterWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_Init _PyTime_MulDiv _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _PyTraceMalloc_GetTraceback _PyTraceMalloc_NewReference _PyTraceback_Add _PyTrash_deposit_object _PyTrash_destroy_chain _PyTrash_thread_deposit_object _PyTrash_thread_destroy_chain _PyTuple_DebugMallocStats _PyTuple_MaybeUntrack _PyTuple_Resize _PyType_CalculateMetaclass _PyType_CheckConsistency _PyType_GetDocFromInternalDoc _PyType_GetTextSignatureFromInternalDoc _PyType_Lookup _PyType_LookupId _PyType_Name _PyUnicodeTranslateError_Create _PyUnicodeWriter_Dealloc _PyUnicodeWriter_Finish _PyUnicodeWriter_Init _PyUnicodeWriter_PrepareInternal _PyUnicodeWriter_PrepareKindInternal _PyUnicodeWriter_WriteASCIIString _PyUnicodeWriter_WriteChar _PyUnicodeWriter_WriteLatin1String _PyUnicodeWriter_WriteStr _PyUnicodeWriter_WriteSubstring _PyUnicode_AsASCIIString _PyUnicode_AsKind _PyUnicode_AsLatin1String _PyUnicode_AsUTF8String _PyUnicode_AsUnicode _PyUnicode_CheckConsistency _PyUnicode_ClearStaticStrings _PyUnicode_Copy _PyUnicode_DecodeUnicodeEscape _PyUnicode_EQ _PyUnicode_EncodeCharmap _PyUnicode_EncodeUTF16 _PyUnicode_EncodeUTF32 _PyUnicode_EncodeUTF7 _PyUnicode_EqualToASCIIId _PyUnicode_EqualToASCIIString _PyUnicode_FastCopyCharacters _PyUnicode_FastFill _PyUnicode_FindMaxChar _PyUnicode_FormatAdvancedWriter _PyUnicode_FormatLong _PyUnicode_FromASCII _PyUnicode_FromId _PyUnicode_InsertThousandsGrouping _PyUnicode_IsAlpha _PyUnicode_IsCaseIgnorable _PyUnicode_IsCased _PyUnicode_IsDecimalDigit _PyUnicode_IsDigit _PyUnicode_IsLinebreak _PyUnicode_IsLowercase _PyUnicode_IsNumeric _PyUnicode_IsPrintable _PyUnicode_IsTitlecase _PyUnicode_IsUppercase _PyUnicode_IsWhitespace _PyUnicode_IsXidContinue _PyUnicode_IsXidStart _PyUnicode_JoinArray _PyUnicode_Ready _PyUnicode_ToDecimalDigit _PyUnicode_ToDigit _PyUnicode_ToFoldedFull _PyUnicode_ToLowerFull _PyUnicode_ToLowercase _PyUnicode_ToNumeric _PyUnicode_ToTitleFull _PyUnicode_ToTitlecase _PyUnicode_ToUpperFull _PyUnicode_ToUppercase _PyUnicode_TransformDecimalAndSpaceToASCII _PyUnicode_XStrip _PyWarnings_Init _PyWeakref_CallableProxyType DATA _PyWeakref_ClearRef _PyWeakref_GetWeakrefCount _PyWeakref_ProxyType DATA _PyWeakref_RefType DATA _PyWideStringList_AsList _PyWideStringList_Clear _PyWideStringList_Copy _PyWideStringList_Extend _PyWindowsConsoleIO_Type DATA _Py_BreakPoint _Py_BuildValue_SizeT _Py_CheckFunctionResult _Py_CheckRecursionLimit DATA _Py_CheckRecursiveCall _Py_ClearArgcArgv _Py_ClearStandardStreamEncoding _Py_CoerceLegacyLocale _Py_Dealloc _Py_DecodeLocaleEx _Py_DecodeUTF8Ex _Py_DecodeUTF8_surrogateescape _Py_DisplaySourceLine _Py_EllipsisObject DATA _Py_EncodeLocaleEx _Py_EncodeLocaleRaw _Py_EncodeUTF8Ex _Py_FalseStruct DATA _Py_FinishPendingCalls _Py_FreeCharPArray _Py_GetAllocatedBlocks _Py_GetConfigsAsDict _Py_GetEnv _Py_GetErrorHandler _Py_GetForceASCII _Py_GetLocaleconvNumeric _Py_HandleSystemExit _Py_HashBytes _Py_HashDouble _Py_HashPointer _Py_HashSecret DATA _Py_InitializeMain _Py_IsCoreInitialized _Py_IsFinalizing _Py_IsLocaleCoercionTarget _Py_LegacyLocaleDetected _Py_Mangle _Py_NoneStruct DATA _Py_NotImplementedStruct DATA _Py_PackageContext DATA _Py_PreInitializeFromConfig _Py_PreInitializeFromPyArgv _Py_PyAtExit _Py_ResetForceASCII _Py_RestoreSignals _Py_SetLocaleFromEnv _Py_SetProgramFullPath _Py_SourceAsString _Py_SwappedOp DATA _Py_SymtableStringObjectFlags _Py_TrueStruct DATA _Py_UnhandledKeyboardInterrupt DATA _Py_VaBuildStack _Py_VaBuildStack_SizeT _Py_VaBuildValue_SizeT _Py_add_one_to_index_C _Py_add_one_to_index_F _Py_ascii_whitespace DATA _Py_c_abs _Py_c_diff _Py_c_neg _Py_c_pow _Py_c_prod _Py_c_quot _Py_c_sum _Py_convert_optional_to_ssize_t _Py_ctype_table DATA _Py_ctype_tolower DATA _Py_ctype_toupper DATA _Py_device_encoding _Py_dg_dtoa _Py_dg_freedtoa _Py_dg_infinity _Py_dg_stdnan _Py_dg_strtod _Py_dup _Py_fopen _Py_fopen_obj _Py_fstat _Py_fstat_noraise _Py_get_env_flag _Py_get_inheritable _Py_get_xoption _Py_gitidentifier _Py_gitversion _Py_hashtable_clear _Py_hashtable_compare_direct _Py_hashtable_copy _Py_hashtable_destroy _Py_hashtable_foreach _Py_hashtable_get _Py_hashtable_get_entry _Py_hashtable_hash_ptr _Py_hashtable_new _Py_hashtable_new_full _Py_hashtable_pop _Py_hashtable_set _Py_hashtable_size _Py_open _Py_open_noraise _Py_parse_inf_or_nan _Py_path_config DATA _Py_read _Py_set_inheritable _Py_set_inheritable_async_safe _Py_stat _Py_str_to_int _Py_strhex _Py_strhex_bytes _Py_strhex_bytes_with_sep _Py_strhex_with_sep _Py_string_to_number_with_underscores _Py_tracemalloc_config DATA _Py_wfopen _Py_wgetcwd _Py_write _Py_write_noraise python3-dll-a-0.2.10/src/python39.def000064400000000000000000001051541046102023000152510ustar 00000000000000; ; Definition file of python39.dll ; Automatic generated by gendef ; written by Kai Tietz 2008 ; LIBRARY "python39.dll" EXPORTS PyAST_CompileEx PyAST_CompileObject PyAST_FromNode PyAST_FromNodeObject PyAST_Validate PyArena_AddPyObject PyArena_Free PyArena_Malloc PyArena_New PyArg_Parse PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyArg_UnpackTuple PyArg_VaParse PyArg_VaParseTupleAndKeywords PyArg_ValidateKeywordArguments PyAsyncGen_New PyAsyncGen_Type DATA PyBaseObject_Type DATA PyBool_FromLong PyBool_Type DATA PyBuffer_FillContiguousStrides PyBuffer_FillInfo PyBuffer_FromContiguous PyBuffer_GetPointer PyBuffer_IsContiguous PyBuffer_Release PyBuffer_SizeFromFormat PyBuffer_ToContiguous PyByteArrayIter_Type DATA PyByteArray_AsString PyByteArray_Concat PyByteArray_FromObject PyByteArray_FromStringAndSize PyByteArray_Resize PyByteArray_Size PyByteArray_Type DATA PyBytesIter_Type DATA PyBytes_AsString PyBytes_AsStringAndSize PyBytes_Concat PyBytes_ConcatAndDel PyBytes_DecodeEscape PyBytes_FromFormat PyBytes_FromFormatV PyBytes_FromObject PyBytes_FromString PyBytes_FromStringAndSize PyBytes_Repr PyBytes_Size PyBytes_Type DATA PyCFunction_Call PyCFunction_GetFlags PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_NewEx PyCFunction_Type DATA PyCMethod_New PyCMethod_Type DATA PyCallIter_New PyCallIter_Type DATA PyCallable_Check PyCapsule_GetContext PyCapsule_GetDestructor PyCapsule_GetName PyCapsule_GetPointer PyCapsule_Import PyCapsule_IsValid PyCapsule_New PyCapsule_SetContext PyCapsule_SetDestructor PyCapsule_SetName PyCapsule_SetPointer PyCapsule_Type DATA PyCell_Get PyCell_New PyCell_Set PyCell_Type DATA PyClassMethodDescr_Type DATA PyClassMethod_New PyClassMethod_Type DATA PyCode_Addr2Line PyCode_New PyCode_NewEmpty PyCode_NewWithPosOnlyArgs PyCode_Optimize PyCode_Type DATA PyCodec_BackslashReplaceErrors PyCodec_Decode PyCodec_Decoder PyCodec_Encode PyCodec_Encoder PyCodec_IgnoreErrors PyCodec_IncrementalDecoder PyCodec_IncrementalEncoder PyCodec_KnownEncoding PyCodec_LookupError PyCodec_NameReplaceErrors PyCodec_Register PyCodec_RegisterError PyCodec_ReplaceErrors PyCodec_StreamReader PyCodec_StreamWriter PyCodec_StrictErrors PyCodec_XMLCharRefReplaceErrors PyCompile_OpcodeStackEffect PyCompile_OpcodeStackEffectWithJump PyComplex_AsCComplex PyComplex_FromCComplex PyComplex_FromDoubles PyComplex_ImagAsDouble PyComplex_RealAsDouble PyComplex_Type DATA PyConfig_Clear PyConfig_InitIsolatedConfig PyConfig_InitPythonConfig PyConfig_Read PyConfig_SetArgv PyConfig_SetBytesArgv PyConfig_SetBytesString PyConfig_SetString PyConfig_SetWideStringList PyContextToken_Type DATA PyContextVar_Get PyContextVar_New PyContextVar_Reset PyContextVar_Set PyContextVar_Type DATA PyContext_Copy PyContext_CopyCurrent PyContext_Enter PyContext_Exit PyContext_New PyContext_Type DATA PyCoro_New PyCoro_Type DATA PyDescr_NewClassMethod PyDescr_NewGetSet PyDescr_NewMember PyDescr_NewMethod PyDescr_NewWrapper PyDictItems_Type DATA PyDictIterItem_Type DATA PyDictIterKey_Type DATA PyDictIterValue_Type DATA PyDictKeys_Type DATA PyDictProxy_New PyDictProxy_Type DATA PyDictRevIterItem_Type DATA PyDictRevIterKey_Type DATA PyDictRevIterValue_Type DATA PyDictValues_Type DATA PyDict_Clear PyDict_Contains PyDict_Copy PyDict_DelItem PyDict_DelItemString PyDict_GetItem PyDict_GetItemString PyDict_GetItemWithError PyDict_Items PyDict_Keys PyDict_Merge PyDict_MergeFromSeq2 PyDict_New PyDict_Next PyDict_SetDefault PyDict_SetItem PyDict_SetItemString PyDict_Size PyDict_Type DATA PyDict_Update PyDict_Values PyEllipsis_Type DATA PyEnum_Type DATA PyErr_BadArgument PyErr_BadInternalCall PyErr_CheckSignals PyErr_Clear PyErr_Display PyErr_ExceptionMatches PyErr_Fetch PyErr_Format PyErr_FormatV PyErr_GetExcInfo PyErr_GivenExceptionMatches PyErr_NewException PyErr_NewExceptionWithDoc PyErr_NoMemory PyErr_NormalizeException PyErr_Occurred PyErr_Print PyErr_PrintEx PyErr_ProgramText PyErr_ProgramTextObject PyErr_ResourceWarning PyErr_Restore PyErr_SetExcFromWindowsErr PyErr_SetExcFromWindowsErrWithFilename PyErr_SetExcFromWindowsErrWithFilenameObject PyErr_SetExcFromWindowsErrWithFilenameObjects PyErr_SetExcFromWindowsErrWithUnicodeFilename PyErr_SetExcInfo PyErr_SetFromErrno PyErr_SetFromErrnoWithFilename PyErr_SetFromErrnoWithFilenameObject PyErr_SetFromErrnoWithFilenameObjects PyErr_SetFromErrnoWithUnicodeFilename PyErr_SetFromWindowsErr PyErr_SetFromWindowsErrWithFilename PyErr_SetFromWindowsErrWithUnicodeFilename PyErr_SetImportError PyErr_SetImportErrorSubclass PyErr_SetInterrupt PyErr_SetNone PyErr_SetObject PyErr_SetString PyErr_SyntaxLocation PyErr_SyntaxLocationEx PyErr_SyntaxLocationObject PyErr_WarnEx PyErr_WarnExplicit PyErr_WarnExplicitFormat PyErr_WarnExplicitObject PyErr_WarnFormat PyErr_WriteUnraisable PyEval_AcquireLock PyEval_AcquireThread PyEval_CallFunction PyEval_CallMethod PyEval_CallObjectWithKeywords PyEval_EvalCode PyEval_EvalCodeEx PyEval_EvalFrame PyEval_EvalFrameEx PyEval_GetBuiltins PyEval_GetFrame PyEval_GetFuncDesc PyEval_GetFuncName PyEval_GetGlobals PyEval_GetLocals PyEval_InitThreads PyEval_MergeCompilerFlags PyEval_ReleaseLock PyEval_ReleaseThread PyEval_RestoreThread PyEval_SaveThread PyEval_SetProfile PyEval_SetTrace PyEval_ThreadsInitialized PyExc_ArithmeticError DATA PyExc_AssertionError DATA PyExc_AttributeError DATA PyExc_BaseException DATA PyExc_BlockingIOError DATA PyExc_BrokenPipeError DATA PyExc_BufferError DATA PyExc_BytesWarning DATA PyExc_ChildProcessError DATA PyExc_ConnectionAbortedError DATA PyExc_ConnectionError DATA PyExc_ConnectionRefusedError DATA PyExc_ConnectionResetError DATA PyExc_DeprecationWarning DATA PyExc_EOFError DATA PyExc_EnvironmentError DATA PyExc_Exception DATA PyExc_FileExistsError DATA PyExc_FileNotFoundError DATA PyExc_FloatingPointError DATA PyExc_FutureWarning DATA PyExc_GeneratorExit DATA PyExc_IOError DATA PyExc_ImportError DATA PyExc_ImportWarning DATA PyExc_IndentationError DATA PyExc_IndexError DATA PyExc_InterruptedError DATA PyExc_IsADirectoryError DATA PyExc_KeyError DATA PyExc_KeyboardInterrupt DATA PyExc_LookupError DATA PyExc_MemoryError DATA PyExc_ModuleNotFoundError DATA PyExc_NameError DATA PyExc_NotADirectoryError DATA PyExc_NotImplementedError DATA PyExc_OSError DATA PyExc_OverflowError DATA PyExc_PendingDeprecationWarning DATA PyExc_PermissionError DATA PyExc_ProcessLookupError DATA PyExc_RecursionError DATA PyExc_ReferenceError DATA PyExc_ResourceWarning DATA PyExc_RuntimeError DATA PyExc_RuntimeWarning DATA PyExc_StopAsyncIteration DATA PyExc_StopIteration DATA PyExc_SyntaxError DATA PyExc_SyntaxWarning DATA PyExc_SystemError DATA PyExc_SystemExit DATA PyExc_TabError DATA PyExc_TimeoutError DATA PyExc_TypeError DATA PyExc_UnboundLocalError DATA PyExc_UnicodeDecodeError DATA PyExc_UnicodeEncodeError DATA PyExc_UnicodeError DATA PyExc_UnicodeTranslateError DATA PyExc_UnicodeWarning DATA PyExc_UserWarning DATA PyExc_ValueError DATA PyExc_Warning DATA PyExc_WindowsError DATA PyExc_ZeroDivisionError DATA PyExceptionClass_Name PyException_GetCause PyException_GetContext PyException_GetTraceback PyException_SetCause PyException_SetContext PyException_SetTraceback PyFile_FromFd PyFile_GetLine PyFile_NewStdPrinter PyFile_OpenCode PyFile_OpenCodeObject PyFile_SetOpenCodeHook PyFile_WriteObject PyFile_WriteString PyFilter_Type DATA PyFloat_AsDouble PyFloat_FromDouble PyFloat_FromString PyFloat_GetInfo PyFloat_GetMax PyFloat_GetMin PyFloat_Type DATA PyFrame_BlockPop PyFrame_BlockSetup PyFrame_FastToLocals PyFrame_FastToLocalsWithError PyFrame_GetBack PyFrame_GetCode PyFrame_GetLineNumber PyFrame_LocalsToFast PyFrame_New PyFrame_Type DATA PyFrozenSet_New PyFrozenSet_Type DATA PyFunction_GetAnnotations PyFunction_GetClosure PyFunction_GetCode PyFunction_GetDefaults PyFunction_GetGlobals PyFunction_GetKwDefaults PyFunction_GetModule PyFunction_New PyFunction_NewWithQualName PyFunction_SetAnnotations PyFunction_SetClosure PyFunction_SetDefaults PyFunction_SetKwDefaults PyFunction_Type DATA PyFuture_FromAST PyFuture_FromASTObject PyGC_Collect PyGILState_Check PyGILState_Ensure PyGILState_GetThisThreadState PyGILState_Release PyGen_New PyGen_NewWithQualName PyGen_Type DATA PyGetSetDescr_Type DATA PyHash_GetFuncDef PyImport_AddModule PyImport_AddModuleObject PyImport_AppendInittab PyImport_ExecCodeModule PyImport_ExecCodeModuleEx PyImport_ExecCodeModuleObject PyImport_ExecCodeModuleWithPathnames PyImport_ExtendInittab PyImport_FrozenModules DATA PyImport_GetImporter PyImport_GetMagicNumber PyImport_GetMagicTag PyImport_GetModule PyImport_GetModuleDict PyImport_Import PyImport_ImportFrozenModule PyImport_ImportFrozenModuleObject PyImport_ImportModule PyImport_ImportModuleLevel PyImport_ImportModuleLevelObject PyImport_ImportModuleNoBlock PyImport_Inittab DATA PyImport_ReloadModule PyIndex_Check PyInstanceMethod_Function PyInstanceMethod_New PyInstanceMethod_Type DATA PyInterpreterState_Clear PyInterpreterState_Delete PyInterpreterState_Get PyInterpreterState_GetDict PyInterpreterState_GetID PyInterpreterState_Head PyInterpreterState_Main PyInterpreterState_New PyInterpreterState_Next PyInterpreterState_ThreadHead PyIter_Check PyIter_Next PyListIter_Type DATA PyListRevIter_Type DATA PyList_Append PyList_AsTuple PyList_GetItem PyList_GetSlice PyList_Insert PyList_New PyList_Reverse PyList_SetItem PyList_SetSlice PyList_Size PyList_Sort PyList_Type DATA PyLongRangeIter_Type DATA PyLong_AsDouble PyLong_AsLong PyLong_AsLongAndOverflow PyLong_AsLongLong PyLong_AsLongLongAndOverflow PyLong_AsSize_t PyLong_AsSsize_t PyLong_AsUnsignedLong PyLong_AsUnsignedLongLong PyLong_AsUnsignedLongLongMask PyLong_AsUnsignedLongMask PyLong_AsVoidPtr PyLong_FromDouble PyLong_FromLong PyLong_FromLongLong PyLong_FromSize_t PyLong_FromSsize_t PyLong_FromString PyLong_FromUnicode PyLong_FromUnicodeObject PyLong_FromUnsignedLong PyLong_FromUnsignedLongLong PyLong_FromVoidPtr PyLong_GetInfo PyLong_Type DATA PyMap_Type DATA PyMapping_Check PyMapping_GetItemString PyMapping_HasKey PyMapping_HasKeyString PyMapping_Items PyMapping_Keys PyMapping_Length PyMapping_SetItemString PyMapping_Size PyMapping_Values PyMarshal_ReadLastObjectFromFile PyMarshal_ReadLongFromFile PyMarshal_ReadObjectFromFile PyMarshal_ReadObjectFromString PyMarshal_ReadShortFromFile PyMarshal_WriteLongToFile PyMarshal_WriteObjectToFile PyMarshal_WriteObjectToString PyMem_Calloc PyMem_Free PyMem_GetAllocator PyMem_Malloc PyMem_RawCalloc PyMem_RawFree PyMem_RawMalloc PyMem_RawRealloc PyMem_Realloc PyMem_SetAllocator PyMem_SetupDebugHooks PyMemberDescr_Type DATA PyMember_GetOne PyMember_SetOne PyMemoryView_FromBuffer PyMemoryView_FromMemory PyMemoryView_FromObject PyMemoryView_GetContiguous PyMemoryView_Type DATA PyMethodDescr_Type DATA PyMethod_Function PyMethod_New PyMethod_Self PyMethod_Type DATA PyModuleDef_Init PyModuleDef_Type DATA PyModule_AddFunctions PyModule_AddIntConstant PyModule_AddObject PyModule_AddStringConstant PyModule_AddType PyModule_Create2 PyModule_ExecDef PyModule_FromDefAndSpec2 PyModule_GetDef PyModule_GetDict PyModule_GetFilename PyModule_GetFilenameObject PyModule_GetName PyModule_GetNameObject PyModule_GetState PyModule_New PyModule_NewObject PyModule_SetDocString PyModule_Type DATA PyNode_AddChild PyNode_Compile PyNode_Free PyNode_ListTree PyNode_New PyNumber_Absolute PyNumber_Add PyNumber_And PyNumber_AsSsize_t PyNumber_Check PyNumber_Divmod PyNumber_Float PyNumber_FloorDivide PyNumber_InPlaceAdd PyNumber_InPlaceAnd PyNumber_InPlaceFloorDivide PyNumber_InPlaceLshift PyNumber_InPlaceMatrixMultiply PyNumber_InPlaceMultiply PyNumber_InPlaceOr PyNumber_InPlacePower PyNumber_InPlaceRemainder PyNumber_InPlaceRshift PyNumber_InPlaceSubtract PyNumber_InPlaceTrueDivide PyNumber_InPlaceXor PyNumber_Index PyNumber_Invert PyNumber_Long PyNumber_Lshift PyNumber_MatrixMultiply PyNumber_Multiply PyNumber_Negative PyNumber_Or PyNumber_Positive PyNumber_Power PyNumber_Remainder PyNumber_Rshift PyNumber_Subtract PyNumber_ToBase PyNumber_TrueDivide PyNumber_Xor PyODictItems_Type DATA PyODictIter_Type DATA PyODictKeys_Type DATA PyODictValues_Type DATA PyODict_DelItem PyODict_New PyODict_SetItem PyODict_Type DATA PyOS_AfterFork PyOS_FSPath PyOS_InitInterrupts PyOS_InputHook DATA PyOS_InterruptOccurred PyOS_Readline PyOS_ReadlineFunctionPointer DATA PyOS_double_to_string PyOS_getsig PyOS_mystricmp PyOS_mystrnicmp PyOS_setsig PyOS_snprintf PyOS_string_to_double PyOS_strtol PyOS_strtoul PyOS_vsnprintf PyObject_ASCII PyObject_AsCharBuffer PyObject_AsFileDescriptor PyObject_AsReadBuffer PyObject_AsWriteBuffer PyObject_Bytes PyObject_Call PyObject_CallFinalizer PyObject_CallFinalizerFromDealloc PyObject_CallFunction PyObject_CallFunctionObjArgs PyObject_CallMethod PyObject_CallMethodObjArgs PyObject_CallNoArgs PyObject_CallObject PyObject_Calloc PyObject_CheckBuffer PyObject_CheckReadBuffer PyObject_ClearWeakRefs PyObject_CopyData PyObject_DelItem PyObject_DelItemString PyObject_Dir PyObject_Format PyObject_Free PyObject_GC_Del PyObject_GC_IsFinalized PyObject_GC_IsTracked PyObject_GC_Track PyObject_GC_UnTrack PyObject_GET_WEAKREFS_LISTPTR PyObject_GenericGetAttr PyObject_GenericGetDict PyObject_GenericSetAttr PyObject_GenericSetDict PyObject_GetArenaAllocator PyObject_GetAttr PyObject_GetAttrString PyObject_GetBuffer PyObject_GetItem PyObject_GetIter PyObject_HasAttr PyObject_HasAttrString PyObject_Hash PyObject_HashNotImplemented PyObject_IS_GC PyObject_Init PyObject_InitVar PyObject_IsInstance PyObject_IsSubclass PyObject_IsTrue PyObject_Length PyObject_LengthHint PyObject_Malloc PyObject_Not PyObject_Print PyObject_Realloc PyObject_Repr PyObject_RichCompare PyObject_RichCompareBool PyObject_SelfIter PyObject_SetArenaAllocator PyObject_SetAttr PyObject_SetAttrString PyObject_SetItem PyObject_Size PyObject_Str PyObject_Type PyObject_VectorcallDict PyObject_VectorcallMethod PyParser_ASTFromFile PyParser_ASTFromFileObject PyParser_ASTFromString PyParser_ASTFromStringObject PyParser_ClearError PyParser_ParseFile PyParser_ParseFileFlags PyParser_ParseFileFlagsEx PyParser_ParseFileObject PyParser_ParseString PyParser_ParseStringFlags PyParser_ParseStringFlagsFilename PyParser_ParseStringFlagsFilenameEx PyParser_ParseStringObject PyParser_SetError PyParser_SimpleParseFile PyParser_SimpleParseFileFlags PyParser_SimpleParseString PyParser_SimpleParseStringFlags PyParser_SimpleParseStringFlagsFilename PyPegen_ASTFromFileObject PyPegen_ASTFromFilename PyPegen_ASTFromString PyPegen_ASTFromStringObject PyPickleBuffer_FromObject PyPickleBuffer_GetBuffer PyPickleBuffer_Release PyPickleBuffer_Type DATA PyPreConfig_InitIsolatedConfig PyPreConfig_InitPythonConfig PyProperty_Type DATA PyRangeIter_Type DATA PyRange_Type DATA PyReversed_Type DATA PyRun_AnyFile PyRun_AnyFileEx PyRun_AnyFileExFlags PyRun_AnyFileFlags PyRun_File PyRun_FileEx PyRun_FileExFlags PyRun_FileFlags PyRun_InteractiveLoop PyRun_InteractiveLoopFlags PyRun_InteractiveOne PyRun_InteractiveOneFlags PyRun_InteractiveOneObject PyRun_SimpleFile PyRun_SimpleFileEx PyRun_SimpleFileExFlags PyRun_SimpleString PyRun_SimpleStringFlags PyRun_String PyRun_StringFlags PySTEntry_Type DATA PyST_GetScope PySeqIter_New PySeqIter_Type DATA PySequence_Check PySequence_Concat PySequence_Contains PySequence_Count PySequence_DelItem PySequence_DelSlice PySequence_Fast PySequence_GetItem PySequence_GetSlice PySequence_In PySequence_InPlaceConcat PySequence_InPlaceRepeat PySequence_Index PySequence_Length PySequence_List PySequence_Repeat PySequence_SetItem PySequence_SetSlice PySequence_Size PySequence_Tuple PySetIter_Type DATA PySet_Add PySet_Clear PySet_Contains PySet_Discard PySet_New PySet_Pop PySet_Size PySet_Type DATA PySlice_AdjustIndices PySlice_GetIndices PySlice_GetIndicesEx PySlice_New PySlice_Type DATA PySlice_Unpack PyState_AddModule PyState_FindModule PyState_RemoveModule PyStaticMethod_New PyStaticMethod_Type DATA PyStatus_Error PyStatus_Exception PyStatus_Exit PyStatus_IsError PyStatus_IsExit PyStatus_NoMemory PyStatus_Ok PyStdPrinter_Type DATA PyStructSequence_GetItem PyStructSequence_InitType PyStructSequence_InitType2 PyStructSequence_New PyStructSequence_NewType PyStructSequence_SetItem PySuper_Type DATA PySymtable_Build PySymtable_BuildObject PySymtable_Free PySymtable_Lookup PySys_AddAuditHook PySys_AddWarnOption PySys_AddWarnOptionUnicode PySys_AddXOption PySys_Audit PySys_FormatStderr PySys_FormatStdout PySys_GetObject PySys_GetXOptions PySys_HasWarnOptions PySys_ResetWarnOptions PySys_SetArgv PySys_SetArgvEx PySys_SetObject PySys_SetPath PySys_WriteStderr PySys_WriteStdout PyThreadState_Clear PyThreadState_Delete PyThreadState_DeleteCurrent PyThreadState_Get PyThreadState_GetDict PyThreadState_GetFrame PyThreadState_GetID PyThreadState_GetInterpreter PyThreadState_New PyThreadState_Next PyThreadState_SetAsyncExc PyThreadState_Swap PyThread_GetInfo PyThread_ReInitTLS PyThread_acquire_lock PyThread_acquire_lock_timed PyThread_allocate_lock PyThread_create_key PyThread_delete_key PyThread_delete_key_value PyThread_exit_thread PyThread_free_lock PyThread_get_key_value PyThread_get_stacksize PyThread_get_thread_ident PyThread_get_thread_native_id PyThread_init_thread PyThread_release_lock PyThread_set_key_value PyThread_set_stacksize PyThread_start_new_thread PyThread_tss_alloc PyThread_tss_create PyThread_tss_delete PyThread_tss_free PyThread_tss_get PyThread_tss_is_created PyThread_tss_set PyToken_OneChar PyToken_ThreeChars PyToken_TwoChars PyTraceBack_Here PyTraceBack_Print PyTraceBack_Type DATA PyTraceMalloc_Track PyTraceMalloc_Untrack PyTupleIter_Type DATA PyTuple_GetItem PyTuple_GetSlice PyTuple_New PyTuple_Pack PyTuple_SetItem PyTuple_Size PyTuple_Type DATA PyType_ClearCache PyType_FromModuleAndSpec PyType_FromSpec PyType_FromSpecWithBases PyType_GenericAlloc PyType_GenericNew PyType_GetFlags PyType_GetModule PyType_GetModuleState PyType_GetSlot PyType_IsSubtype PyType_Modified PyType_Ready PyType_Type DATA PyUnicodeDecodeError_Create PyUnicodeDecodeError_GetEncoding PyUnicodeDecodeError_GetEnd PyUnicodeDecodeError_GetObject PyUnicodeDecodeError_GetReason PyUnicodeDecodeError_GetStart PyUnicodeDecodeError_SetEnd PyUnicodeDecodeError_SetReason PyUnicodeDecodeError_SetStart PyUnicodeEncodeError_Create PyUnicodeEncodeError_GetEncoding PyUnicodeEncodeError_GetEnd PyUnicodeEncodeError_GetObject PyUnicodeEncodeError_GetReason PyUnicodeEncodeError_GetStart PyUnicodeEncodeError_SetEnd PyUnicodeEncodeError_SetReason PyUnicodeEncodeError_SetStart PyUnicodeIter_Type DATA PyUnicodeTranslateError_Create PyUnicodeTranslateError_GetEnd PyUnicodeTranslateError_GetObject PyUnicodeTranslateError_GetReason PyUnicodeTranslateError_GetStart PyUnicodeTranslateError_SetEnd PyUnicodeTranslateError_SetReason PyUnicodeTranslateError_SetStart PyUnicode_Append PyUnicode_AppendAndDel PyUnicode_AsASCIIString PyUnicode_AsCharmapString PyUnicode_AsDecodedObject PyUnicode_AsDecodedUnicode PyUnicode_AsEncodedObject PyUnicode_AsEncodedString PyUnicode_AsEncodedUnicode PyUnicode_AsLatin1String PyUnicode_AsMBCSString PyUnicode_AsRawUnicodeEscapeString PyUnicode_AsUCS4 PyUnicode_AsUCS4Copy PyUnicode_AsUTF16String PyUnicode_AsUTF32String PyUnicode_AsUTF8 PyUnicode_AsUTF8AndSize PyUnicode_AsUTF8String PyUnicode_AsUnicode PyUnicode_AsUnicodeAndSize PyUnicode_AsUnicodeCopy PyUnicode_AsUnicodeEscapeString PyUnicode_AsWideChar PyUnicode_AsWideCharString PyUnicode_BuildEncodingMap PyUnicode_Compare PyUnicode_CompareWithASCIIString PyUnicode_Concat PyUnicode_Contains PyUnicode_CopyCharacters PyUnicode_Count PyUnicode_Decode PyUnicode_DecodeASCII PyUnicode_DecodeCharmap PyUnicode_DecodeCodePageStateful PyUnicode_DecodeFSDefault PyUnicode_DecodeFSDefaultAndSize PyUnicode_DecodeLatin1 PyUnicode_DecodeLocale PyUnicode_DecodeLocaleAndSize PyUnicode_DecodeMBCS PyUnicode_DecodeMBCSStateful PyUnicode_DecodeRawUnicodeEscape PyUnicode_DecodeUTF16 PyUnicode_DecodeUTF16Stateful PyUnicode_DecodeUTF32 PyUnicode_DecodeUTF32Stateful PyUnicode_DecodeUTF7 PyUnicode_DecodeUTF7Stateful PyUnicode_DecodeUTF8 PyUnicode_DecodeUTF8Stateful PyUnicode_DecodeUnicodeEscape PyUnicode_Encode PyUnicode_EncodeASCII PyUnicode_EncodeCharmap PyUnicode_EncodeCodePage PyUnicode_EncodeDecimal PyUnicode_EncodeFSDefault PyUnicode_EncodeLatin1 PyUnicode_EncodeLocale PyUnicode_EncodeMBCS PyUnicode_EncodeRawUnicodeEscape PyUnicode_EncodeUTF16 PyUnicode_EncodeUTF32 PyUnicode_EncodeUTF7 PyUnicode_EncodeUTF8 PyUnicode_EncodeUnicodeEscape PyUnicode_FSConverter PyUnicode_FSDecoder PyUnicode_Fill PyUnicode_Find PyUnicode_FindChar PyUnicode_Format PyUnicode_FromEncodedObject PyUnicode_FromFormat PyUnicode_FromFormatV PyUnicode_FromKindAndData PyUnicode_FromObject PyUnicode_FromOrdinal PyUnicode_FromString PyUnicode_FromStringAndSize PyUnicode_FromUnicode PyUnicode_FromWideChar PyUnicode_GetDefaultEncoding PyUnicode_GetLength PyUnicode_GetMax PyUnicode_GetSize PyUnicode_InternFromString PyUnicode_InternImmortal PyUnicode_InternInPlace PyUnicode_IsIdentifier PyUnicode_Join PyUnicode_New PyUnicode_Partition PyUnicode_RPartition PyUnicode_RSplit PyUnicode_ReadChar PyUnicode_Replace PyUnicode_Resize PyUnicode_RichCompare PyUnicode_Split PyUnicode_Splitlines PyUnicode_Substring PyUnicode_Tailmatch PyUnicode_TransformDecimalToASCII PyUnicode_Translate PyUnicode_TranslateCharmap PyUnicode_Type DATA PyUnicode_WriteChar PyVectorcall_Call PyWeakref_GetObject PyWeakref_NewProxy PyWeakref_NewRef PyWideStringList_Append PyWideStringList_Insert PyWrapperDescr_Type DATA PyWrapper_New PyZip_Type DATA Py_AddPendingCall Py_AtExit Py_BuildValue Py_BytesMain Py_BytesWarningFlag DATA Py_CompileString Py_CompileStringExFlags Py_CompileStringFlags Py_CompileStringObject Py_DebugFlag DATA Py_DecRef Py_DecodeLocale Py_DontWriteBytecodeFlag DATA Py_EncodeLocale Py_EndInterpreter Py_EnterRecursiveCall Py_Exit Py_ExitStatusException Py_FatalError Py_FdIsInteractive Py_FileSystemDefaultEncodeErrors DATA Py_FileSystemDefaultEncoding DATA Py_Finalize Py_FinalizeEx Py_FrozenFlag DATA Py_GenericAlias Py_GenericAliasType DATA Py_GetArgcArgv Py_GetBuildInfo Py_GetCompiler Py_GetCopyright Py_GetExecPrefix Py_GetPath Py_GetPlatform Py_GetPrefix Py_GetProgramFullPath Py_GetProgramName Py_GetPythonHome Py_GetRecursionLimit Py_GetVersion Py_HasFileSystemDefaultEncoding DATA Py_HashRandomizationFlag DATA Py_IgnoreEnvironmentFlag DATA Py_IncRef Py_Initialize Py_InitializeEx Py_InitializeFromConfig Py_InspectFlag DATA Py_InteractiveFlag DATA Py_IsInitialized Py_IsolatedFlag DATA Py_LeaveRecursiveCall Py_LegacyWindowsFSEncodingFlag DATA Py_LegacyWindowsStdioFlag DATA Py_Main Py_MakePendingCalls Py_NewInterpreter Py_NoSiteFlag DATA Py_NoUserSiteDirectory DATA Py_OptimizeFlag DATA Py_PreInitialize Py_PreInitializeFromArgs Py_PreInitializeFromBytesArgs Py_QuietFlag DATA Py_ReprEnter Py_ReprLeave Py_RunMain Py_SetPath Py_SetProgramName Py_SetPythonHome Py_SetRecursionLimit Py_SetStandardStreamEncoding Py_SymtableString Py_SymtableStringObject Py_UNICODE_strcat Py_UNICODE_strchr Py_UNICODE_strcmp Py_UNICODE_strcpy Py_UNICODE_strlen Py_UNICODE_strncmp Py_UNICODE_strncpy Py_UNICODE_strrchr Py_UTF8Mode DATA Py_UnbufferedStdioFlag DATA Py_UniversalNewlineFgets Py_VaBuildValue Py_VerboseFlag DATA Py_hexdigits DATA _PyAST_GetDocString _PyAST_Optimize _PyAccu_Accumulate _PyAccu_Destroy _PyAccu_Finish _PyAccu_FinishAsList _PyAccu_Init _PyArg_BadArgument _PyArg_CheckPositional _PyArg_NoKeywords _PyArg_NoKwnames _PyArg_NoPositional _PyArg_ParseStack _PyArg_ParseStackAndKeywords _PyArg_ParseStackAndKeywords_SizeT _PyArg_ParseStack_SizeT _PyArg_ParseTupleAndKeywordsFast _PyArg_ParseTupleAndKeywordsFast_SizeT _PyArg_ParseTupleAndKeywords_SizeT _PyArg_ParseTuple_SizeT _PyArg_Parse_SizeT _PyArg_UnpackKeywords _PyArg_UnpackStack _PyArg_VaParseTupleAndKeywordsFast _PyArg_VaParseTupleAndKeywordsFast_SizeT _PyArg_VaParseTupleAndKeywords_SizeT _PyArg_VaParse_SizeT _PyArgv_AsWstrList _PyAsyncGenASend_Type DATA _PyAsyncGenAThrow_Type DATA _PyAsyncGenWrappedValue_Type DATA _PyByteArray_empty_string DATA _PyBytesIOBuffer_Type DATA _PyBytesWriter_Alloc _PyBytesWriter_Dealloc _PyBytesWriter_Finish _PyBytesWriter_Init _PyBytesWriter_Prepare _PyBytesWriter_Resize _PyBytesWriter_WriteBytes _PyBytes_DecodeEscape _PyBytes_FormatEx _PyBytes_FromHex _PyBytes_Join _PyBytes_Resize _PyCode_CheckLineNumber _PyCode_ConstantKey _PyCode_GetExtra _PyCode_SetExtra _PyCodecInfo_GetIncrementalDecoder _PyCodecInfo_GetIncrementalEncoder _PyCodec_DecodeText _PyCodec_EncodeText _PyCodec_Forget _PyCodec_Lookup _PyCodec_LookupTextEncoding _PyComplex_FormatAdvancedWriter _PyConfig_InitCompatConfig _PyContext_NewHamtForTests _PyCoroWrapper_Type DATA _PyCrossInterpreterData_Lookup _PyCrossInterpreterData_NewObject _PyCrossInterpreterData_RegisterClass _PyCrossInterpreterData_Release _PyDebugAllocatorStats _PyDictView_Intersect _PyDictView_New _PyDict_CheckConsistency _PyDict_Contains _PyDict_DebugMallocStats _PyDict_DelItemId _PyDict_DelItemIf _PyDict_DelItem_KnownHash _PyDict_GetItemId _PyDict_GetItemIdWithError _PyDict_GetItemStringWithError _PyDict_GetItem_KnownHash _PyDict_HasOnlyStringKeys _PyDict_MaybeUntrack _PyDict_MergeEx _PyDict_NewPresized _PyDict_Next _PyDict_Pop _PyDict_SetItemId _PyDict_SetItem_KnownHash _PyDict_SizeOf _PyErr_BadInternalCall _PyErr_ChainExceptions _PyErr_ChainStackItem _PyErr_CheckSignals _PyErr_CheckSignalsTstate _PyErr_Clear _PyErr_Display _PyErr_ExceptionMatches _PyErr_Fetch _PyErr_Format _PyErr_FormatFromCause _PyErr_FormatFromCauseTstate _PyErr_GetExcInfo _PyErr_GetTopmostException _PyErr_NoMemory _PyErr_NormalizeException _PyErr_Print _PyErr_Restore _PyErr_SetKeyError _PyErr_SetNone _PyErr_SetObject _PyErr_SetString _PyErr_TrySetFromCause _PyErr_WriteUnraisableMsg _PyEval_AddPendingCall _PyEval_CallTracing _PyEval_EvalCodeWithName _PyEval_EvalFrameDefault _PyEval_GetAsyncGenFinalizer _PyEval_GetAsyncGenFirstiter _PyEval_GetBuiltinId _PyEval_GetCoroutineOriginTrackingDepth _PyEval_GetSwitchInterval _PyEval_RequestCodeExtraIndex _PyEval_SetAsyncGenFinalizer _PyEval_SetAsyncGenFirstiter _PyEval_SetCoroutineOriginTrackingDepth _PyEval_SetProfile _PyEval_SetSwitchInterval _PyEval_SetTrace _PyEval_SignalAsyncExc _PyEval_SignalReceived _PyEval_SliceIndex _PyEval_SliceIndexNotNone _PyFloat_DebugMallocStats _PyFloat_FormatAdvancedWriter _PyFloat_Pack2 _PyFloat_Pack4 _PyFloat_Pack8 _PyFloat_Unpack2 _PyFloat_Unpack4 _PyFloat_Unpack8 _PyFrame_DebugMallocStats _PyFunction_Vectorcall _PyGC_CollectIfEnabled _PyGC_CollectNoFail _PyGC_InitState _PyGILState_GetInterpreterStateUnsafe _PyGILState_Reinit _PyGen_FetchStopIterationValue _PyGen_Finalize _PyGen_Send _PyGen_SetStopIterationValue _PyHamtItems_Type DATA _PyHamtKeys_Type DATA _PyHamtValues_Type DATA _PyHamt_ArrayNode_Type DATA _PyHamt_BitmapNode_Type DATA _PyHamt_CollisionNode_Type DATA _PyHamt_Type DATA _PyImport_AcquireLock _PyImport_FindExtensionObject _PyImport_FixupBuiltin _PyImport_FixupExtensionObject _PyImport_GetModuleId _PyImport_IsInitialized _PyImport_ReleaseLock _PyImport_SetModule _PyImport_SetModuleString _PyInterpreterID_LookUp _PyInterpreterID_New _PyInterpreterID_Type DATA _PyInterpreterState_DeleteExceptMain _PyInterpreterState_Enable _PyInterpreterState_GetConfig _PyInterpreterState_GetEvalFrameFunc _PyInterpreterState_GetIDObject _PyInterpreterState_GetMainModule _PyInterpreterState_IDDecref _PyInterpreterState_IDIncref _PyInterpreterState_IDInitref _PyInterpreterState_LookUpID _PyInterpreterState_RequireIDRef _PyInterpreterState_RequiresIDRef _PyInterpreterState_SetEvalFrameFunc _PyList_DebugMallocStats _PyList_Extend _PyLong_AsByteArray _PyLong_AsInt _PyLong_AsTime_t _PyLong_Copy _PyLong_DigitValue DATA _PyLong_DivmodNear _PyLong_Format _PyLong_FormatAdvancedWriter _PyLong_FormatBytesWriter _PyLong_FormatWriter _PyLong_Frexp _PyLong_FromByteArray _PyLong_FromBytes _PyLong_FromNbIndexOrNbInt _PyLong_FromNbInt _PyLong_FromTime_t _PyLong_GCD _PyLong_Lshift _PyLong_New _PyLong_NumBits _PyLong_One DATA _PyLong_Rshift _PyLong_Sign _PyLong_Size_t_Converter _PyLong_UnsignedInt_Converter _PyLong_UnsignedLongLong_Converter _PyLong_UnsignedLong_Converter _PyLong_UnsignedShort_Converter _PyLong_Zero DATA _PyManagedBuffer_Type DATA _PyMem_GetAllocatorName _PyMem_GetCurrentAllocatorName _PyMem_RawStrdup _PyMem_RawWcsdup _PyMem_SetDefaultAllocator _PyMem_SetupAllocators _PyMem_Strdup _PyMethodWrapper_Type DATA _PyModuleSpec_IsInitializing _PyModule_Clear _PyModule_ClearDict _PyModule_CreateInitialized _PyNamespace_New _PyNamespace_Type DATA _PyNode_SizeOf _PyNone_Type DATA _PyNotImplemented_Type DATA _PyOS_InterruptOccurred _PyOS_IsMainThread _PyOS_ReadlineTState DATA _PyOS_SigintEvent _PyOS_URandom _PyOS_URandomNonblock _PyObject_AssertFailed _PyObject_Call _PyObject_CallFunction_SizeT _PyObject_CallMethodId _PyObject_CallMethodIdObjArgs _PyObject_CallMethodId_SizeT _PyObject_CallMethod_SizeT _PyObject_Call_Prepend _PyObject_CheckConsistency _PyObject_CheckCrossInterpreterData _PyObject_DebugMallocStats _PyObject_DebugTypeStats _PyObject_Dump _PyObject_FastCallDictTstate _PyObject_FunctionStr _PyObject_GC_Calloc _PyObject_GC_Malloc _PyObject_GC_New _PyObject_GC_NewVar _PyObject_GC_Resize _PyObject_GenericGetAttrWithDict _PyObject_GenericSetAttrWithDict _PyObject_GetAttrId _PyObject_GetCrossInterpreterData _PyObject_GetDictPtr _PyObject_GetMethod _PyObject_HasAttrId _PyObject_HasLen _PyObject_IsAbstract _PyObject_IsFreed _PyObject_LookupAttr _PyObject_LookupAttrId _PyObject_LookupSpecial _PyObject_MakeTpCall _PyObject_New _PyObject_NewVar _PyObject_NextNotImplemented _PyObject_RealIsInstance _PyObject_RealIsSubclass _PyObject_SetAttrId _PyParser_Grammar DATA _PyParser_TokenNames DATA _PyPreConfig_InitCompatConfig _PyRuntime DATA _PyRuntimeState_Fini _PyRuntimeState_Init _PyRuntime_Finalize _PyRuntime_Initialize _PySequence_BytesToCharpArray _PySequence_IterSearch _PySet_Dummy DATA _PySet_NextEntry _PySet_Update _PySignal_AfterFork _PySlice_FromIndices _PySlice_GetLongIndices _PyStack_AsDict _PyState_AddModule _PySys_GetObjectId _PySys_GetSizeOf _PySys_SetObjectId _PyThreadState_DeleteCurrent _PyThreadState_DeleteExcept _PyThreadState_GetDict _PyThreadState_Init _PyThreadState_Prealloc _PyThreadState_Swap _PyThreadState_UncheckedGet _PyThread_CurrentFrames _PyTime_AsMicroseconds _PyTime_AsMilliseconds _PyTime_AsNanosecondsObject _PyTime_AsSecondsDouble _PyTime_AsTimeval _PyTime_AsTimevalTime_t _PyTime_AsTimeval_noraise _PyTime_FromMillisecondsObject _PyTime_FromNanoseconds _PyTime_FromNanosecondsObject _PyTime_FromSeconds _PyTime_FromSecondsObject _PyTime_GetMonotonicClock _PyTime_GetMonotonicClockWithInfo _PyTime_GetPerfCounter _PyTime_GetPerfCounterWithInfo _PyTime_GetSystemClock _PyTime_GetSystemClockWithInfo _PyTime_Init _PyTime_MulDiv _PyTime_ObjectToTime_t _PyTime_ObjectToTimespec _PyTime_ObjectToTimeval _PyTime_gmtime _PyTime_localtime _PyTraceMalloc_GetTraceback _PyTraceMalloc_NewReference _PyTraceback_Add _PyTrash_begin _PyTrash_deposit_object _PyTrash_destroy_chain _PyTrash_end _PyTrash_thread_deposit_object _PyTrash_thread_destroy_chain _PyTuple_DebugMallocStats _PyTuple_MaybeUntrack _PyTuple_Resize _PyType_CalculateMetaclass _PyType_CheckConsistency _PyType_GetDocFromInternalDoc _PyType_GetTextSignatureFromInternalDoc _PyType_Lookup _PyType_LookupId _PyType_Name _PyUnicodeTranslateError_Create _PyUnicodeWriter_Dealloc _PyUnicodeWriter_Finish _PyUnicodeWriter_Init _PyUnicodeWriter_PrepareInternal _PyUnicodeWriter_PrepareKindInternal _PyUnicodeWriter_WriteASCIIString _PyUnicodeWriter_WriteChar _PyUnicodeWriter_WriteLatin1String _PyUnicodeWriter_WriteStr _PyUnicodeWriter_WriteSubstring _PyUnicode_AsASCIIString _PyUnicode_AsLatin1String _PyUnicode_AsUTF8String _PyUnicode_AsUnicode _PyUnicode_CheckConsistency _PyUnicode_Copy _PyUnicode_DecodeRawUnicodeEscapeStateful _PyUnicode_DecodeUnicodeEscapeInternal _PyUnicode_DecodeUnicodeEscapeStateful _PyUnicode_EQ _PyUnicode_EncodeCharmap _PyUnicode_EncodeUTF16 _PyUnicode_EncodeUTF32 _PyUnicode_EncodeUTF7 _PyUnicode_EqualToASCIIId _PyUnicode_EqualToASCIIString _PyUnicode_FastCopyCharacters _PyUnicode_FastFill _PyUnicode_FindMaxChar _PyUnicode_FormatAdvancedWriter _PyUnicode_FormatLong _PyUnicode_FromASCII _PyUnicode_FromId _PyUnicode_InsertThousandsGrouping _PyUnicode_IsAlpha _PyUnicode_IsCaseIgnorable _PyUnicode_IsCased _PyUnicode_IsDecimalDigit _PyUnicode_IsDigit _PyUnicode_IsLinebreak _PyUnicode_IsLowercase _PyUnicode_IsNumeric _PyUnicode_IsPrintable _PyUnicode_IsTitlecase _PyUnicode_IsUppercase _PyUnicode_IsWhitespace _PyUnicode_IsXidContinue _PyUnicode_IsXidStart _PyUnicode_JoinArray _PyUnicode_Ready _PyUnicode_ScanIdentifier _PyUnicode_ToDecimalDigit _PyUnicode_ToDigit _PyUnicode_ToFoldedFull _PyUnicode_ToLowerFull _PyUnicode_ToLowercase _PyUnicode_ToNumeric _PyUnicode_ToTitleFull _PyUnicode_ToTitlecase _PyUnicode_ToUpperFull _PyUnicode_ToUppercase _PyUnicode_TransformDecimalAndSpaceToASCII _PyUnicode_XStrip _PyWarnings_Init _PyWeakref_CallableProxyType DATA _PyWeakref_ClearRef _PyWeakref_GetWeakrefCount _PyWeakref_ProxyType DATA _PyWeakref_RefType DATA _PyWideStringList_AsList _PyWideStringList_Clear _PyWideStringList_Copy _PyWideStringList_Extend _PyWindowsConsoleIO_Type DATA _Py_BreakPoint _Py_BuildValue_SizeT _Py_CheckFunctionResult _Py_CheckRecursionLimit DATA _Py_CheckRecursiveCall _Py_ClearArgcArgv _Py_ClearStandardStreamEncoding _Py_CoerceLegacyLocale _Py_Dealloc _Py_DecodeLocaleEx _Py_DecodeUTF8Ex _Py_DecodeUTF8_surrogateescape _Py_DisplaySourceLine _Py_EllipsisObject DATA _Py_EncodeLocaleEx _Py_EncodeLocaleRaw _Py_EncodeUTF8Ex _Py_FalseStruct DATA _Py_FatalErrorFormat _Py_FatalErrorFunc _Py_FatalError_TstateNULL _Py_FreeCharPArray _Py_GetAllocatedBlocks _Py_GetConfig _Py_GetConfigsAsDict _Py_GetEnv _Py_GetErrorHandler _Py_GetForceASCII _Py_GetLocaleconvNumeric _Py_HandleSystemExit _Py_HashBytes _Py_HashDouble _Py_HashPointer _Py_HashPointerRaw _Py_HashSecret DATA _Py_InitializeMain _Py_IsCoreInitialized _Py_IsFinalizing _Py_IsLocaleCoercionTarget _Py_LegacyLocaleDetected _Py_Mangle _Py_NewInterpreter _Py_NewReference _Py_NoneStruct DATA _Py_NotImplementedStruct DATA _Py_PackageContext DATA _Py_PreInitializeFromConfig _Py_PreInitializeFromPyArgv _Py_PyAtExit _Py_ResetForceASCII _Py_RestoreSignals _Py_SetLocaleFromEnv _Py_SetProgramFullPath _Py_SourceAsString _Py_SwappedOp DATA _Py_SymtableStringObjectFlags _Py_TrueStruct DATA _Py_UnhandledKeyboardInterrupt DATA _Py_VaBuildStack _Py_VaBuildStack_SizeT _Py_VaBuildValue_SizeT _Py_abspath _Py_add_one_to_index_C _Py_add_one_to_index_F _Py_ascii_whitespace DATA _Py_bit_length _Py_c_abs _Py_c_diff _Py_c_neg _Py_c_pow _Py_c_prod _Py_c_quot _Py_c_sum _Py_convert_optional_to_ssize_t _Py_ctype_table DATA _Py_ctype_tolower DATA _Py_ctype_toupper DATA _Py_device_encoding _Py_dg_dtoa _Py_dg_freedtoa _Py_dg_infinity _Py_dg_stdnan _Py_dg_strtod _Py_dup _Py_fopen _Py_fopen_obj _Py_fstat _Py_fstat_noraise _Py_get_env_flag _Py_get_inheritable _Py_get_xoption _Py_gitidentifier _Py_gitversion _Py_hashtable_clear _Py_hashtable_compare_direct _Py_hashtable_destroy _Py_hashtable_foreach _Py_hashtable_get _Py_hashtable_hash_ptr _Py_hashtable_new _Py_hashtable_new_full _Py_hashtable_set _Py_hashtable_size _Py_hashtable_steal _Py_open _Py_open_noraise _Py_parse_inf_or_nan _Py_path_config DATA _Py_read _Py_set_inheritable _Py_set_inheritable_async_safe _Py_stat _Py_str_to_int _Py_strhex _Py_strhex_bytes _Py_strhex_bytes_with_sep _Py_strhex_with_sep _Py_string_to_number_with_underscores _Py_tracemalloc_config DATA _Py_wfopen _Py_wgetcwd _Py_write _Py_write_noraise