summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bump the date. Seems like fun. ;-)Fred Drake1999-01-121-1/+1
|
* Simplify command that extracts the number of pages from a PostScriptFred Drake1999-01-121-1/+1
| | | | file; use "grep -c" instead of "grep | wc -l | cut ... | tr ...".
* Added \modulesynopsis.Fred Drake1999-01-122-2/+5
|
* <writer>.send_paragraph(): Clarify what needs to be done by thisFred Drake1999-01-121-1/+4
| | | | | method and what it should not do. (Specifically: handling breaking of last line of preceeding paragraph.)
* DumbWriter.send_paragraph(): Fix problem with DumbWriter reported toFred Drake1999-01-121-1/+1
| | | | the newsgroup by Raymond Tong Leng Ng <rntl@yahoo.com>.
* Avoid overflow if possible in calculations for range(); reportGuido van Rossum1999-01-121-7/+28
| | | | unavoidable overflow as OverflowError.
* do_cmd_methodline(): Fixed reference to method name when generatingFred Drake1999-01-121-3/+3
| | | | the output HTML.
* Removed a lot of unnecessary comment markers which cause unexplainedFred Drake1999-01-121-84/+83
| | | | numbers to appear in the HTML version of the manual.
* output_body(): For <address> elements, just skip, since they'reFred Drake1999-01-111-0/+4
| | | | always part of the page trailer.
* Patches describing the statvfs() and fstatvfs() functions. AdditionalFred Drake1999-01-111-16/+68
| | | | | | | text about large file support. All new text by Steve Clift <clift@mail.anacapa.net>, with only minor revision / addition of markup.
* Addition to previous note -- comfigure --without-gcc also works.Guido van Rossum1999-01-111-1/+2
|
* Add note about gcc-2.8.1 setting sys.maxint to -1 on 64-bit IRIX.Guido van Rossum1999-01-111-0/+4
|
* get_config_h_filename(): Fix to work with current PythonFred Drake1999-01-111-2/+2
| | | | | installations; it was picking up a stale config.h from an overwritten installation.
* Some requests have been fulfilled.Guido van Rossum1999-01-111-5/+3
|
* Set the cursor to a watch when opening the class browser (which mayGuido van Rossum1999-01-111-7/+23
| | | | | | take quite a while, browsing multiple files). Newer, better center() -- but assumes no wrapping.
* Got rid of debug print statement in goto_line_event().Guido van Rossum1999-01-111-1/+0
|
* I think I like it better if it prints the traceback even when it displaysGuido van Rossum1999-01-111-2/+2
| | | | the stack viewer.
* Bind ESC to close-window.Guido van Rossum1999-01-111-1/+2
|
* Use a HSeparator between the classes and the items.Guido van Rossum1999-01-111-13/+18
| | | | | Make the list of classes wider by default (40 chars). Bind ESC to close-window.
* Separator classes (draggable divider between two panes).Guido van Rossum1999-01-111-0/+89
|
* Patch by Charles Waldman -- remove unneeded and even harmful test forGuido van Rossum1999-01-101-10/+0
| | | | | float to the negative power (which is already and better done in floatobject.c.)
* Added some more comments.Guido van Rossum1999-01-101-13/+15
|
* Don't traceback when wakeup() is called when the window has been destroyed.Guido van Rossum1999-01-091-3/+8
| | | | | This can happen when a torn-of Windows menu references closed windows. And Tim Peters claims that the Windows menu is his favorite to tear off...
* Allow tearing off of the Windows menu.Guido van Rossum1999-01-091-1/+0
|
* Close on ESC.Guido van Rossum1999-01-091-1/+2
|
* Updated a bunch of things (it was mostly still 0.1!)Guido van Rossum1999-01-091-17/+39
|
* Use 'xrange', not 'range', in error messages. Reported by Nathan Sullivan.Guido van Rossum1999-01-091-3/+3
|
* (py-outdent-p): Short circuit infloop for illegal constructBarry Warsaw1999-01-091-0/+2
| | | | (e.g. except: on first line of buffer).
* Added ScriptBinding to standard bindings.Guido van Rossum1999-01-091-0/+1
|
* This now actually works. See doc string. It can run a module (i.e.Guido van Rossum1999-01-091-18/+130
| | | | | import or reload) or debug it (same with debugger control). Output goes to a fresh output window, only created when needed.
* Need extern decl. for fdatasync() in case it exists but isn't declaredGuido van Rossum1999-01-081-2/+2
| | | | | anywhere (or, more likely, the declaration requires a magical combination of _POSIX defines).
* Now using autoconf 2.13Guido van Rossum1999-01-081-273/+351
|
* Added fsync() and fdatasync(). Patches by Scott Cotton. RequiresGuido van Rossum1999-01-081-0/+57
| | | | HAVE_* macros set by configure script.
* FieldStorage.__init__(): if there is no content-type header, useBarry Warsaw1999-01-081-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 Rossum1999-01-082-2/+51
|
* Hack for Windows so that if (1) the exit status is nonzero and (2) weGuido van Rossum1999-01-081-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 Drake1999-01-081-4/+5
|
* No longer useful.Fred Drake1999-01-081-55/+0
|
* It's finally gone!Fred Drake1999-01-081-2406/+0
|
* Remove obsolete files.Fred Drake1999-01-082-123/+0
|
* Replace most everything but the comment at the top.Fred Drake1999-01-081-24/+66
|
* Add a few comments.Fred Drake1999-01-081-1/+8
|
* Paul Prescod's patches to allow the stack viewer to pop up when aGuido van Rossum1999-01-082-0/+12
| | | | traceback is printed.
* New support scripts for HTML->info conversion that use Michael Ernst's newFred Drake1999-01-083-5/+58
| | | | conversion tools.
* New conversion tools for HTML->info from Michael ErnstFred Drake1999-01-082-0/+1778
| | | | | | <mernst@cs.washington.edu>. Thanks!
* Need to include <sys/types.h> for off_t.Guido van Rossum1999-01-071-0/+2
|
* Ty Sarna writes:Guido van Rossum1999-01-073-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 Rossum1999-01-071-0/+36
|
* convert(): Make sure no line has trailing whitespace. (docfixer.pyFred Drake1999-01-071-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 stringGuido van Rossum1999-01-071-1/+1
| | | | comes first, the format second! Scott Cotton discovered this.