summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Chris Herborth writes:Guido van Rossum1999-01-042-5/+12
| | | | | | Here's a little cleanup of the BeOS/ directory for 1.5.2b2; it makes the ar-fake, linkcc and linkmodule shell scripts a little smarter (and, in the case of PowerPC systems, quieter :-).
* Chris Herborth writes:Guido van Rossum1999-01-041-38/+4
| | | | Donn Cave tells me the PyImport_BeImageID() function isn't needed anymore.
* Chris Herborth writes:Guido van Rossum1999-01-043-58/+0
| | | | Donn Cave tells me the PyImport_BeImageID() function isn't needed anymore.
* Ran eventparse.py again.Guido van Rossum1999-01-041-6/+2
|
* Added Unix Meta-q key binding;Guido van Rossum1999-01-041-1/+5
| | | | fix find_paragraph when at start of file.
* Added Meta-/ binding for Unix as alt for Alt-/.Guido van Rossum1999-01-041-0/+4
|
* Add unix binding for grep (otherwise the menu entry doesn't work!)Guido van Rossum1999-01-041-0/+1
|
* Adjusted Unix height to work with fvwm96. :=(Guido van Rossum1999-01-041-1/+1
|
* Typo: "TWELV" --> "TWELVE"Fred Drake1999-01-041-1/+4
| | | | | | | | | | | | Added note at top, since LaTeX style writers like to force name changes when someone else makes a change to the style. I'm sending a note to the author reporting the error and asking for an updated version. This cannot be distributed in this form. This will be resolved when I get a response from Ulf Lindgren. Typo reported by rwolff@noao.edu (Richard Wolff).
* Need to import sys!Guido van Rossum1999-01-041-0/+1
|
* Formatted some paragraphsGuido van Rossum1999-01-043-57/+46
|
* Add new extension to reformat a (text) paragraph.Guido van Rossum1999-01-042-0/+102
|
* Typo in Win specific height setting.Guido van Rossum1999-01-041-1/+1
|
* Recover from failed saves; when a file turns out to be a directory,Guido van Rossum1999-01-031-5/+17
| | | | create a directory and moer the original file to the index.html.
* Get rid of the strptype() declaration -- on some BSD systems, it's aGuido van Rossum1999-01-031-1/+1
| | | | | conflict, and it should be declared in time.h anyway. (Too bad if gcc -Wall won't be happy if it isn't declared...)
* Add sys.hexversion, which is an integer encoding the version in hexadecimal.Guido van Rossum1999-01-031-0/+2
| | | | | | In other words, hex(sys.hexversion) == 0x010502b2 for Python 1.5.2b2. This is derived from the new variable PY_VERSION_HEX defined in patchlevel.h. (Cute, eh?)
* Use PY_VERSION instead of PATCHLEVEL.Guido van Rossum1999-01-031-1/+2
|
* New version identification scheme.Guido van Rossum1999-01-033-4/+74
| | | | | The version numbers are now exported by Python.h. Also rolled back the API version change -- it's back to 1007!
* Added something like Tim Peters' backspace patch.Guido van Rossum1999-01-031-2/+28
|
* Adapted to Unix (i.e., more hardcoded constants).Guido van Rossum1999-01-031-3/+10
|
* Call PyInitFrozenExtensions() as requested by Mark Hammond (his patch).Guido van Rossum1999-01-021-0/+4
|
* Checking in IDLE 0.2.Guido van Rossum1999-01-0238-898/+2203
| | | | | | | | | | | | Much has changed -- too much, in fact, to write down. The big news is that there's a standard way to write IDLE extensions; see extend.txt. Some sample extensions have been provided, and some existing code has been converted to extensions. Probably the biggest new user feature is a new search dialog with more options, search and replace, and even search in files (grep). This is exactly as downloaded from my laptop after returning from the holidays -- it hasn't even been tested on Unix yet.
* Document the optional mode argument (Z_FLUSH, Z_SYNC_FLUSH, etc.)Andrew M. Kuchling1998-12-311-4/+11
| | | | to the flush() method of compressor objects.
* D.M. Pick gives me a more accurate distillation of his `uk' explanation :-)Barry Warsaw1998-12-291-4/+7
|
* Added index entries to make it easier to locate directory & file operations.Fred Drake1998-12-281-0/+3
|
* Added index entries to make it easier to locate directory operations.Fred Drake1998-12-281-0/+2
|
* Clarified what Python versions the interactivity chapter applies to,Fred Drake1998-12-281-1/+9
| | | | and what it doesn't apply to.
* Remove recently documented modules from the undoc list.Fred Drake1998-12-281-6/+0
|
* Print a line to the console reporting the number of index nodesFred Drake1998-12-281-2/+6
| | | | processed. This can be interesting to see.
* Added entry for libshutil.tex.Fred Drake1998-12-281-1/+2
|
* Add documentation for shutil module.Fred Drake1998-12-282-0/+101
|
* Adjust a few niggles that affected the HTML conversion (a couple ofFred Drake1998-12-281-3/+3
| | | | "^"s were being dropped in the context of [^...]).
* Remove all use of $* in commands; some makes (Solaris 2.5, IRIX 6.X)Fred Drake1998-12-281-19/+19
| | | | | only expand this in dependency lists. Thanks for Sjoerd Mullendar for pointing this out.
* Update on history of `uk' top level, greatly condensed from DavidBarry Warsaw1998-12-271-6/+6
| | | | Pick's emailed account.
* Added mt_interact() -- multithreaded version of interact().Guido van Rossum1998-12-231-0/+26
| | | | | interact() automatically uses this on Windows (where the single-threaded version doesn't work).
* Patch by Mike Meyer:Guido van Rossum1998-12-231-5/+19
| | | | | | | | Extended the rfc822 parsedate routines to handle the cases they failed on in an archive of ~37,000 messages. I believe the changes are compatible, in that all previously correct parsing are still correct. [I still see problems with some messages, but no showstoppers.]
* Patch by Mike Meyer:Guido van Rossum1998-12-231-4/+35
| | | | | Add a class to mailbox.py for dealing with qmail directory mailboxes. The test code was extended to notice these being used as well.
* Avoid crash in parsedate_tz() on certain invalid dates -- when theGuido van Rossum1998-12-231-1/+3
| | | | | | field assumed to be the time is in fact the year, the resulting list doesn't have enough items, and this isn't checked for. Return None instead.
* Provide more detail when the commit button is not shown.Guido van Rossum1998-12-232-8/+17
|
* Oops, forgot a pair of {}'s. (Greg Couch)Guido van Rossum1998-12-231-1/+2
|
* Document 'N' format character for Py_BuildValue -- like 'O' but doesn't INCREF.Guido van Rossum1998-12-231-1/+6
|
* Add 'N' format character to Py_BuildValue -- like 'O' but doesn't INCREF.Guido van Rossum1998-12-231-1/+3
| | | | Patch and suggestion by Greg Couch.
* Chris Herborth discovered a typo in the arrow key symbols.Guido van Rossum1998-12-231-1/+2
|
* Fix many of the specific targets in links from the index.Fred Drake1998-12-221-7/+7
| | | | | In a number of places, I called next_argument() instead of next_argument_id() when the ID was also needed. (7 places)
* Add the getpass module to $(LIBFILES).Fred Drake1998-12-221-1/+2
|
* Add the getpass module.Fred Drake1998-12-221-0/+1
|
* Basic documentation for the getpass module.Fred Drake1998-12-221-0/+31
|
* Bump $(RELEASE).Fred Drake1998-12-221-1/+1
|
* This commit was manufactured by cvs2svn to create tag 'r152b1'.v1.5.2b1cvs2svn1998-12-221-0/+1
|
* Use installed Tcl lib files -- also for Debug configurationGuido van Rossum1998-12-221-1/+1
|