summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Escape special characters on output.Fred Drake1999-01-141-2/+4
|
* In rcpt(), avoid a space after the TO: address when the option list isGuido van Rossum1999-01-141-2/+2
| | | | empty. Make sure there is a space when there are options.
* Change the order of the utime() and the chmod() call in copystat().Guido van Rossum1999-01-141-1/+1
| | | | | This doesn't make a bit of difference on Unix, but apparently on Windows NT you need write permission before you can set the utime...
* Updated for 1.5.2b1Jack Jansen1999-01-132-33/+45
|
* Update the comments on info files.Fred Drake1999-01-131-5/+5
|
* Use \refmodule when we say "use the XXX module instead".Fred Drake1999-01-131-2/+2
| | | | For the whatsound module, point to sndhdr.
* \seemodule: Fix so that each \seemodule entry gets its own paragraph,Fred Drake1999-01-131-0/+15
| | | | | | | | | so they don't get run together when there's no blank line between them in the source. The HTML conversion already did the right thing. \refmodule: Refer to a module, using a hyperlink in the PDF version. Visually the same as \module.
* do_cmd_refmodule(): New function to support new \refmodule macro.Fred Drake1999-01-131-0/+10
|
* Hand't been committed yet (minor changes)Jack Jansen1999-01-131-9/+11
|
* CW Projects for 1.5.2b1Jack Jansen1999-01-1323-0/+0
|
* Distribution databases for 1.5.2b1Jack Jansen1999-01-134-42/+57
|
* Removed USE_MALLOC_DEBUG that shoulnd't be in the production version.Jack Jansen1999-01-131-1/+1
|
* Added: mems.lib.text_file: provides TextFile class for parsing textGreg Ward1999-01-131-0/+206
| | | | | files with (optional) comment stripping, blank line skipping, whitespace removal, and line joining with trailing backslashes.
* Renamed test.py to testcode.py so one can import Python'sGuido van Rossum1999-01-121-0/+0
| | | | test package from inside IDLE. (Suggested by Jack Jansen.)
* Hack to close a window that is colorizing.Guido van Rossum1999-01-122-8/+20
|
* Vladimir Marangozov's patch:Guido van Rossum1999-01-121-0/+3
| | | | | | The separator dances too much and seems to jump by arbitrary amounts in arbitrary directions when I try to move it for resizing the frames. This patch makes it more quiet.
* Added a few items.Fred Drake1999-01-121-8/+14
|
* Fix the HTML tarball target to generate the HTML if needed instead ofFred Drake1999-01-121-5/+1
| | | | bombing.
* Chris Herborth's first pass at making config and installGuido van Rossum1999-01-126-278/+387
| | | | for BeOS better.
* A gift from Sam Rushing - modules asyncore and asynchat for theGuido van Rossum1999-01-122-0/+743
| | | | standard Python library. (Async socket support.)
* 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.