Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | A few minor Customize changes: | Barry Warsaw | 1999-07-28 | 1 | -3/+6 |
| | | | | | | | (python): Set defgroup :prefix to "py-" to make variable names cleaner. (py-jpython-command, py-jpython-command-args): Set :tag for proper capitalization of JPython in variable name display. | ||||
* | (python-mode): Set which interpreter (CPython or JPython) to use the | Barry Warsaw | 1999-07-28 | 1 | -18/+21 |
| | | | | | | | | | | | | | | | | | first time a py buffer is visited during the Emacs session. This ensures that py-which-shells is initialized and also guarantees that the mode lines reflect the correct shell. First bug found by GvR, second one has long bugged :) me. (py-toggle-shells): Programmatically, arg can also take the symbols `cpython' or `jpython', which makes it easy to call with the value of py-default-interpreter. (py-shell): Don't need to initialize py-which-* variables since these will guarantee to be initialized by python-mode when the first py buffer is visited. (py-default-interpreter): Update docstring. | ||||
* | Another patch from Andy Dustman: | Guido van Rossum | 1999-07-28 | 1 | -1/+8 |
| | | | | | | | | | | | | | | """ Here's a patch for the ForkingMixIn which will prevent the server from forking itself into the ground. Note: I've tested a very similar patch (subclassed ForkingMixIn) but not actually tested this one. As you might surmise, this was done out of necessity... If the maximum number of children are already running, block while waiting for a child to exit. """ (I added that last sentence as a comment to the code --GvR.) | ||||
* | (py-beginning-of-def-or-class): Only move to match-beginning if the | Barry Warsaw | 1999-07-27 | 1 | -2/+2 |
| | | | | regex match actually succeeded! | ||||
* | Add support for bzip2 compression. | Fred Drake | 1999-07-27 | 1 | -2/+30 |
| | | | | | New target: distfiles, create all distribution archives, regardless of archive format. (Individual targets remain for each archive format.) | ||||
* | Add support for bzip2 using --bzip2. | Fred Drake | 1999-07-27 | 1 | -4/+11 |
| | |||||
* | Ignore additional compressed formats. | Fred Drake | 1999-07-27 | 1 | -0/+2 |
| | |||||
* | Added description of optional parameter to UserDict constructor. | Fred Drake | 1999-07-26 | 1 | -2/+5 |
| | | | | Omission reported by Barry Warsaw. | ||||
* | Add zip archive support for html, pdf, ps, and latex archives. | Fred Drake | 1999-07-23 | 1 | -1/+22 |
| | | | | "zips" target produces all possible .zip files. | ||||
* | Add --zip parameter; make this able to produce .zip files as well as | Fred Drake | 1999-07-23 | 1 | -3/+20 |
| | | | | .tgz files. | ||||
* | getsize(), getatime(), getmtime(): | Fred Drake | 1999-07-23 | 1 | -3/+3 |
| | | | | | | | Constants from stat module were imported using "import *"; don't access them via stat.ST_*! Reported by that other vR. ;-) | ||||
* | Update getattr() description to document the optional third | Fred Drake | 1999-07-22 | 1 | -5/+7 |
| | | | | parameter. Thanks to Barry Warsaw for pointing out the oversight. | ||||
* | Make the default target xml instead of sgml. | Fred Drake | 1999-07-22 | 1 | -2/+2 |
| | |||||
* | Make the default target xml instead of sgml. | Fred Drake | 1999-07-22 | 1 | -2/+4 |
| | | | | | | Use a temporary file to pass results from latex2esis.py to docfixer.py; this makes for better error detection by make (if the first pipeline stage fails, make wasn't catching it). | ||||
* | typo: privide --> provide | Fred Drake | 1999-07-20 | 1 | -1/+1 |
| | | | | Reported by Nadim Ghaznavi <nadim@ghaznavi.com>. | ||||
* | Fixed order of parameters in slice() docstring. The Library Reference | Fred Drake | 1999-07-19 | 1 | -1/+1 |
| | | | | had it right! Reported by Tim Hochberg <tim.hochberg@ieee.org>. | ||||
* | New wishes. | Guido van Rossum | 1999-07-15 | 1 | -1/+5 |
| | |||||
* | Add test case for bug just fixed by Stephen Turner. | Guido van Rossum | 1999-07-13 | 1 | -0/+11 |
| | |||||
* | Patch by Stephen Turner, who writes: | Guido van Rossum | 1999-07-13 | 1 | -18/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | """ It fixes a memory corruption error resulting from BadPickleGet exceptions in load_get, load_binget and load_long_binget. This was initially reported on c.l.py as a problem with Cookie.py; see the thread titled "python core dump (SIGBUS) on Solaris" for more details. If PyDict_GetItem(self->memo, py_key) call failed, then py_key was being Py_DECREF'd out of existence before call was made to PyErr_SetObject(BadPickleGet, py_key). The bug can be duplicated as follows: import cPickle cPickle.loads('garyp') This raises a BadPickleGet exception whose value is a freed object. A core dump will soon follow. """ Jim Fulton approves of the patch. | ||||
* | Mark Favas was quick to note that the last checkin divides by zero | Guido van Rossum | 1999-07-13 | 1 | -1/+1 |
| | | | | | when n == 0... So divide by a->ob_size instead which was already tested for 0. | ||||
* | Appropriate overflow checks so that things like sys.maxint*(1,) can't | Guido van Rossum | 1999-07-12 | 1 | -3/+13 |
| | | | | dump core. | ||||
* | added a test for "To: :" patch | Barry Warsaw | 1999-07-12 | 1 | -0/+7 |
| | |||||
* | AddrlistClass.getaddress(): when parsing `:'s, in the loop, watch out | Barry Warsaw | 1999-07-12 | 1 | -1/+2 |
| | | | | | | for gotonext() pushing self.pos past the end of the string. This can happen if the message has a To field like "To: :" and you call msg.getaddrlist('to'). | ||||
* | Added comment clarifying that RELEASE is the documentation release | Fred Drake | 1999-07-12 | 1 | -1/+3 |
| | | | | | | number, not the Python release. Removed VERSION since it is not used. | ||||
* | do_cmd_funclineni(): New function; non-indexing form of \funcline. | Fred Drake | 1999-07-12 | 1 | -0/+9 |
| | |||||
* | Move chdir() and getcwd() descriptions to "Files and Directories" with | Fred Drake | 1999-07-12 | 1 | -10/+16 |
| | | | | | a pointer from the "Process Parameters" section. Based on comments from Aahz Maruch, Tim Peters, and GvR. | ||||
* | Use the same names for CLASS attributes as elsewhere. | Fred Drake | 1999-07-12 | 1 | -3/+4 |
| | |||||
* | Updated Milan's email address. | Fred Drake | 1999-07-12 | 1 | -7/+8 |
| | |||||
* | Make the color for stderr red (i.e. the standard warning/danger/stop | Guido van Rossum | 1999-07-10 | 1 | -1/+1 |
| | | | | color) rather than green. Suggested by Sam Schulenburg. | ||||
* | The first concrete subclass of CCompiler: defines a barebones Unix C compiler. | Greg Ward | 1999-07-10 | 1 | -0/+192 |
| | |||||
* | The abstract base class that defines the C/C++ compiler abstraction model. | Greg Ward | 1999-07-10 | 1 | -0/+313 |
| | |||||
* | Added a self-berating command relating to installation directories for | Greg Ward | 1999-07-10 | 1 | -0/+8 |
| | | | | module distributions that contain platform-specific files. | ||||
* | Don't pollute importer's namespace with type objects from types modules. | Greg Ward | 1999-07-10 | 1 | -2/+11 |
| | | | | Added DistutilsPlatformError. | ||||
* | Patch by Jeffrey Chang to add docstrings everywhere. | Guido van Rossum | 1999-07-09 | 1 | -31/+314 |
| | | | | The text is condensed from the library manual. | ||||
* | Marc-Andre Lemburg discovered that the switch from .pyc to .pyo files, | Guido van Rossum | 1999-07-08 | 1 | -2/+2 |
| | | | | | done by _PyImport_Init(), comes to late to affect the import of exceptions.py by _PyBuiltin_Init_2(). Move _PyImport_Init() up few lines. | ||||
* | Several methods return tuples, not lists. | Fred Drake | 1999-07-07 | 1 | -4/+5 |
| | |||||
* | Move some misc. comments from the example section to the main section. | Fred Drake | 1999-07-07 | 1 | -22/+22 |
| | | | | | | Use the lowercase versions of the method names in the example, since that's what's documented (Greg Stein's suggestion). Add a blank line after the import line for clarity. | ||||
* | FTP.dir(): Fix typo in docstring. | Fred Drake | 1999-07-07 | 1 | -1/+1 |
| | |||||
* | dir() method description revised based on comments from Greg Stein. | Fred Drake | 1999-07-07 | 1 | -6/+7 |
| | |||||
* | make_view_popups(): Catch import error which can occur if a viewer is | Barry Warsaw | 1999-07-06 | 1 | -1/+7 |
| | | | | | | dynamically imported when Pynche is running via askcolor out of a package. If the ImportError occurs, try again, prepending the package name and digging out the module. | ||||
* | Missing space; reported by Robert Kern <kernr@ncifcrf.gov>. | Fred Drake | 1999-07-06 | 1 | -1/+1 |
| | |||||
* | Fix a number of minor problems pointed out by /F. | Fred Drake | 1999-07-06 | 1 | -7/+8 |
| | |||||
* | Fixed typo reported by /F; thanks! | Fred Drake | 1999-07-06 | 1 | -1/+1 |
| | |||||
* | Bump the release number to 1.5.2p1. | Fred Drake | 1999-07-06 | 1 | -1/+1 |
| | |||||
* | Drag module added. | Jack Jansen | 1999-07-05 | 1 | -0/+2 |
| | |||||
* | Darn! Forgot to re-target. | Fred Drake | 1999-07-02 | 1 | -1/+1 |
| | |||||
* | Remove one item. | Fred Drake | 1999-07-02 | 1 | -9/+8 |
| | | | | Rearrange & comment on others. | ||||
* | Minor markup nit. | Fred Drake | 1999-07-02 | 2 | -3/+3 |
| | |||||
* | Added entry for asyncore module. | Fred Drake | 1999-07-02 | 2 | -0/+2 |
| | |||||
* | Fix a few markup nits, improve some index entries. | Fred Drake | 1999-07-02 | 1 | -38/+41 |
| |