Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | | | | | specific, and updated some of the comments about the profile hook. This closes SF bug #471725. | ||||
* | Added documentation for sys.maxunicode and sys.warnoptions. | Fred Drake | 2001-09-04 | 1 | -1/+14 |
| | | | | | Fixed a markup error which caused an em dash to be presented as a minus sign. This closes SF bug #458350. | ||||
* | 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 |
| | | | | | | | Minor local consistency adjustments. A couple of small tweaks to the setdlopenflags() description. For setprofile() and settrace(), convert some references to become hyperlinks in the HTML version. | ||||
* | Made a few minor style & markup changes to the new {get,set}dlopenflags() | Fred Drake | 2001-07-18 | 1 | -15/+17 |
| | | | | descriptions; added availability notes. | ||||
* | Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags. | Martin v. Löwis | 2001-07-18 | 1 | -0/+21 |
| | | | | Add dlopenflags to PyInterpreterState, and use it in dlopen calls. | ||||
* | 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 |
| | | | | | | | | Update docstring and library reference section on 'sys' module. New API PyErr_Display, just for displaying errors, called by excepthook. Uncaught exceptions now call sys.excepthook; if that fails, we fall back to calling PyErr_Display directly. Also comes with sys.__excepthook__ and sys.__displayhook__. | ||||
* | Implementation of PEP-0217. | Moshe Zadka | 2001-01-11 | 1 | -0/+9 |
| | | | | This closes the PEP, and patch 103170 | ||||
* | _getframe(): New sys module function for getting at the stack frame. | Barry Warsaw | 2000-12-06 | 1 | -0/+11 |
| | | | | | Implements and closes SF patch #102106, with Guido's suggested documentation changes. | ||||
* | Additions from Marc-Andre Lemburg <mal@lemburg.com>, documenting | Fred Drake | 2000-10-25 | 1 | -1/+21 |
| | | | | getdefaultencoding() and setdefaultencoding(). | ||||
* | 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 |
| | | | | | | | | | | | ceval.c: define recurion_limit (static), default value is 2500 define Py_GetRecursionLimit and Py_SetRecursionLimit raise RuntimeError if limit is exceeded PC/config.h: remove plat-specific definition sysmodule.c: add sys.(get|set)recursionlimit | ||||
* | 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 |
| | | | | | | | <skip@mojam.com>. Revisions to the markup to make it pass LaTeX, added an index entry and a reference from the sys.exitfunc documentation. This closes SourceForge patch #100620. | ||||
* | 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 |
| | | | | explained). | ||||
* | 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 |
| | | | | (Very rough.) | ||||
* | 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 |
| | | | | This change was made long ago but the documentation was never updated. | ||||
* | Rewrote the section on sys.exit(), documenting other argument types | Guido van Rossum | 1998-11-23 | 1 | -6/+18 |
| | | | | | than integers and recommending sys.exit("message"). (I see this as Python's answer to Perls ``die "message";''.) | ||||
* | New section header style. | Fred Drake | 1998-08-10 | 1 | -2/+3 |
| | | | | Fix up a few synopses. | ||||
* | Adjusted to use the new module synopsis support macros. | Fred Drake | 1998-07-23 | 1 | -12/+13 |
| | |||||
* | Document several variables that were previously undocumented, | Guido van Rossum | 1998-06-10 | 1 | -9/+35 |
| | | | | | including the new __stdin__, __stdout__ and __stderr__. Also moved setttrace around to its proper place in the alphabet. | ||||
* | Remove all uses of \sectcode; we can now use logical markup everywhere. | Fred Drake | 1998-04-04 | 1 | -1/+1 |
| | |||||
* | Remove obsolete \setindexsubitem macro. | Fred Drake | 1998-04-04 | 1 | -1/+0 |
| | |||||
* | New index entries. | Fred Drake | 1998-04-03 | 1 | -0/+2 |
| | |||||
* | Make sure both hyphens of a long-option show up in the HTML output. | Fred Drake | 1998-03-27 | 1 | -2/+2 |
| | |||||
* | Logical markup. | Fred Drake | 1998-03-08 | 1 | -52/+58 |
| | | | | | | | Don't prepend the module name when referring to functions or data in the same module. Correct the description of "modules". | ||||
* | Remove all \bcode / \ecode cruft; this is no longer needed. See previous | Fred Drake | 1998-02-13 | 1 | -7/+7 |
| | | | | | | | | | checkin of myformat.sty. Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}" everywhere. Some other minor nits that I happened to come across. | ||||
* | Document getrefcount(). | Guido van Rossum | 1998-02-07 | 1 | -0/+6 |
| | |||||
* | Added "module search path" to the index. | Fred Drake | 1998-01-13 | 1 | -0/+1 |
| | |||||
* | Fixed index references to modules. | Fred Drake | 1997-12-15 | 1 | -5/+5 |
| | |||||
* | Documented brand new behavior of sys.ps1 and sys.ps2 (str() is applied | Guido van Rossum | 1997-11-25 | 1 | -1/+4 |
| | | | | to get the actual prompt). | ||||
* | Get rid of math mode in some places. | Guido van Rossum | 1997-11-25 | 1 | -1/+1 |
| | |||||
* | Documented exc_info(); also updated exc_type and last_type docs. | Guido van Rossum | 1997-10-20 | 1 | -18/+57 |
| | |||||
* | AMK's megapatch: | Guido van Rossum | 1997-07-17 | 1 | -0/+1 |
| | | | | | | | * \bcode, \ecode added everywhere * \label{module-foo} added everywhere * A few \seealso sections added. * Indentation fixed inside verbatim in lib*tex files | ||||
* | Additional info about sys.path, sys.version, sys.prefix, sys.exec_prefix. | Guido van Rossum | 1997-06-02 | 1 | -3/+43 |
| | | | | (AMK) | ||||
* | Document that sys.builtin_module_names is now a tuple. | Guido van Rossum | 1997-01-06 | 1 | -1/+1 |
| | |||||
* | correct typo; document sys.platform | Guido van Rossum | 1995-07-07 | 1 | -1/+6 |
| | |||||
* | mass changes; fix titles; add examples; correct typos; clarifications; | Guido van Rossum | 1995-03-17 | 1 | -14/+22 |
| | | | | unified style; etc. | ||||
* | changes (suggested) by Soren Larsen | Guido van Rossum | 1995-03-07 | 1 | -1/+1 |
| | |||||
* | cosmetics/typos | Guido van Rossum | 1995-01-12 | 1 | -1/+1 |
| |