├── .github ├── FUNDING.yml ├── dependabot.yml ├── scripts │ └── copy_winpty.sh └── workflows │ ├── linux_sdist.yml │ ├── windows_build.yml │ └── windows_release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── RELEASE.md ├── nuget.config ├── pyproject.toml ├── runtests.py ├── src └── lib.rs └── winpty ├── __init__.py ├── enums.py ├── ptyprocess.py ├── tests ├── __init__.py ├── test_pty.py └── test_ptyprocess.py └── winpty.pyi /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: andfoy 2 | tidelift: pypi/pywinpty 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/scripts/copy_winpty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/.github/scripts/copy_winpty.sh -------------------------------------------------------------------------------- /.github/workflows/linux_sdist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/.github/workflows/linux_sdist.yml -------------------------------------------------------------------------------- /.github/workflows/windows_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/.github/workflows/windows_build.yml -------------------------------------------------------------------------------- /.github/workflows/windows_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/.github/workflows/windows_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/RELEASE.md -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/nuget.config -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/runtests.py -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/src/lib.rs -------------------------------------------------------------------------------- /winpty/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/winpty/__init__.py -------------------------------------------------------------------------------- /winpty/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/winpty/enums.py -------------------------------------------------------------------------------- /winpty/ptyprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/winpty/ptyprocess.py -------------------------------------------------------------------------------- /winpty/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/winpty/tests/__init__.py -------------------------------------------------------------------------------- /winpty/tests/test_pty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/winpty/tests/test_pty.py -------------------------------------------------------------------------------- /winpty/tests/test_ptyprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/winpty/tests/test_ptyprocess.py -------------------------------------------------------------------------------- /winpty/winpty.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andfoy/pywinpty/HEAD/winpty/winpty.pyi --------------------------------------------------------------------------------