| Commit message (Expand) | Author | Age | Files | Lines |
* | - remove use of a "list" environment (replace with a table) | Fred Drake | 2004-11-11 | 1 | -15/+12 |
|
|
* | Patch #1026384: fix two common typo's: | Johannes Gijsbers | 2004-09-11 | 1 | -1/+1 |
|
|
* | Deprecate sys.exitfunc in favor of the atexit module. | Raymond Hettinger | 2004-08-18 | 1 | -0/+1 |
|
|
* | Warn that settrace() is implementation rather than language | Phillip J. Eby | 2004-08-05 | 1 | -1/+5 |
|
|
* | Comment that getfilesystemencoding returns mbcs even on NT+. Fixes #964870. | Martin v. Löwis | 2004-06-16 | 1 | -1/+4 |
|
|
* | - markup fix | Fred Drake | 2004-06-08 | 1 | -3/+3 |
|
|
* | Patch #510695: Add TSC profiling for the VM. | Martin v. Löwis | 2004-06-08 | 1 | -0/+10 |
|
|
* | Removed extra period from \versionchanged entry; macro adds period | Brett Cannon | 2004-03-21 | 1 | -1/+1 |
|
|
* | Note that Unicode strings are now supported in sys.path. | Fred Drake | 2003-07-17 | 1 | -0/+2 |
|
|
* | add versionadded for getcheckinterval | Neal Norwitz | 2003-07-07 | 1 | -0/+1 |
|
|
* | New function sys.getcheckinterval(), to complement setcheckinterval(). | Tim Peters | 2003-07-06 | 1 | -0/+5 |
|
|
* | Correct documentation of check interval - it's 100 by default, not 10 any | Skip Montanaro | 2003-07-02 | 1 | -2/+2 |
|
|
* | SF bug #719367, string exceptions are deprecated | Neal Norwitz | 2003-05-29 | 1 | -1/+1 |
|
|
* | Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, | Martin v. Löwis | 2003-03-05 | 1 | -0/+16 |
|
|
* | - New function sys.exc_clear() clears the current exception. This is | Guido van Rossum | 2003-03-01 | 1 | -0/+20 |
|
|
* | Add os.path.supports_unicode_filenames for all platforms, | Mark Hammond | 2002-10-08 | 1 | -0/+26 |
|
|
* | expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456. | Skip Montanaro | 2002-09-03 | 1 | -0/+6 |
|
|
* | Clarify that the description of sys.path[0] is only valid upon program | Guido van Rossum | 2002-07-15 | 1 | -2/+5 |
|
|
* | add seealso referring to site module doc where people can learn how to | Skip Montanaro | 2002-03-27 | 1 | -0/+6 |
|
|
* | Do not mask the name of a built-in function in example code. | Fred Drake | 2002-01-05 | 1 | -1/+1 |
|
|
* | Clean up some markup cruft. A number of the macros that take no | Fred Drake | 2001-11-28 | 1 | -1/+1 |
|
|
* | Doc and NEWS changes due to Jeremy adding traceback objects to gc. | Tim Peters | 2001-10-23 | 1 | -1/+4 |
|
|
* | Use the \note and \warning macros where appropriate. | Fred Drake | 2001-10-20 | 1 | -4/+4 |
|
|
* | Added information about setprofile() and settrace() hooks being thread- | Fred Drake | 2001-10-16 | 1 | -2/+9 |
|
|
* | Added documentation for sys.maxunicode and sys.warnoptions. | Fred Drake | 2001-09-04 | 1 | -1/+14 |
|
|
* | Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. | Martin v. Löwis | 2001-07-26 | 1 | -2/+2 |
|
|
* | Fix a few typos | Andrew M. Kuchling | 2001-07-19 | 1 | -3/+3 |
|
|
* | "Make small changes, but carry a big diff." | Fred Drake | 2001-07-18 | 1 | -248/+247 |
|
|
* | Made a few minor style & markup changes to the new {get,set}dlopenflags() | Fred Drake | 2001-07-18 | 1 | -15/+17 |
|
|
* | Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags. | Martin v. Löwis | 2001-07-18 | 1 | -0/+21 |
|
|
* | Give a slightly better explanation of excepthook. | Ka-Ping Yee | 2001-03-23 | 1 | -4/+6 |
|
|
* | Add sys.excepthook. | Ka-Ping Yee | 2001-03-23 | 1 | -3/+24 |
|
|
* | Implementation of PEP-0217. | Moshe Zadka | 2001-01-11 | 1 | -0/+9 |
|
|
* | _getframe(): New sys module function for getting at the stack frame. | Barry Warsaw | 2000-12-06 | 1 | -0/+11 |
|
|
* | Additions from Marc-Andre Lemburg <mal@lemburg.com>, documenting | Fred Drake | 2000-10-25 | 1 | -1/+21 |
|
|
* | Fix markup error and minor consistency nit. | Fred Drake | 2000-08-31 | 1 | -2/+2 |
|
|
* | add user-modifiable recursion_limit | Jeremy Hylton | 2000-08-31 | 1 | -0/+18 |
|
|
* | Guido pointed out that all names in the sys module have no underscore, | Fred Drake | 2000-08-15 | 1 | -1/+1 |
|
|
* | Document the byte_order value in the sys module. | Fred Drake | 2000-08-14 | 1 | -0/+8 |
|
|
* | Update version numbering from 1.6 to 2.0. | Fred Drake | 2000-06-30 | 1 | -3/+3 |
|
|
* | Added the atexit module and documentation from Skip Montanaro | Fred Drake | 2000-06-28 | 1 | -1/+3 |
|
|
* | Update change to version_info structure. | Fred Drake | 2000-04-13 | 1 | -6/+7 |
|
|
* | Document hexversion (incompletely explained) and version_info (easily | Fred Drake | 2000-04-13 | 1 | -0/+32 |
|
|
* | Make use of \longprogramopt where appropriate. | Fred Drake | 2000-04-11 | 1 | -2/+2 |
|
|
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -1/+27 |
|
|
* | Use the new markup as apporpriate. | Fred Drake | 1999-11-09 | 1 | -17/+17 |
|
|
* | Make internal module references hyperlinks wherever it makes sense. | Fred Drake | 1999-04-22 | 1 | -3/+3 |
|
|
* | SIGTERM is no longer caught to call sys.exitfunc. | Guido van Rossum | 1999-03-25 | 1 | -3/+3 |
|
|
* | Rewrote the section on sys.exit(), documenting other argument types | Guido van Rossum | 1998-11-23 | 1 | -6/+18 |
|
|
* | New section header style. | Fred Drake | 1998-08-10 | 1 | -2/+3 |
|
|