cpython/Demo/pysvr
Guido van Rossum b940e113bf SF patch 1631942 by Collin Winter:
(a) "except E, V" -> "except E as V"
(b) V is now limited to a simple name (local variable)
(c) V is now deleted at the end of the except block
2007-01-10 16:19:56 +00:00
..
Makefile Use the build directory by default, and update the version. 2001-09-05 19:51:08 +00:00
README New example of threaded embedding 1997-07-19 21:00:47 +00:00
pysvr.c Patch #524008: Fix portability bug on new POSIX hosts 2002-03-01 13:15:30 +00:00
pysvr.py SF patch 1631942 by Collin Winter: 2007-01-10 16:19:56 +00:00

README

This is an example of a multi-threaded C application embedding a
Python interpreter.

The particular application is a multi-threaded telnet-like server that
provides you with a Python prompt (instead of a shell prompt).

The file pysvr.py is a prototype in Python.

THIS APPLICATION IS NOT SECURE -- ONLY USE IT FOR TESTING!