History log of /external/python/cpython2/Demo/pysvr/pysvr.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
c83ea137d7e717f764e2f31fc2544f522de7d857 09-May-2010 Antoine Pitrou <solipsis@pitrou.net> Untabify C files. Will watch buildbots.
/external/python/cpython2/Demo/pysvr/pysvr.c
dcea37026eb5ee263368247940f0ee4c855f1d8a 01-Mar-2002 Martin v. Löwis <martin@v.loewis.de> Patch #524008: Fix portability bug on new POSIX hosts
/external/python/cpython2/Demo/pysvr/pysvr.c
885d457709c1d680c899dc3d035a47c8fb514cfa 28-Nov-2001 Tim Peters <tim.peters@gmail.com> sprintf -> PyOS_snprintf in some "obviously safe" cases.
Also changed <>-style #includes to ""-style in some places where the
former didn't make sense.
/external/python/cpython2/Demo/pysvr/pysvr.c
2cffc7d4202fc1197280a05d998075551b459283 03-Nov-2000 Thomas Wouters <thomas@python.org> Move our own getopt() implementation to _PyOS_GetOpt(), and use it
regardless of whether the system getopt() does what we want. This avoids the
hassle with prototypes and externs, and the check to see if the system
getopt() does what we want. Prefix optind, optarg and opterr with _PyOS_ to
avoid name clashes. Add new include file to define the right symbols. Fix
Demo/pyserv/pyserv.c to include getopt.h itself, instead of relying on
Python to provide it.
/external/python/cpython2/Demo/pysvr/pysvr.c
7889010731eec703eda68fb32b6805c65e3f1cbf 22-Jul-2000 Thomas Wouters <thomas@python.org> Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,
char**) and return an int even on PC platforms. If not, please fix
PC/utils/makesrc.c ;-P
/external/python/cpython2/Demo/pysvr/pysvr.c
caf2f8e3c71cad510852939d425581acbff6317b 06-Oct-1999 Guido van Rossum <guido@python.org> Add -v flag. Comment duplicate Py_Finalize().
/external/python/cpython2/Demo/pysvr/pysvr.c
643f8f62b4a81d8d842d530f54d83f7751b2fb6e 25-Dec-1997 Guido van Rossum <guido@python.org> Add setsockopt...SO_REUSEADDR to avoid stupid waiting when killing and
restarting the server.
/external/python/cpython2/Demo/pysvr/pysvr.c
aa61505fd222fb15cc2507c8a2a44dcfce0c971f 21-Aug-1997 Guido van Rossum <guido@python.org> Use a counter instead of a Boolean to check for initialized; n calls
to Py_Initialize will be undone by n calls to Py_Uninitialize.
/external/python/cpython2/Demo/pysvr/pysvr.c
c46d22e52e7c880e6ab2d743c27235322ad95317 02-Aug-1997 Guido van Rossum <guido@python.org> Print ps (process status) for us when starting a new thread.

Even less shuffling of stdout (only at start of new interpreter).

Interact properly with new interpreter initialization conventions
(must use Py_Initialize/Py_Finalize *and*
Py_NewInterpreter/Py_EndInterpreter).

Probably more minor changes.
/external/python/cpython2/Demo/pysvr/pysvr.c
630924f190a4c3088cc4d3f275390d23e9028ba8 25-Jul-1997 Guido van Rossum <guido@python.org> Use Py_NewInterpreter() and friends. Remove saving/restoring of std files.
/external/python/cpython2/Demo/pysvr/pysvr.c
e0c69013697efbff6edba8a3c349a8ef64a5fa68 19-Jul-1997 Guido van Rossum <guido@python.org> Added leading comment and security check.
/external/python/cpython2/Demo/pysvr/pysvr.c
5c8b9911750565713cba39fd8835cc951ddf2adf 19-Jul-1997 Guido van Rossum <guido@python.org> New example of threaded embedding
/external/python/cpython2/Demo/pysvr/pysvr.c