Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add varargs and kwargs flags to Lambda nodes | Jeremy Hylton | 2000-02-17 | 2 | -0/+10 |
| | |||||
* | satisfy the tabnanny | Jeremy Hylton | 2000-02-17 | 2 | -394/+398 |
| | | | | fix broken references to filename var in generateXXX methods | ||||
* | Update the description of int() to include the radix parameter; | Fred Drake | 2000-02-17 | 1 | -12/+16 |
| | | | | | | | omission noted on c.l.py by Aahz Maruch. Swapped the order of the descriptions of int() and intern() so that int() comes first (the functions are in alphabetic order). | ||||
* | Typo in a comment: "wheter" --> "whether" | Fred Drake | 2000-02-17 | 1 | -1/+1 |
| | |||||
* | Patches by Piers Lauder. | Guido van Rossum | 2000-02-17 | 1 | -8/+21 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reasons for patches: 1st patch (15,21): version change 2nd patch (66,72): This is a patch I found in a Zope product release (quite by accident!). It relaxes the conditions for matching a literal. I've looked over the logic, and tested it, and it seems sensible. 3rd patch (117,123): It appears the quoting matcher was too general, and that the IMAP4 protocol requires characters like ':' in commands to be unquoted. (This is the patch already sent to Guido.) 4th patch (699,705): Spelling correction in comment. 5th patch (753,761): Another patch from the Zope product. It seems that some IMAP4 servers produce unexpected responses in the middle of valid command/response sequences. This patch ignores the unexpected responses in this situation. (How I wish users would send me bug reports with examples!). last 2 patches: (1015,1028) (1038,1044): Minor improvements to test code. | ||||
* | Add primitive customization of window size and font. | Guido van Rossum | 2000-02-17 | 1 | -3/+19 |
| | | | | A few alternative selections can be made by changing "if 0" to "if 1". | ||||
* | Patch by Mark Hammond: | Guido van Rossum | 2000-02-17 | 1 | -15/+75 |
| | | | | | | | | | | * Changes to a recent patch by Chris Tismer to errors.c. Chris' patch always used FormatMessage() to get the error message passing the error code from errno - but errno and FormatMessage use a different numbering scheme. The main reason the patch looked OK was that ENOFILE==ERROR_FILE_NOT_FOUND - but that is about the only shared error code :-). The MS CRT docs tell you to use _sys_errlist()/_sys_nerr. My patch does also this, and adds a very similar function specifically for win32 error codes. | ||||
* | Changes by Mark Hammond related to the new WindowsError exception. | Guido van Rossum | 2000-02-17 | 1 | -0/+6 |
| | |||||
* | Declarations related to new WindowsError exception. | Guido van Rossum | 2000-02-17 | 1 | -0/+7 |
| | |||||
* | Added WindowsError, for Mark Hammond's extensions. | Guido van Rossum | 2000-02-17 | 1 | -0/+6 |
| | |||||
* | Added docs for new crc32() function. By Jim Ahlstrom. | Guido van Rossum | 2000-02-16 | 1 | -0/+12 |
| | | | | (Fred, please check.) | ||||
* | Added test for new crc32() function. | Guido van Rossum | 2000-02-16 | 1 | -0/+6 |
| | |||||
* | Patch by Jim Ahlstrom to add crc32, a useful checksum function | Guido van Rossum | 2000-02-16 | 1 | -0/+141 |
| | | | | | | | | | | | (e.g. used for ZIP files). The patch includes code that says: + Copyright (C) 1986 Gary S. Brown. You may use this program, or + code or tables extracted from it, as desired without restriction. My interpretation (and Jim's) is that Gary S Brown has no claims under copyright, patent or other rights or interests. Lawyers might disagree. | ||||
* | The 0.5 release happened on 2/15, not on 2/14. :-) | Guido van Rossum | 2000-02-16 | 1 | -1/+1 |
| | |||||
* | support for arglists with implicit tuple unpacks | Jeremy Hylton | 2000-02-16 | 2 | -30/+122 |
| | | | | | | | | | | | | | | - added a number of support methods to generate code just before the body - hack protocol for communicating number of args to PyAssembler fix TryExcept generation for case where exception handler has no body fix visitAssAttr add comment about incomplete visitAssName stop using the ExampleASTVisitor change script invocation to accept a list of .py files (e.g. Lib/*.py) | ||||
* | more robust assignment of lineno for keyword args | Jeremy Hylton | 2000-02-16 | 2 | -6/+6 |
| | | | | | | | | get the lineno from the name of the keyword arg example of case that didn't work-- def foo(x, y, a = None, b = None): | ||||
* | fix argcount generation for arg lists containing tuple unpacks | Jeremy Hylton | 2000-02-16 | 2 | -4/+26 |
| | | | | this is sort of a hack | ||||
* | add flatten helper function | Jeremy Hylton | 2000-02-16 | 2 | -0/+22 |
| | |||||
* | finish first impl of code generator | Jeremy Hylton | 2000-02-15 | 2 | -24/+140 |
| | | | | | add support for nodes TryExcept, TryFinally, Sliceobj fix visitSubscript to properly handle x[a,b,c] | ||||
* | fix creation of Ellipsis node | Jeremy Hylton | 2000-02-15 | 2 | -2/+2 |
| | |||||
* | add a little debugging support when new.code raises SystemError | Jeremy Hylton | 2000-02-15 | 2 | -10/+42 |
| | |||||
* | no real change -- testing syncmail | Jeremy Hylton | 2000-02-15 | 1 | -1/+1 |
| | |||||
* | add line numbers to nodes in the except clause (when possible) | Jeremy Hylton | 2000-02-15 | 2 | -2/+6 |
| | |||||
* | tidy up tryexcept and tryfinally nodes | Jeremy Hylton | 2000-02-15 | 2 | -28/+40 |
| | |||||
* | A bit restructured. | Guido van Rossum | 2000-02-15 | 1 | -15/+40 |
| | |||||
* | Oops, somehow the initial checkin was botched. :-( | Guido van Rossum | 2000-02-15 | 1 | -0/+336 |
| | |||||
* | Added some clarifications. | Guido van Rossum | 2000-02-15 | 1 | -4/+8 |
| | |||||
* | Temporarily add a copy here for easy distribution. | Guido van Rossum | 2000-02-15 | 1 | -0/+0 |
| | |||||
* | More changes. | Guido van Rossum | 2000-02-15 | 1 | -1/+20 |
| | |||||
* | Notice status back and stack viewer. | Guido van Rossum | 2000-02-15 | 1 | -0/+5 |
| | |||||
* | Support for Moshe's status bar. | Guido van Rossum | 2000-02-15 | 1 | -2/+20 |
| | |||||
* | Status bar code -- by Moshe Zadka. | Guido van Rossum | 2000-02-15 | 1 | -0/+32 |
| | |||||
* | Adding the old stack viewer implementation back, for the debugger. | Guido van Rossum | 2000-02-15 | 1 | -0/+276 |
| | |||||
* | New stack viewer, uses a tree widget. | Guido van Rossum | 2000-02-15 | 1 | -230/+89 |
| | | | | (XXX: the debugger doesn't yet use this.) | ||||
* | Correct a typo and remove an unqualified except that was hiding the error. | Guido van Rossum | 2000-02-15 | 1 | -2/+2 |
| | |||||
* | Add an XXX comment about the ClassBrowser AIP. | Guido van Rossum | 2000-02-15 | 1 | -0/+2 |
| | |||||
* | Updated change log. | Guido van Rossum | 2000-02-15 | 1 | -0/+434 |
| | |||||
* | News update. Probably incomplete; what else is new? | Guido van Rossum | 2000-02-15 | 1 | -0/+27 |
| | |||||
* | Updated for pending IDLE 0.5 release (still very rough -- just getting | Guido van Rossum | 2000-02-15 | 1 | -5/+5 |
| | | | | it out in a more convenient format than CVS). | ||||
* | Tiny addition. | Guido van Rossum | 2000-02-15 | 1 | -1/+1 |
| | |||||
* | In response to one particular complaint on edu-sig, change some error | Guido van Rossum | 2000-02-15 | 1 | -3/+3 |
| | | | | | | messages from "OverflowError: integer pow()" to "OverflowError: integer exponentiation". (Not that this takes care of the complaint in general that the error messages could be greatly improved. :-) | ||||
* | edit a doc string | Jeremy Hylton | 2000-02-14 | 2 | -2/+12 |
| | | | | (real intent is to test out rsync install) | ||||
* | Make multiplying a sequence by a long integer (5L * 'b') legal | Andrew M. Kuchling | 2000-02-14 | 1 | -2/+13 |
| | |||||
* | get rid of spurious print | Jeremy Hylton | 2000-02-14 | 2 | -2/+0 |
| | |||||
* | Patch by Gerrit Holl: | Guido van Rossum | 2000-02-14 | 2 | -4/+4 |
| | | | | * In crlf.py and lfcr.py: regsub -> re | ||||
* | Patch by Gerrit Holl: | Guido van Rossum | 2000-02-14 | 1 | -2/+6 |
| | | | | | | * In logmerge.py: added '-r' flag to show the oldest checkin first instead of the newest, and getopt.getopt was used wrong. | ||||
* | looks like everything is working except for try/except (pystone | Jeremy Hylton | 2000-02-14 | 2 | -12/+28 |
| | | | | compiles correctly) | ||||
* | LeftShift & RightShift: fix reprs, change attr names to left and right | Jeremy Hylton | 2000-02-14 | 2 | -20/+20 |
| | | | | (so they are common with other binary ops) | ||||
* | Fix the question marks next to the expansions of some of the | Fred Drake | 2000-02-14 | 1 | -2/+2 |
| | | | | | colorspace name abbreviations, based on email from Gerrit Holl <gerrit.holl@pobox.com>. | ||||
* | rename several of the generic attribute names for nodes. new node attrs are: | Jeremy Hylton | 2000-02-14 | 2 | -24/+24 |
| | | | | | | Exec: expr, locals, globals Dict: items Assert: test, fail |