Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Need extern decl. for fdatasync() in case it exists but isn't declared | Guido van Rossum | 1999-01-08 | 1 | -2/+2 |
| | | | | | anywhere (or, more likely, the declaration requires a magical combination of _POSIX defines). | ||||
* | Now using autoconf 2.13 | Guido van Rossum | 1999-01-08 | 1 | -273/+351 |
| | |||||
* | Added fsync() and fdatasync(). Patches by Scott Cotton. Requires | Guido van Rossum | 1999-01-08 | 1 | -0/+57 |
| | | | | HAVE_* macros set by configure script. | ||||
* | FieldStorage.__init__(): if there is no content-type header, use | Barry Warsaw | 1999-01-08 | 1 | -2/+24 |
| | | | | | | | | | | text/plain for inner parts, but application/x-www-form-urlencoded for outer parts. Honor any existing content-type header. Lower down, if the content-type header is something we don't understand (say because it there was a typo in the header coming from the client), default to text/plain for inner parts, but application/x-www-form-urlencoded for outer parts. | ||||
* | What's new in this release. | Guido van Rossum | 1999-01-08 | 2 | -2/+51 |
| | |||||
* | Hack for Windows so that if (1) the exit status is nonzero and (2) we | Guido van Rossum | 1999-01-08 | 1 | -0/+47 |
| | | | | | | | | | think we have our own DOS box (i.e. we're not started from a command line shell), we print a message and wait for the user to hit a key before the DOS box is closed. The hacky heuristic for determining whether we have our *own* DOS box (due to Mark Hammond) is to test whether we're on line zero... | ||||
* | Remove the "lib-" prefix from the name of the info archive. | Fred Drake | 1999-01-08 | 1 | -4/+5 |
| | |||||
* | No longer useful. | Fred Drake | 1999-01-08 | 1 | -55/+0 |
| | |||||
* | It's finally gone! | Fred Drake | 1999-01-08 | 1 | -2406/+0 |
| | |||||
* | Remove obsolete files. | Fred Drake | 1999-01-08 | 2 | -123/+0 |
| | |||||
* | Replace most everything but the comment at the top. | Fred Drake | 1999-01-08 | 1 | -24/+66 |
| | |||||
* | Add a few comments. | Fred Drake | 1999-01-08 | 1 | -1/+8 |
| | |||||
* | Paul Prescod's patches to allow the stack viewer to pop up when a | Guido van Rossum | 1999-01-08 | 2 | -0/+12 |
| | | | | traceback is printed. | ||||
* | New support scripts for HTML->info conversion that use Michael Ernst's new | Fred Drake | 1999-01-08 | 3 | -5/+58 |
| | | | | conversion tools. | ||||
* | New conversion tools for HTML->info from Michael Ernst | Fred Drake | 1999-01-08 | 2 | -0/+1778 |
| | | | | | | <mernst@cs.washington.edu>. Thanks! | ||||
* | Need to include <sys/types.h> for off_t. | Guido van Rossum | 1999-01-07 | 1 | -0/+2 |
| | |||||
* | Ty Sarna writes: | Guido van Rossum | 1999-01-07 | 3 | -153/+181 |
| | | | | | | | | | The following patches (relative to 1.5.2b1) enable Python dynamic loading to work on NetBSD platforms that use ELF (presnetly mips and alpha systems). They automaticly determine wether the system is ELF or a.out rather than using astatic list of platforms so that when other NetBSD platforms move to ELF, python will continue to work without change. | ||||
* | Changes for long file support. | Guido van Rossum | 1999-01-07 | 1 | -0/+36 |
| | |||||
* | convert(): Make sure no line has trailing whitespace. (docfixer.py | Fred Drake | 1999-01-07 | 1 | -3/+5 |
| | | | | | checks for \n\n as a paragraph separator, LaTeX allows white space between the newlines.) | ||||
* | The doc string for strptime had the arguments reversed -- the string | Guido van Rossum | 1999-01-07 | 1 | -1/+1 |
| | | | | comes first, the format second! Scott Cotton discovered this. | ||||
* | Markup nit. | Fred Drake | 1999-01-07 | 1 | -4/+4 |
| | | | | Add module synopsis. | ||||
* | Change paragraph width limit to 70 (like Emacs M-Q). | Guido van Rossum | 1999-01-07 | 1 | -1/+1 |
| | |||||
* | Separating TODO from README. Slight reformulation of features. No | Guido van Rossum | 1999-01-07 | 1 | -113/+6 |
| | | | | exact release date. | ||||
* | Separating TODO from README. | Guido van Rossum | 1999-01-07 | 1 | -0/+132 |
| | |||||
* | Explain how come that pickle and cPickle, while using the same data | Guido van Rossum | 1999-01-06 | 1 | -0/+6 |
| | | | | format, can produce different pickle strings for the same object. | ||||
* | Minor clarifications by Sean Reifschneider: | Guido van Rossum | 1999-01-06 | 1 | -1/+15 |
| | | | | | - add example of string literal concatenation - add clarifying comment to the example of the if statement | ||||
* | Replace the docs for reduce with an adaptation of its docstring, which | Guido van Rossum | 1999-01-06 | 1 | -8/+9 |
| | | | | was actually clearer! | ||||
* | Add doc for access() and ttyname(). Patch by Sean Reifschneider. | Guido van Rossum | 1999-01-06 | 1 | -0/+12 |
| | |||||
* | fix bug in PyZlib_flush. | Jeremy Hylton | 1999-01-06 | 1 | -4/+4 |
| | | | | patch from Grzegorz Makarewicz & Rafal Smotrzyk. | ||||
* | Change the access() code to return 1 if granted, 0 if not granted. | Guido van Rossum | 1999-01-06 | 1 | -4/+11 |
| | | | | Patch (again) by Sean Reifschneider. | ||||
* | Preliminary code to mark paragraphs. Seems to work, but very slow. | Fred Drake | 1999-01-06 | 1 | -2/+150 |
| | |||||
* | Fixed bug in the common-case code for HTTP URLs; it would lose the query, | Andrew M. Kuchling | 1999-01-06 | 1 | -4/+7 |
| | | | | | fragment, and/or parameter information. 3 cases added to the test suite to check for this bug. | ||||
* | Constants for [f]statvfs() (new in posixmodule.c) by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -0/+20 |
| | |||||
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 2 | -145/+273 |
| | |||||
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -0/+31 |
| | | | | (Slightly modified to isolate the test for various funcs more.) | ||||
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -11/+53 |
| | | | | (This also redoes my previous patch, but better.) | ||||
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -18/+0 |
| | | | | (Really: moved a bunch of defs to longobject.h.) | ||||
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -3/+22 |
| | |||||
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -9/+33 |
| | | | | He also fixes thread-related evil that caused core dumps. | ||||
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -14/+231 |
| | | | | Also added access() and ttyname() by Sean Reifschneider. | ||||
* | Changes for long file support by Steve Clift. | Guido van Rossum | 1999-01-06 | 1 | -0/+19 |
| | |||||
* | Update and add docstrings. | Fred Drake | 1999-01-06 | 1 | -5/+13 |
| | |||||
* | Remove documentation for whatraw() since it's gone now. | Fred Drake | 1999-01-06 | 1 | -13/+2 |
| | |||||
* | Move brief descriptions of what() and whathdr() to docstrings in the | Fred Drake | 1999-01-06 | 1 | -8/+2 |
| | | | | functions (from comments). | ||||
* | Another patch from Fred: factored _init_posix into | Greg Ward | 1999-01-06 | 1 | -18/+37 |
| | | | | | get_config_h_filename, get_makefile_filename, parse_config_h, and parse_makefile. | ||||
* | Got rid of whatraw(). | Guido van Rossum | 1999-01-06 | 1 | -72/+35 |
| | | | | | Doc-string-ified the lead comments. Added auto call of test() when run as script. | ||||
* | Add extend() method. A small New Year's present from Jean-Claude Wippler. | Guido van Rossum | 1999-01-06 | 1 | -0/+1 |
| | |||||
* | Document the sndhdr module. | Fred Drake | 1999-01-05 | 3 | -6/+56 |
| | | | | Document that the whatsound module is obsolete. | ||||
* | Shorten the synopsis that gets into the table of contents. | Fred Drake | 1999-01-05 | 1 | -1/+1 |
| | |||||
* | write_idxfile(): New function. Isolate format of the external index | Fred Drake | 1999-01-05 | 1 | -95/+82 |
| | | | | | | | | | | | | | | | | data file used by buildindex.py. next_argument_id(): Removed; no longer used. next_argument(): Doesn't use next_argument_id(), just does the work. gen_target(), gen_target_name(): Removed, no longer used. The only place that used them now does the (trivial) work directly. Lots of little changes so we never have to pass around $br_id values all over the place. The only places they're used now new IDs are generated as needed. |