summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Removed debug printJack Jansen1998-10-211-1/+0
|
* Remove a couple of unnecessary "%" characters that cause problems withFred Drake1998-10-211-2/+2
| | | | the latest latex2html beta.
* Remove a bunch of unnecessary "%" characters that cause problems withFred Drake1998-10-211-19/+19
| | | | the latest latex2html beta.
* Remove an unnecessary "%" character that seems to cause a minor glitchFred Drake1998-10-211-1/+1
| | | | with the latest latex2html.
* Saving/Restoring state into ~/.pynche fileBarry Warsaw1998-10-2010-27/+160
|
* add_link(): Fix to use $section_info instead of $toc_section_info,Fred Drake1998-10-201-1/+3
| | | | | | | based on email from Ross Moore <ross@mpce.mq.edu.au>. Set $HTML_VERSION to 4.0, since that's what we really generate (well, 4.0 "transitional").
* Detlef Lannert lannert@lannert.rz.uni-duesseldorf.de notices:Guido van Rossum1998-10-201-1/+4
| | | | | | | | | """ the NEWS file of Python 1.5.2a2 inspired me to look at Tools/scripts/untabify.py. I wonder why it accepts a -t argument but ignores it. The following patch tries to make it somewhat useful (i.e., to override the tabsize=8 setting). Is that agreeable? """
* Adding Fredrik Lundh's demo of the option menu.Guido van Rossum1998-10-201-0/+27
|
* Patch by Jim Fulton, who writes:Guido van Rossum1998-10-201-4/+6
| | | | | | | | | | | | | | """ The FieldStorage constructor calls the read_multi method. The read_multi method creates new FieldStorage objects, re-invoking the constructor (on the new objects). The problem is that the 'environ', 'keep_blank_values', and 'strict_parsing' arguments originally passed to the constructor are not propigated to the new object constructors. This causes os.environ to be used, leading to a miss-handling of the parts. I fixed this by passing these arguments to read_multi and then on to the constructor. See the context diff below. """
* Reflect new name of index style file.Fred Drake1998-10-193-5/+5
|
* Renamed myindex.ist to something more reasonable.Fred Drake1998-10-191-0/+0
|
* No longer needed since we have nice, contributed navigation buttons.Fred Drake1998-10-191-35/+0
|
* If building HTML and the icons should be served from the sameFred Drake1998-10-191-4/+6
| | | | | | | | directory as the HTML (--iconserver .), copy the icons into place. Clarify that lynx is needed for --text in the usage message. Fix a typo in a comment.
* Rename 'locals' argument to top-level interact() function to 'local'Guido van Rossum1998-10-191-3/+3
| | | | for b/w compatibility with 1.5.1.
* ArabictoRoman(): Removed, since it wasn't used anywhere.Fred Drake1998-10-191-23/+0
|
* A Py_DECREF(f) is missing in PyFrame_New for the error case whenGuido van Rossum1998-10-191-4/+4
| | | | the `builtins' initialization fails. Vladimir Marangozov.
* Add a missing DECREF in an error exit. Submitted by Jonathan Giddy.Guido van Rossum1998-10-191-0/+1
|
* Typo: JIFF -> JFIF.Guido van Rossum1998-10-191-1/+1
|
* Fixed a problem where xmllib didn't handle the tagGuido van Rossum1998-10-191-55/+60
| | | | | | | | <sometag attrib=">"> correctly. Also changed comparisons of re matches and searches into explicit comparisons with None. (Sjoerd Mullender)
* Speed up the search a bit -- don't drag a mark around...Guido van Rossum1998-10-191-13/+17
|
* Change our special entries from <console#N> to <pyshell#N>.Guido van Rossum1998-10-191-2/+48
| | | | | Patch linecache.checkcache() to keep our special entries alive. Add popup menu to all editor windows to set a breakpoint.
* Use and pass through the 'force' flag to set_dict() where appropriate.Guido van Rossum1998-10-191-8/+35
| | | | | | Default source and globals checkboxes to false. Don't interact in user_return(). Add primitive set_breakpoint() method.
* Raise priority of 'sel' tag so its foreground (on Windows) will takeGuido van Rossum1998-10-191-0/+3
| | | | | | | priority over text colorization (which on Windows is almost the same color as the selection background). Define a tag and color for breakpoints ("BREAK").
* Disable "Open stack viewer" and "help" commands.Guido van Rossum1998-10-191-3/+3
|
* Add optional 'force' argument (default 0) to load_dict().Guido van Rossum1998-10-191-2/+2
| | | | If set, redo the display even if it's the same dict.
* This commit was manufactured by cvs2svn to create tag 'r152a2'.v1.5.2a2cvs2svn1998-10-171-0/+1
|
* Time for 1.5.2a2.Guido van Rossum1998-10-171-4/+4
|
* All the news that's fit to print. In other words, it's 1.5.2a2 time.Guido van Rossum1998-10-171-3/+270
|
* The usualGuido van Rossum1998-10-172-1/+22
|
* The driver script on Unix is `pynche'; for Windows `pynche.pyw'Barry Warsaw1998-10-161-2/+2
|
* Do nothing when loading the same dict as before.Guido van Rossum1998-10-161-1/+6
|
* Details for debugger interface.Guido van Rossum1998-10-161-3/+1
|
* Restructured and more consistent. Save checkboxes across instantiations.Guido van Rossum1998-10-161-36/+78
|
* Get rid of conflicting ^X binding. Use ^W.Guido van Rossum1998-10-163-8/+7
|
* Debugger can now show local and global variables.Guido van Rossum1998-10-162-38/+92
|
* PyMapping_SetItemString() returns int, not an object.Guido van Rossum1998-10-161-1/+1
|
* In build_html(), strip off leading "./" from filename, added byFred Drake1998-10-161-0/+1
| | | | kpsewhich. This caused a problem with the latest latex2html beta.
* OopsGuido van Rossum1998-10-161-1/+3
|
* Better debugger support (show stack etc).Guido van Rossum1998-10-162-11/+88
|
* Follow renames in StackViewer moduleGuido van Rossum1998-10-161-2/+2
|
* Rename classes to StackViewer (the widget) and StackBrowser (the toplevel).Guido van Rossum1998-10-161-6/+10
|
* Add close() methodGuido van Rossum1998-10-161-0/+3
|
* Clarify 'Open Module' dialog textGuido van Rossum1998-10-161-1/+2
|
* Restructured into a browser and a widget.Guido van Rossum1998-10-161-161/+87
|
* Generalized the scrolled list which is the base for the class andGuido van Rossum1998-10-152-128/+205
| | | | method browser into a separate class in its own module.
* For submenus remember the parent and parent index, so we can grey out ourJack Jansen1998-10-151-0/+8
| | | | | entry if the menu is disabled. This does create a circular reference, so cleanup becomes more important.
* Cosmetic changeGuido van Rossum1998-10-151-8/+20
|
* Set kAECanInteract and kAECanSwitchLayer flags for the finder interactions.Jack Jansen1998-10-151-0/+3
|
* Clarify that close() of a stream opened by popen() returns None if theGuido van Rossum1998-10-151-1/+2
| | | | exit status is zero.
* Don't show function name if there is noneGuido van Rossum1998-10-151-1/+3
|