diff options
author | Guido van Rossum <guido@python.org> | 1997-07-19 21:00:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-19 21:00:47 (GMT) |
commit | 5c8b9911750565713cba39fd8835cc951ddf2adf (patch) | |
tree | f161359096a8e5a11630f55d6091e5bad8a44680 /Demo/pysvr/README | |
parent | 6e614e3d2a94abb329e727ca41bbf4fbba268701 (diff) | |
download | cpython-5c8b9911750565713cba39fd8835cc951ddf2adf.zip cpython-5c8b9911750565713cba39fd8835cc951ddf2adf.tar.gz cpython-5c8b9911750565713cba39fd8835cc951ddf2adf.tar.bz2 |
New example of threaded embedding
Diffstat (limited to 'Demo/pysvr/README')
-rw-r--r-- | Demo/pysvr/README | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Demo/pysvr/README b/Demo/pysvr/README new file mode 100644 index 0000000..5e64e38 --- /dev/null +++ b/Demo/pysvr/README @@ -0,0 +1,9 @@ +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! |