├── .gitignore ├── INSTALL.rst ├── LICENSE.rst ├── MANIFEST.in ├── Makefile ├── README.rst ├── _curses_panel.c ├── _cursesmodule.c ├── curses.h ├── curspriv.h ├── gen ├── distutils.cfg ├── libpython23.a ├── pdcurses-win32a.def ├── pdcurses-win32a.lib ├── pdcurses.def ├── pdcurses.lib ├── setup-win32a.py └── setup.py ├── panel.h ├── setup.py ├── setup.py_template └── term.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/INSTALL.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/README.rst -------------------------------------------------------------------------------- /_curses_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/_curses_panel.c -------------------------------------------------------------------------------- /_cursesmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/_cursesmodule.c -------------------------------------------------------------------------------- /curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/curses.h -------------------------------------------------------------------------------- /curspriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/curspriv.h -------------------------------------------------------------------------------- /gen/distutils.cfg: -------------------------------------------------------------------------------- 1 | [build] 2 | compiler=mingw32 3 | -------------------------------------------------------------------------------- /gen/libpython23.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/gen/libpython23.a -------------------------------------------------------------------------------- /gen/pdcurses-win32a.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/gen/pdcurses-win32a.def -------------------------------------------------------------------------------- /gen/pdcurses-win32a.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/gen/pdcurses-win32a.lib -------------------------------------------------------------------------------- /gen/pdcurses.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/gen/pdcurses.def -------------------------------------------------------------------------------- /gen/pdcurses.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/gen/pdcurses.lib -------------------------------------------------------------------------------- /gen/setup-win32a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/gen/setup-win32a.py -------------------------------------------------------------------------------- /gen/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/gen/setup.py -------------------------------------------------------------------------------- /panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/panel.h -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/setup.py -------------------------------------------------------------------------------- /setup.py_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/setup.py_template -------------------------------------------------------------------------------- /term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmcb/python-pdcurses/HEAD/term.h --------------------------------------------------------------------------------