Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Jeffrey's latest -- almost there. | Guido van Rossum | 1997-07-15 | 1 | -30/+71 |
| | |||||
* | Jeffrey's newest | Guido van Rossum | 1997-07-15 | 4 | -215/+287 |
| | |||||
* | Three fewer incorrect failures | Guido van Rossum | 1997-07-15 | 1 | -3/+0 |
| | |||||
* | Reformatted. | Guido van Rossum | 1997-07-15 | 1 | -1557/+1548 |
| | | | | | Fixed some problem with uninitialized syntax tables. Jeffrey. | ||||
* | After some discussion with Jeremy and Fred, decided to limit the | Guido van Rossum | 1997-07-14 | 1 | -1/+1 |
| | | | | | | | | | default urlparse cache size to 20 instead of 2000. The main use of the cache seems to be to gain some speed in Grail, which is calling urljoin with the same base for each anchor. 2000 is a bit too big for Jeremy, who doesn't need the cache at all. 20 should keep at least 95% of the Grail speedup while wasting an insignificant amount of memory in Jeremy's application. | ||||
* | Reordered list of methods to hopefully put the most frequently used | Guido van Rossum | 1997-07-13 | 2 | -7/+7 |
| | | | | ones near the front. | ||||
* | Reordered list of methods to hopefully put the most frequently used | Guido van Rossum | 1997-07-13 | 1 | -8/+10 |
| | | | | | | ones near the front. Also added a missing "return -1" to PyFile_WriteString. | ||||
* | Upped version to 0.6. | Guido van Rossum | 1997-07-13 | 1 | -2/+2 |
| | |||||
* | New PythonPowered logo image. | Guido van Rossum | 1997-07-13 | 1 | -2/+2 |
| | |||||
* | Removed the traceback output in non-verbose mode | Guido van Rossum | 1997-07-11 | 2 | -109/+2 |
| | |||||
* | New from Jeffrey; small nits. | Guido van Rossum | 1997-07-11 | 1 | -2/+12 |
| | |||||
* | Jeffrey's latest. | Guido van Rossum | 1997-07-11 | 2 | -172/+153 |
| | |||||
* | Some small nits. | Guido van Rossum | 1997-07-11 | 1 | -3/+5 |
| | |||||
* | Test urlparse cache with try/except instead of has_key. | Guido van Rossum | 1997-07-11 | 1 | -1/+3 |
| | | | | This makes it thread-safe again. | ||||
* | This is pretty pathetic and full of errors, | Guido van Rossum | 1997-07-11 | 1 | -0/+339 |
| | | | | but it makes the regression test not complain about test_re. | ||||
* | test suite for re.py | Guido van Rossum | 1997-07-11 | 2 | -0/+334 |
| | |||||
* | Added reop (moved reop and regex to non-shared section). | Guido van Rossum | 1997-07-11 | 1 | -2/+3 |
| | | | | Added -I$(DBPORT) for bsddb compilation line. | ||||
* | Added /usr/bin/env python and made executable. | Guido van Rossum | 1997-07-11 | 2 | -1/+4 |
| | |||||
* | Allow '@' character as end of line padding in uuencode format. | Guido van Rossum | 1997-07-11 | 1 | -1/+3 |
| | | | | | | | Not sure why this is generated, but this fixes a problem with a particular file that was received with the following final line: F-WE<-*A5]AY]%7>8'&!!(_Y<F*55_"*%46"<OFG=>_5(F/\'``!@ | ||||
* | Use the modules base64, quopri, and uu, instead of external programs | Guido van Rossum | 1997-07-11 | 1 | -2/+22 |
| | | | | to decode/encode the standard transfer encodings. | ||||
* | Oops, some clarifications to conditional breaks. | Guido van Rossum | 1997-07-11 | 2 | -8/+8 |
| | |||||
* | Added (minimal) doc for conditional breakpoints. | Guido van Rossum | 1997-07-11 | 2 | -6/+14 |
| | | | | | (Lie about the syntax (and the syntax for "list") because latex2html doesn't seem to handle doubly nested [] pairs.) | ||||
* | Support for conditional breakpoints (Jim Fulton, with some changes). | Guido van Rossum | 1997-07-11 | 1 | -7/+22 |
| | |||||
* | Normalize whitespace. | Guido van Rossum | 1997-07-11 | 1 | -4/+4 |
| | |||||
* | Support for conditional breakpoints (Jim Fulton). | Guido van Rossum | 1997-07-11 | 1 | -4/+16 |
| | |||||
* | Removed debug print in set construction. | Guido van Rossum | 1997-07-11 | 1 | -4/+3 |
| | | | | Changed some '==' to 'in' (Tim Peters). | ||||
* | New version from Jeffrey after I complained about some glaring bugs. | Guido van Rossum | 1997-07-11 | 2 | -6/+14 |
| | |||||
* | Add MALLOC_ZERO_RETURNS_NULL symbol. | Guido van Rossum | 1997-07-10 | 2 | -0/+6 |
| | |||||
* | Added check whether malloc(0) returns NULL or not. | Guido van Rossum | 1997-07-10 | 2 | -1/+81 |
| | |||||
* | Only add 1 byte to all malloc calls when it is known that malloc(0) or | Guido van Rossum | 1997-07-10 | 1 | -3/+11 |
| | | | | | realloc(p, 0) returns NULL. See changes to configure script to be checked in later. | ||||
* | Straight from Jeffrey Ollie's web page. | Guido van Rossum | 1997-07-10 | 1 | -0/+1137 |
| | |||||
* | Fix problem discovered by Greg McFarlane: when an imported module | Guido van Rossum | 1997-07-10 | 1 | -0/+7 |
| | | | | | | | | | replaces its own entry in sys.module, reference count errors ensue; even if there is no reference count problem, it would be preferable for the import to yield the new thing in sys.modules anyway (if only because that's what later imports will yield). This opens the road to an official hack to implement a __getattr__ like feature for modules: stick an instance in sys.modules[__name__]. | ||||
* | (py-shell): Remove support for Emacs 18, implicitly add support for | Barry Warsaw | 1997-07-10 | 1 | -15/+7 |
| | | | | Emacs 20, and bind TAB key to self-insert-command in *Python* process. | ||||
* | Two improvements suggested by Tim Peters: speed up random() since we | Guido van Rossum | 1997-07-10 | 1 | -8/+5 |
| | | | | | know Python integers are at least 32 bits long; and avoid zeros in initial seed value. | ||||
* | New versions straight from Jeffrey Ollie's web site | Guido van Rossum | 1997-07-10 | 3 | -169/+700 |
| | |||||
* | Fix bug reported by Just: anonymous arguments used for tuples should | Guido van Rossum | 1997-07-10 | 1 | -1/+3 |
| | | | | | | have a unique name, otherwise they get squished by locals2fast (or fast2locals, I dunno) when the debugger is invoked before they have been transferred to real locals. | ||||
* | Wrapped up the ~/.netrc support. This is basically just the changes Guido & | Fred Drake | 1997-06-24 | 1 | -6/+27 |
| | | | | I discussed to the original version way-back-when. | ||||
* | fixed typo, "header" ==> "headers" | Fred Drake | 1997-06-20 | 2 | -2/+2 |
| | |||||
* | Mods for user mainloop event handling | Jack Jansen | 1997-06-20 | 1 | -2/+3 |
| | |||||
* | Added dopendingevents call | Jack Jansen | 1997-06-20 | 1 | -0/+31 |
| | | | | Added asyncevents call to enable asynchronous event handling | ||||
* | Allow specifying own resources for all dialogs | Jack Jansen | 1997-06-20 | 1 | -7/+15 |
| | | | | Allow changing labels on yesnocancel dialog | ||||
* | Module to buffer stdout/stderr until stdin is read. Useful for | Jack Jansen | 1997-06-20 | 1 | -0/+110 |
| | | | | | windowing programs, together with option to keep console window closed until needed. | ||||
* | Regenerated | Jack Jansen | 1997-06-20 | 3 | -3/+3 |
| | |||||
* | added SetEventHandler | Jack Jansen | 1997-06-20 | 1 | -12/+25 |
| | |||||
* | Adapted to new event handling. It is now also possible to abort out of | Jack Jansen | 1997-06-20 | 2 | -2/+12 |
| | | | | an AESend with command-. (unless specifically disabled, of course). | ||||
* | Added PyMac_SetEventHandler which allows you to replace complete event | Jack Jansen | 1997-06-20 | 1 | -43/+71 |
| | | | | | | handling in inner loop with python code. Also move (previously machine independent) PyErr_CheckSignals here, so we can propagate exceptions in event handling code. | ||||
* | Added NewAliasMinimalFromFullPath(), and allow alias.Resolve() to return | Jack Jansen | 1997-06-16 | 1 | -1/+28 |
| | | | | an FSSpec to a non-existing file. | ||||
* | MACDEPPATH: Remove `sharedmodules' from default value of this variable | Barry Warsaw | 1997-06-13 | 1 | -1/+1 |
| | | | | | | since calculate_path() in getpath.c will automatically add this. Including this here will put the sharedmodules directory on sys.path twice. | ||||
* | Added docstrings by Sue Williams, re-indented to 4 spaces / level. | Fred Drake | 1997-06-12 | 1 | -20/+44 |
| | |||||
* | Fix LaTeX bug found by examining the docstrings added to commands.py. | Fred Drake | 1997-06-12 | 2 | -2/+2 |
| |