Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | The .subn() method wasn't setting _num_regs, which is used by the .groups() | Andrew M. Kuchling | 1998-08-21 | 1 | -0/+1 |
| | | | | | method, so .groups() didn't work inside the replacement function called by re.sub. One-line fix: set self._num_regs inside subn(). | ||||
* | Update commentary. For most stuff, point people to the web page | Barry Warsaw | 1998-08-20 | 1 | -58/+18 |
| | |||||
* | (py-shell-map): New variable contains the keymap used in *Python* | Barry Warsaw | 1998-08-20 | 1 | -5/+12 |
| | | | | | | | | shell buffers. (py-shell): Moved the require of comint to the top level. Also use-local-map py-shell-map instead of hacking on the comint-mode-map. This eliminates breakage of other comint-mode buffers (e.g. shell). | ||||
* | (py-shell): comint-output-filter-functions is already buffer-local | Barry Warsaw | 1998-08-20 | 1 | -1/+0 |
| | |||||
* | (py-process-filter): Deleted this function. In order to fix | Barry Warsaw | 1998-08-20 | 1 | -116/+16 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | interactions with newer Emacsen, I've rewritten the way all the process filters work in the *Python* buffer. We use more of the comint infrastructure, specifically the default process filter. This means that scrolling is now handled by the default comint variables including comint-scroll-to-bottom-on-output. Note that this is somewhat experimental change! (py-comint-output-filter-function): Moved to here from the obsolete py-process-filter function, the logic to pop and exec the next queued file waiting to be executed. (py-execute-file): Don't bind comint-scroll-to-bottom-on-output to t, and save the excursion when inserting the "working on" message. This lets the standard comint scrolling variables as set by the user, continue to work. (python-mode, py-shell, py-describe-mode): Remove description of py-scroll-process-buffer. Also in py-shell, make comint-output-filter-functions buffer-local, and add py-comint-output-filter-function to this hook (instead of setting the process filter). (py-scroll-process-buffer): Deleted this variable. See comint variables including comint-scroll-to-bottom-on-output. (py-execute-region): When exec files are being queued, push the next temp file on the end of the list. (py-submit-bug-report): Removed reporting of py-scroll-process-buffer. | ||||
* | All libraries have now been moved to their new location, with their new names. | Jack Jansen | 1998-08-20 | 9 | -0/+0 |
| | | | | | As everything is also under CVS this should greatly simplify the work to be done when a new version of one of the libraries we use is released. | ||||
* | A new project that builds cwgusi, tcl, tk and all image libraries needed. | Jack Jansen | 1998-08-20 | 1 | -0/+0 |
| | |||||
* | Replaced all remaining BinHex files with their binary counterparts. | Jack Jansen | 1998-08-20 | 48 | -4041/+0 |
| | |||||
* | Binhextree doesn't binhex anymore, it just copies the projects around. This | Jack Jansen | 1998-08-20 | 1 | -4/+6 |
| | | | | does make the name a bit of a non-sequitur:-) | ||||
* | I guess I'll have to commit this file occasionally... | Jack Jansen | 1998-08-20 | 1 | -1/+1 |
| | |||||
* | Define some things to 1 (in stead of empty) to be compatible with new PIL | Jack Jansen | 1998-08-20 | 1 | -2/+2 |
| | |||||
* | Various libraryies have been moved around and renamed, now that we have | Jack Jansen | 1998-08-19 | 3 | -0/+0 |
| | | | | them under cvs too. | ||||
* | Added an example that uses signal.alarm() to time out an os.open() that | Andrew M. Kuchling | 1998-08-18 | 1 | -1/+29 |
| | | | | | | | | | takes too long. This example relies on the fact that raising an exception in a signal handler causes the exception to be re-raised when the main line of the program resumes execution. Is this guaranteed in CPython, or is this something that just happens to work by accident? Also fixed a typo. | ||||
* | Raise the right exception (ValueError) for attempted I/O on closed StringIO | Fred Drake | 1998-08-18 | 1 | -1/+14 |
| | | | | | objects; this makes the emulation of file objects a bit better, and the exceptions explain things a bit better. | ||||
* | Replaced binhexed version of project files by normal ones (in binary mode) | Jack Jansen | 1998-08-18 | 44 | -9217/+0 |
| | |||||
* | Updated for 1.5.2a1 | Jack Jansen | 1998-08-18 | 2 | -3/+1 |
| | |||||
* | Replaced the hand-generated .hqx files by the binary resourcefiles themselves | Jack Jansen | 1998-08-18 | 14 | -6572/+0 |
| | | | | (in AppleSingle format, so should be readable with MacCVS Pro too) | ||||
* | Initial revision | Jack Jansen | 1998-08-18 | 36 | -0/+8306 |
| | |||||
* | Initial revision | Jack Jansen | 1998-08-18 | 24 | -0/+5316 |
| | |||||
* | Putting Python-specific GUSI modifications under CVS. | Jack Jansen | 1998-08-18 | 6 | -0/+3264 |
| | |||||
* | Putting TCL mods for Python under CVS. | Jack Jansen | 1998-08-18 | 3 | -0/+967 |
| | |||||
* | I give in (after all these years): renaming config.c to macconfig.c to forestall | Jack Jansen | 1998-08-18 | 1 | -0/+0 |
| | | | | the continuous name conflicts which cause the wrong config.c to be found. | ||||
* | Support for freezing packages (Just). | Jack Jansen | 1998-08-18 | 4 | -12/+58 |
| | |||||
* | Replace first sys.path entry with the directory where the script lives | Jack Jansen | 1998-08-18 | 1 | -1/+5 |
| | | | | (Just). | ||||
* | (imenu-example--create-python-index-engine): Fix nesting breakage when | Barry Warsaw | 1998-08-18 | 1 | -0/+2 |
| | | | | | | a method definition has args that span multiple lines; be sure to go to the beginning of the method definition -- but watch out for the match-data! | ||||
* | Clean up the HTML a bit; update the version number. | Fred Drake | 1998-08-17 | 1 | -21/+22 |
| | |||||
* | Fix arguments for renames(); bug spotted by Oliver Andrich | Fred Drake | 1998-08-17 | 1 | -1/+1 |
| | | | | <oli@rhein-zeitung.de>. | ||||
* | Fix markup where C include files get named in <...> form; bug reported by | Fred Drake | 1998-08-14 | 4 | -5/+4 |
| | | | | Lorenzo M. Catucci <lorenzo@argon.roma2.infn.it>. | ||||
* | img_tag(): For \n to be interpreted as a newline, the string must use double | Fred Drake | 1998-08-14 | 1 | -1/+1 |
| | | | | quote, not single quotes. Ugh. | ||||
* | Clarify wording in the description of re.split | Andrew M. Kuchling | 1998-08-14 | 1 | -5/+5 |
| | | | | Simplify the patterns in the examples for re.split | ||||
* | Enter Jim Fulton's latest version. He writes: | Jeremy Hylton | 1998-08-13 | 1 | -20/+80 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I had to make a slight diddle to work with Python 1.4, which we and some of our customers are still using. :( I've also made a few minor enhancements: - You can now both get and set the memo using a 'memo' attribute. This is handy for certain advanced applications that we have. - Added a 'binary' attribute to get and set the binary mode for a pickler. - Added a somewhat experimental 'fast' attribute. When this is set, objects are not placed in the memo during pickling. This should lead to faster pickling and smaller pickles in cases where: o you *know* there are no circular references, and o either you've: - preloaded the memo with class information by pickling classes in non-fast mode or by manipilating the memo directly, or - aren't pickling instances. | ||||
* | Don't need these anymore.... | Fred Drake | 1998-08-13 | 6 | -0/+0 |
| | |||||
* | Do the magic to use the new buttons (with shorter names!) instead of the old | Fred Drake | 1998-08-13 | 1 | -20/+32 |
| | | | | | ones. Get the <IMG> width & height right. New design for the navigation bars, including the document title as well as the navigation links/buttons. | ||||
* | Change interface to sendmail: if the destination address is a string | Jeremy Hylton | 1998-08-13 | 1 | -1/+6 |
| | | | | | | | instead of a list, turn it into a list containing that string. This avoids an apparently common newbie mistake -- passing in a single string for the destination and have it treated as a sequence of characters. | ||||
* | Add l2hinit.perl to COMMONPERL. | Fred Drake | 1998-08-13 | 1 | -1/+2 |
| | |||||
* | Insignificant change cause by saving again. | Guido van Rossum | 1998-08-13 | 3 | -0/+21 |
| | |||||
* | New icons from Christopher Petrilli <petrilli@dworkin.amber.org>. | Fred Drake | 1998-08-13 | 12 | -0/+0 |
| | | | | Cool! | ||||
* | Better error messages when a sequence is indexed with a non-integer. | Guido van Rossum | 1998-08-13 | 1 | -6/+17 |
| | | | | | | | Previously, this said "unsubscriptable object"; in 1.5.1, the reverse problem existed, where None[''] would complain about a non-integer index. This fix does the right thing in all cases (for get, set and del item). | ||||
* | Exit when a mv or cp fails (Sjoerd Mullender). | Guido van Rossum | 1998-08-13 | 1 | -2/+2 |
| | |||||
* | Rebuilt everything with MSL 2.4.10, Compilers 2.1.1 and IDE 3.1. | Jack Jansen | 1998-08-13 | 16 | -3233/+3183 |
| | | | | SIOUX, Tcl and Tk also need to be rebuilt (and tcl/tk need work) | ||||
* | Add Tim Peters' test for long ints | Guido van Rossum | 1998-08-13 | 2 | -0/+144 |
| | |||||
* | Add DebugBreak() call to Py_FatalError() for Mark Hammond (only on | Guido van Rossum | 1998-08-13 | 1 | -0/+3 |
| | | | | Win32 in Debug mode). | ||||
* | Need mytime.h for Sleep(). | Guido van Rossum | 1998-08-13 | 1 | -0/+2 |
| | |||||
* | Second definition of popen2 should be popen3. | Guido van Rossum | 1998-08-13 | 1 | -1/+1 |
| | |||||
* | Improved some error messages for command line processing. | Fred Drake | 1998-08-12 | 1 | -2/+17 |
| | | | | Added --all to produce all formats at once. | ||||
* | Added more informaton about the mkhowto.sh script. | Fred Drake | 1998-08-12 | 1 | -3/+4 |
| | |||||
* | Oops, the --text option wasn't documented! | Fred Drake | 1998-08-12 | 1 | -0/+1 |
| | |||||
* | Added a comment about not using a symbolic link to access the script. | Fred Drake | 1998-08-12 | 1 | -0/+7 |
| | |||||
* | New tool: reverse grep (greps from the end). Uses a fairly efficient | Guido van Rossum | 1998-08-12 | 1 | -0/+65 |
| | | | | strategy to read from the end of the file. | ||||
* | Some minor updates. | Fred Drake | 1998-08-12 | 1 | -6/+10 |
| |