Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The usual | Guido van Rossum | 1997-11-26 | 15 | -135/+793 |
| | |||||
* | The dependency of tarhtml on l2h was a bad idea. | Guido van Rossum | 1997-11-26 | 1 | -1/+1 |
| | |||||
* | (python-mode): Make imenu-create-index-function buffer local. | Barry Warsaw | 1997-11-26 | 1 | -3/+4 |
| | | | | | | | | | (imenu-example--create-python-index-engine): Use buffer-substring-no-properties. Also, don't use imenu-create-submenu-name. Apparently it is obsolete. These Imenu patches were given by Christian Egli <christian.egli@stest.ch> | ||||
* | (py-mark-def-or-class): Added an exchange-point-and-mark and a | Barry Warsaw | 1997-11-26 | 1 | -2/+4 |
| | | | | | | | | | py-keep-region-active so that the marked def/class gets the zmacs-region or transient-mark region highlighted. Also point should be left at the end of the marked region. (py-mode-map): Moved py-mark-def-or-class to M-C-h to conform to Emacs major mode standards. | ||||
* | (python-mode): Patch to fix Imenu support under Emacs, given by | Barry Warsaw | 1997-11-26 | 1 | -1/+3 |
| | | | | Torsten Hilbrich <Torsten.Hilbrich@bln.de>. | ||||
* | (py-kill-emacs-hook): Simplification. | Barry Warsaw | 1997-11-26 | 1 | -11/+5 |
| | |||||
* | Icons for Windows installer. | Guido van Rossum | 1997-11-26 | 3 | -0/+0 |
| | |||||
* | Added the HTML files. | Guido van Rossum | 1997-11-26 | 1 | -24/+64 |
| | |||||
* | Added CRLF line endings since this is for NOTEPAD. | Guido van Rossum | 1997-11-26 | 0 | -0/+0 |
| | |||||
* | Added comment about where to find details on python-mode.el, pointing | Barry Warsaw | 1997-11-26 | 1 | -23/+183 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to the Web site. (py-defun-start-re, py-class-start-re): Changed to defconst. (py-traceback-line-re): Regular expression describing what traceback lines look like. (py-point): New defsubst copied from CC Mode. (py-highlight-line): Function which does the work of making a traceback line mouseable. This only works on XEmacs. Someone familar with Emacs text properties and such will have to do that port. (py-mode-map): Added C-c- bound to py-up-exception and C-c= bound to py-down-exception. Also, more concise form for mapcar. (py-mode-output-map): New keymap for the *Python Output* buffer which only has keybindings for py-mouseto-exception and py-goto-exception. All other self-insert-command's are bound to beep. This is actually bogus because the buffer should really be made read-only and the functions that insert in that buffer should bind inhibit-read-only. Also, this map should be bound to highlighted extents in a *Python* shell buffer, but this stuff hasn't been migrated into there. (py-postprocess-output-buffer): New function which extentifies the *Python Output* buffer. The bogosities are that this only runs when the synchronous process in the buffer is finished (so it doesn't work for async procs), and it should also be merged into py-process-filter so the *Python* shell gets mouseable too. (py-shell): Added C-c- and C-c= to the comint buffer's keymap. The bogosity is that py-goto-exception should also be bound, but it cannot be bound to C-cC-c (since that interferes with comint-interrupt-subjob's typical binding). Also, traceback lines aren't mouseable in this buffer. (py-execute-region): Support for traceback jumping. This really is quite a kludge, but necessary based on the way all this stuff works. There's bound to be broken interactions here. (py-jump-to-exception, py-mouseto-exception, py-goto-exception, py-find-next-exception, py-down-exception, py-up-exception): All new commands and functions to implement traceback jumping. (py-compute-indentation): Hope this change doesn't get lost in all the noise above!!!! This fixes broken non-indentation of a line when TAB is hit inside a string that isn't a multi-line string. | ||||
* | Documented brand new behavior of sys.ps1 and sys.ps2 (str() is applied | Guido van Rossum | 1997-11-25 | 2 | -2/+8 |
| | | | | to get the actual prompt). | ||||
* | Apply str() to sys.ps1 or sys.ps2 before using them as a prompt, so | Guido van Rossum | 1997-11-25 | 1 | -16/+14 |
| | | | | | you can assign an object whose str() evaluates to the current directory (or whatever). | ||||
* | Added utility target tarhtml to tar and gzip the HTML files plus their | Guido van Rossum | 1997-11-25 | 1 | -0/+4 |
| | | | | support (GIFS, icons, style sheets). | ||||
* | Adding the icons used by latex2html output to the CVS tree. | Guido van Rossum | 1997-11-25 | 31 | -0/+94 |
| | |||||
* | Ignore html files generated by webmaker. | Guido van Rossum | 1997-11-25 | 1 | -0/+1 |
| | |||||
* | Augmented the script so that (at CNRI anyway) it also invokes webmaker | Guido van Rossum | 1997-11-25 | 1 | -1/+12 |
| | | | | to create the HTML. | ||||
* | Simple index for the reference manuals (mostly for use on the Windows | Guido van Rossum | 1997-11-25 | 2 | -0/+50 |
| | | | | platform). | ||||
* | Updated to the most pressing 1.5 issues. | Guido van Rossum | 1997-11-25 | 13 | -4516/+4474 |
| | |||||
* | Drop Capitalized Important Words. | Guido van Rossum | 1997-11-25 | 1 | -1/+1 |
| | |||||
* | Several changes, e.g. restructuring of the intro to be closer to what | Guido van Rossum | 1997-11-25 | 2 | -472/+268 |
| | | | | it ought to be. Maybe the last checkin before 1.5b1 is released. | ||||
* | Remove hyperlink to time-sensitive Python release info. | Guido van Rossum | 1997-11-25 | 1 | -2/+2 |
| | |||||
* | WISE installer source for Python 1.5 | Guido van Rossum | 1997-11-25 | 1 | -0/+1104 |
| | |||||
* | Added pypcre.c module. | Guido van Rossum | 1997-11-25 | 2 | -0/+10 |
| | |||||
* | Added the "italic correction" command ("\/") to the list of ignored commands. | Fred Drake | 1997-11-25 | 2 | -2/+2 |
| | | | | | There is at least one of there in the library reference, and this reduces the warning count. We *do* know what to do with it! | ||||
* | Removed leading comment about this being "introductory" documentation; | Fred Drake | 1997-11-25 | 2 | -4/+12 |
| | | | | | | | | compared to most, I'd say this section is fairly thorough. Fixed \indexsubitem definitions for symbol and token module sub-documents. Perhaps these should be moved to their own files, but they're awefully small. | ||||
* | Get rid of math mode in some places. | Guido van Rossum | 1997-11-25 | 12 | -18/+18 |
| | |||||
* | Don't use $math$ mode to typeset a simple '>' sign. Use \code, not \samp. | Guido van Rossum | 1997-11-25 | 2 | -2/+2 |
| | |||||
* | Remove strange use of $math$ mode to produce a backslash. | Guido van Rossum | 1997-11-25 | 2 | -2/+4 |
| | |||||
* | Oops, did the previous delete the wrong way. | Guido van Rossum | 1997-11-25 | 2 | -2/+0 |
| | |||||
* | Get rid of last traces of module 'audio' | Guido van Rossum | 1997-11-24 | 3 | -123/+2 |
| | |||||
* | Added "-n file" option to only print files newer than the given file. | Guido van Rossum | 1997-11-24 | 1 | -4/+37 |
| | |||||
* | Use fuzzy comparison from test_support to compare outcome of | Guido van Rossum | 1997-11-24 | 1 | -1/+4 |
| | | | | pow(x,y,z) to pow(x,y)%z. | ||||
* | New names... | Guido van Rossum | 1997-11-24 | 1 | -0/+3 |
| | |||||
* | Add fileinput. | Guido van Rossum | 1997-11-24 | 2 | -0/+4 |
| | |||||
* | Replace plat-os2 with plat-win, per Jeff Rush' suggestion. | Guido van Rossum | 1997-11-24 | 1 | -1/+1 |
| | |||||
* | Trivial change in prompt label suggested by Case Roole. | Guido van Rossum | 1997-11-24 | 1 | -1/+1 |
| | |||||
* | Change the option used on Linux to export all symbols | Guido van Rossum | 1997-11-24 | 2 | -3/+3 |
| | | | | | | from the main program to shared libraries. On mklinux, the old '-rdynamic' doesn't work; the new '-Xlinker -export-dynamic' works both there and on Intel Linux platforms. | ||||
* | Done a sort -u on the symbols (and replaced all tabs with spaces). | Guido van Rossum | 1997-11-24 | 1 | -368/+365 |
| | |||||
* | Oops, the sort took some whitespace into account. | Guido van Rossum | 1997-11-24 | 1 | -5/+4 |
| | |||||
* | Done a sort -u on the symbols. | Guido van Rossum | 1997-11-24 | 1 | -295/+284 |
| | |||||
* | os2 patch by Jeff Rush | Guido van Rossum | 1997-11-22 | 1 | -1/+2 |
| | |||||
* | ignore various VC++ turds | Guido van Rossum | 1997-11-22 | 1 | -0/+5 |
| | |||||
* | Files specific to Visual Age C for OS/2 -- by Jeff Rush | Guido van Rossum | 1997-11-22 | 6 | -0/+4846 |
| | |||||
* | Added Jeff Rush' comments | Guido van Rossum | 1997-11-22 | 1 | -0/+39 |
| | |||||
* | win -> plat-win | Guido van Rossum | 1997-11-22 | 1 | -3/+3 |
| | |||||
* | Add PyImport_Inittab and PyOS_AfterFork | Guido van Rossum | 1997-11-22 | 1 | -0/+2 |
| | |||||
* | os2 patch by Jeff Rush | Guido van Rossum | 1997-11-22 | 12 | -28/+459 |
| | |||||
* | bind_class should return a value | Guido van Rossum | 1997-11-22 | 1 | -1/+1 |
| | |||||
* | New address parser by Ben Escoto replaces | Guido van Rossum | 1997-11-22 | 1 | -125/+247 |
| | | | | Sjoerd Mullender's parseaddr() | ||||
* | Use fstat if we can; write MAGIC into file last. | Guido van Rossum | 1997-11-22 | 1 | -2/+8 |
| |