summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix the test for pow() -- no more TypeErrors are raised!Guido van Rossum1997-12-091-2/+2
|
* Typo: RUSAGE_CHILDERN -> RUSAGE_CHILDREN.Guido van Rossum1997-12-091-1/+1
|
* LC_MESSAGES is not defined on all systems; use #ifdef LC_MESSAGES.Guido van Rossum1997-12-091-0/+2
|
* Guess... :-)Guido van Rossum1997-12-096-167/+474
|
* Checking in ConfigParser.py -- I don't see a reason why this can't beGuido van Rossum1997-12-091-0/+255
| | | | | liberated. This was originally written by Ken and later revamped by Barry.
* v 0.8.3 -- add an option to suppress URL processing inside <PRE>,Guido van Rossum1997-12-093-9/+15
| | | | by Scott <scott@chronis.icgroup.com>
* libainstall: Install Modules/Setup.thread in addition to Modules/Setup andFred Drake1997-12-091-0/+1
| | | | | | | | Modules/Setup.local. Guido: I hope this is ok; it seems to make a lot of sense to get the whole trio of module config files installed as a set rather than doing it partially.
* Added more warnings about ni's demise.Guido van Rossum1997-12-092-4/+14
|
* Deleting ni.py; renamed to ni1.py, really.Guido van Rossum1997-12-091-434/+0
|
* Make close(), and hence __del__(), robust in the light of the worldGuido van Rossum1997-12-091-3/+6
| | | | being destroyed already.
* Fix subtle bug in cleanup code in PyErr_NormalizeException(), detectedGuido van Rossum1997-12-091-2/+2
| | | | | by Marc Lemburg. There's a path through the code where *val is NULL, but value isn't, and value should be DECREF'ed.
* Mark file names with \file{} instead of \code{}.Fred Drake1997-12-092-18/+20
|
* Doc strings by Mitch Chapman (with a little reformatting).Guido van Rossum1997-12-091-118/+174
| | | | Also reformatted the whole module with 4 spaces and no tabs.
* Changed the finalization order again so that the reference countGuido van Rossum1997-12-081-13/+18
| | | | | printing (when Py_DEBUG is defined) happens while there's still a current thread...
* (1) call mktime() just before strftime(); it normalizes the buffer andGuido van Rossum1997-12-081-0/+8
| | | | | | may set the timezone name for BSD systems... (2) fake all of the timezone variables for the mac.
* Use long() instead of int() to compare mktime(localtime(t) with t...Guido van Rossum1997-12-081-1/+1
|
* Separated the definitions of ntohs(), ntohl(), htons(), htonl(). SeparateFred Drake1997-12-082-16/+42
| | | | | descriptions really make things look a bit better, and should improve the ability to re-purpose the content.
* Added Emacs turd so this file has the correct mode in Emacs / X/Emacs, evenFred Drake1997-12-081-1/+1
| | | | if you don't have .perl in your mode table.
* Added Emacs turd so this file has the correct mode in Emacs / X/Emacs.Fred Drake1997-12-081-1/+12
| | | | | | | clean_key(): Override the standard LaTeX2HTML clean_key() to remove a leading HTML tag, if present. This broke the indexes for the library reference (at least) since many of the strings began with <code> or something similar.
* Updated the README to the current status. Added a note about theGuido van Rossum1997-12-081-72/+32
| | | | "times" option.
* New version from AMK -- with minor corrections to make it legal latex.Guido van Rossum1997-12-082-106/+240
|
* New pcre version from AMKGuido van Rossum1997-12-084-1209/+1797
|
* New re version from AMKGuido van Rossum1997-12-083-58/+201
|
* Fixed SFT #23842: leave in non-standard style options when checking in anFred Drake1997-12-082-2/+2
| | | | update. ;-(
* Remove the last bits of log from the leading comments.Guido van Rossum1997-12-081-13/+1
|
* Jim Fulton:Guido van Rossum1997-12-081-24/+50
| | | | | | | | | | | | | | | | | | | | | | - Loading non-binary string pickles checks for insecure strings. This is needed because cPickle (still) uses a restricted eval to parse non-binary string pickles. This change is needed to prevent untrusted pickles like:: "S'hello world'*2000000\012p0\012." from hosing an application. - User-defined types can now support unpickling without executing a constructor. The second value returned from __reduce__ can now be None, rather than an argument tuple. On unpickling, if the second value returned from __reduce__ during pickling was None, then rather than calling the first value returned from __reduce__, directly, the __basicnew__ method of the first value returned from __reduce__ is called without arguments.
* For RedHat Linux 5.0, added notes about needing to remove the LinuxThreadsFred Drake1997-12-081-0/+22
| | | | package, and -lcrypt for the crypt module.
* Add special handling for Python modules that are imported implicitlyGuido van Rossum1997-12-081-0/+6
| | | | by the Python runtime: 'site' and 'exceptions'.
* Apply the same change to classes without an __getinitargs__() methodGuido van Rossum1997-12-071-5/+11
| | | | as in pickle: the new instance is created without calling __init__().
* Some reorganization (all limit operations & constants together, and all usageFred Drake1997-12-062-108/+248
| | | | | | | | | | functions and constants together). Make explicit datadesc sections for each of the constants which might appear, and have a description of each. (Descriptions are based on the Linux documentation and sources and the Solaris man pages.) Hopefully Jeremy won't mind, because I didn't ask. ;-)
* Some manipulations with tags to get the TOC and Index to look betterGuido van Rossum1997-12-064-0/+0
|
* New WML file, this time with working Title and Author tags, andGuido van Rossum1997-12-061-23/+33
| | | | | mapping chapter and section headings to more appropriate nodes so that the TOC actually works. Now generates one HTML page per chapter.
* Added some links to OO-Browser, given by Harri Pasanen.Barry Warsaw1997-12-061-2/+8
| | | | Updated the to do list.
* Another large batch of patches from Jeff Rush for OS/2.Guido van Rossum1997-12-051-15/+243
| | | | I hope this time I've taken out all // comments and indended #ifdefs.
* New batch of patches by Jeff Rush; moved his readme.txt portion here.Guido van Rossum1997-12-055-13/+148
|
* Moved Jeff Rush's ever expanding comments to os2vacpp/readme.txt.Guido van Rossum1997-12-051-35/+2
|
* Two changes by Jeff Rush (slightly tweaked):Guido van Rossum1997-12-051-9/+26
| | | | | | | | | | | - New option -x, to skip first line of script - Use the correct platform-specific delimiter and library location in the usage message (Also removed two blank lines and moved one line around so that each part of the usage message is again under 512 bytes and the whole usage message still fits in 23 lines.)
* Jeff Rush: add definition for S_IFMT for VisualAge C/C++ under OS2.Guido van Rossum1997-12-051-0/+5
|
* Use the proper OS2 test symbol: PYOS_OS2.Guido van Rossum1997-12-051-1/+1
|
* Reindented according to new standard, without tabs.Guido van Rossum1997-12-051-117/+131
| | | | Also added one more os2 specific piece of code, by Jeff Rush.
* ospath.py has been obsolete for long enough.Guido van Rossum1997-12-051-3/+0
|
* When instantiating a class with no arguments and where the class doesGuido van Rossum1997-12-051-135/+40
| | | | | | | | | | | not define __getinitargs__, bypass the __init__ constructor completely. This uses the trick of instantiating an empty dummy class and then changing inst.__class__ to the real class. This is done in two places: once for the INST and once for the OBJ format code. Also replaced the much outdated long doc string with a short summary of the module; the information of that doc string is already incorporated in the library reference manual.
* Added doc strings and reindented according to new standard, without tabs.Guido van Rossum1997-12-051-162/+194
| | | | (Like ntpath.py, this was contributed by "Charles G. Waldman" <cgw@pgt.com>)
* Added doc strings and reindented according to new standard, without tabs.Guido van Rossum1997-12-051-189/+223
|
* Fix the exclusion of "config" in the methods copied from Pack to alsoGuido van Rossum1997-12-051-1/+1
| | | | exclude "configure".
* Forgot to use &lt;/&gt; for some example output.Guido van Rossum1997-12-051-2/+2
|
* Use registry key ProgramFilesDir as default MAINDIRGuido van Rossum1997-12-051-3/+16
|
* Add a few more PyErr_ symbolsGuido van Rossum1997-12-051-0/+2
|
* Add pretty icon to python.exeGuido van Rossum1997-12-052-0/+16
|
* Only parsing requires Python 1.5Barry Warsaw1997-12-041-6/+7
|