summaryrefslogtreecommitdiffstats
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Rearranged and added comments to object.h, to clarify many thingsTim Peters2002-07-071-2/+3
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-2/+0
* Got rid of an extraneous semicolon.Jack Jansen2002-06-261-1/+1
* Fix the docstring for sys.getrefcount().Fred Drake2002-06-201-2/+3
* Patch #505375: Make doc strings optional.Martin v. Löwis2002-06-091-30/+53
* Change sys_exit to use METH_VARARGS.Neal Norwitz2002-03-271-2/+5
* Fix wording of sys.exit docstring. Close SF bug 534113.Neil Schemenauer2002-03-231-1/+1
* SF #506611, fix sys.setprofile(), sys.settrace() core dumpsNeal Norwitz2002-03-031-2/+2
* Fix spelling mistakes. Bugfix candidates.Neal Norwitz2002-01-291-3/+3
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, toTim Peters2001-12-031-8/+1
* mywrite(): The test for trouble in PyOS_vsnprintf was wrong on bothTim Peters2001-12-021-3/+10
* Use PyOS_vsnprintf() and check its return value.Jeremy Hylton2001-11-281-2/+9
* Include sys_getdefaultencoding in #ifdef Py_USING_UNICODE. Fixes #479571.Martin v. Löwis2001-11-091-2/+2
* Convert getrefcount() to METH_O, and sys_excepthook() to useFred Drake2001-10-241-6/+3
* Rationalize the events passed to the profiler (no changes for the tracer).Fred Drake2001-10-041-0/+2
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-0/+10
* Patch #427190: Implement and use METH_NOARGS and METH_O.Martin v. Löwis2001-08-161-45/+29
* Patch number #422106 by Greg Ball, to fix segmentationMoshe Zadka2001-07-231-0/+5
* Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.Martin v. Löwis2001-07-181-0/+52
* Revise the interface to the profiling and tracing support for theFred Drake2001-06-271-13/+110
* Encode surrogates in UTF-8 even for a wide Py_UNICODE.Martin v. Löwis2001-06-271-0/+4
* Instead of initializing & interning the strings passed to the profileFred Drake2001-06-161-0/+6
* Updated version of RISCOS support. SF patch 411213 by Dietmar SchwertbergerGuido van Rossum2001-04-101-0/+4
* Add sys.excepthook.Ka-Ping Yee2001-03-231-11/+47
* Neil discovered a bad DECREF on warnoptions, that caused repeatedGuido van Rossum2001-01-131-2/+1
* stdout is sometimes a macro; use "outf" instead.Greg Stein2001-01-111-5/+5
* Implementation of PEP-0217.Moshe Zadka2001-01-111-0/+46
* Add definitions for PySys_ResetWarnOptions() andGuido van Rossum2000-12-151-0/+39
* _getframe(): New sys module function for getting at the stack frame.Barry Warsaw2000-12-061-0/+37
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* add user-modifiable recursion_limitJeremy Hylton2000-08-311-3/+51
* _PySys_Init(): When setting up sys.version_info, use #if/#elif.../#endifFred Drake2000-08-311-6/+3
* _PySys_Init(): Fix another Insure discovered memory leak; the PyStringBarry Warsaw2000-08-161-1/+2
* Guido pointed out that all names in the sys module have no underscore,Fred Drake2000-08-151-4/+5
* The attempt to protect against MS_WIN16 compilers that do not support longFred Drake2000-08-141-1/+2
* Add a byte_order value to the sys module. The value is "big" forFred Drake2000-08-141-0/+13
* Create a new section of pyport.h to hold all external function declarationsThomas Wouters2000-07-241-1/+0
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-221-77/+20
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-4/+4
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick's Win64 changes: size_t vs. int or long; also some overflowGuido van Rossum2000-06-281-1/+1
* Added a new debug method sys.gettotalrefcount(), which returns the total numb...Mark Hammond2000-06-201-1/+14
* Marc-Andre Lemburg <mal@lemburg.com>:Marc-André Lemburg2000-06-071-10/+10
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-05-091-0/+37
* Simplify creation of the version_info value for clarity, perFred Drake2000-04-131-6/+7
* Capitulate, changing version_info to a 5-tuple:Fred Drake2000-04-131-12/+18
* Define version_info to be a tuple (major, minor, micro, level); levelFred Drake2000-04-131-1/+19
* Use modern PyArg_ParseTuple style, with function names.Guido van Rossum2000-03-311-8/+8