Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a minor typo and mark an exception name that was missed. | Fred Drake | 2001-08-14 | 1 | -1/+1 |
| | |||||
* | Add material about the "r" and "u" prefixes for string literals; should | Fred Drake | 2001-08-14 | 1 | -8/+14 |
| | | | | | | | be reviewed for clarity. Work around a bogosity in the HTML version of the escape sequences table conversion. | ||||
* | Added some examples of table markup. | Fred Drake | 2001-08-14 | 1 | -0/+71 |
| | |||||
* | Fix typo in astgen script | Jeremy Hylton | 2001-08-14 | 4 | -4/+4 |
| | |||||
* | Add information about __floordiv__() and __truediv__() methods for | Fred Drake | 2001-08-14 | 1 | -5/+17 |
| | | | | implementing numeric objects in Python. | ||||
* | Non-function fields, like tp_dictoffset and tp_weaklistoffset, should | Guido van Rossum | 2001-08-14 | 1 | -5/+22 |
| | | | | | | | be inherited in inherit_special(), otherwise dynamic types don't inherit these. Also added some XXX comments about open ends. | ||||
* | Fix SF bug [ #450909 ] __future__.division fails at prompt | Jeremy Hylton | 2001-08-14 | 1 | -2/+6 |
| | | | | | | When code is compiled and compiler flags are passed in, be sure to update cf_flags with any features defined by future statements in the compiled code. | ||||
* | Add a test for a weird bug I just discovered: a dynamic subclass | Guido van Rossum | 2001-08-14 | 1 | -0/+5 |
| | | | | doesn't have a __dict__! | ||||
* | Clarify the prompt in an example. | Fred Drake | 2001-08-14 | 1 | -1/+1 |
| | | | | This closes SF bug #450633. | ||||
* | Regenerated from new ast.txt and new astgen.py | Jeremy Hylton | 2001-08-14 | 2 | -24/+46 |
| | |||||
* | Add getChildNodes() method to Node | Jeremy Hylton | 2001-08-14 | 2 | -0/+4 |
| | |||||
* | Add Yield node | Jeremy Hylton | 2001-08-14 | 2 | -0/+2 |
| | |||||
* | Document the new semantics for setting and deleting a function's | Barry Warsaw | 2001-08-14 | 1 | -0/+6 |
| | | | | | | | | | __dict__ attribute. Deleting it, or setting it to a non-dictionary result in a TypeError. Note that getting it the first time magically initializes it to an empty dict so that func.__dict__ will always appear to be a dictionary (never None). Closes SF bug #446645. | ||||
* | Test the new semantics for setting and deleting a function's __dict__ | Barry Warsaw | 2001-08-14 | 1 | -45/+50 |
| | | | | | | | | | attribute. Deleting it, or setting it to a non-dictionary result in a TypeError. Note that getting it the first time magically initializes it to an empty dict so that func.__dict__ will always appear to be a dictionary (never None). Closes SF bug #446645. | ||||
* | func_getattro(), func_setattro(): Implement the new semantics for | Barry Warsaw | 2001-08-14 | 1 | -8/+22 |
| | | | | | | | | | | setting and deleting a function's __dict__ attribute. Deleting it, or setting it to a non-dictionary result in a TypeError. Note that getting it the first time magically initializes it to an empty dict so that func.__dict__ will always appear to be a dictionary (never None). Closes SF bug #446645. | ||||
* | Describe the new semantics for setting and deleting a function's | Barry Warsaw | 2001-08-14 | 1 | -10/+5 |
| | | | | | | | | | __dict__ attribute. Deleting it, or setting it to a non-dictionary result in a TypeError. Note that getting it the first time magically initializes it to an empty dict so that func.__dict__ will always appear to be a dictionary (never None). Closes SF bug #446645. | ||||
* | Add "exceptions" to the list of fundamental modules | Fred Drake | 2001-08-14 | 1 | -3/+3 |
| | | | | | | created by Py_Initialize(). This closes SF bug #450621. | ||||
* | Insert omitted "the". | Fred Drake | 2001-08-14 | 1 | -1/+1 |
| | |||||
* | Add the smtpd module to the list of undocumented modules; Barry needs to | Fred Drake | 2001-08-14 | 1 | -0/+4 |
| | | | | write the documentation for this module. | ||||
* | reload(exceptions) should not raise an ImportError, but should act | Barry Warsaw | 2001-08-13 | 1 | -0/+8 |
| | | | | just like reload(sys). Test that this is so. Closes SF bug #422004. | ||||
* | Fixed typo in comment leading up to _PyImport_FixupExtension(). | Barry Warsaw | 2001-08-13 | 1 | -1/+1 |
| | |||||
* | Py_Initialize(): Apply patch by Jürgen Hermann to call | Barry Warsaw | 2001-08-13 | 1 | -0/+1 |
| | | | | | | | | _PyImport_FixupExtension() on the exceptions module. Now reload(exceptions) acts just like reload(sys) instead of raising an ImportError. This closes SF bug #422004. | ||||
* | Repair Unix-specific assumptions that caused this to fail on Windows. | Tim Peters | 2001-08-13 | 1 | -20/+18 |
| | |||||
* | found_terminator(): Add a debug print showing the data. | Barry Warsaw | 2001-08-13 | 1 | -1/+2 |
| | |||||
* | Nick Mathewson: test suite for the class browser support module. | Fred Drake | 2001-08-13 | 1 | -0/+158 |
| | |||||
* | Nick Mathewson: Make sure the recursion is handled properly. | Fred Drake | 2001-08-13 | 1 | -4/+4 |
| | | | | This is part of SF patch #440292. | ||||
* | David Goodger <dgoodger@atsautomation.com>: | Fred Drake | 2001-08-13 | 1 | -27/+240 |
| | | | | | | | Documentation for difflib/ndiff refactoring: more of the ndiff functionality has been moved to the underlying library (difflib). This closes SF patch #445413. | ||||
* | Remove redundant import (PyChecker). | Guido van Rossum | 2001-08-13 | 1 | -2/+4 |
| | | | | Update greeting message to avoid the long copyright notice. | ||||
* | Remove unused variable 'imports' from readmodule_ex(). | Guido van Rossum | 2001-08-13 | 1 | -1/+0 |
| | |||||
* | Remove redundant 'import string' (PyChecker). | Guido van Rossum | 2001-08-13 | 1 | -1/+0 |
| | |||||
* | Remove redundant imports (PyChecker). | Guido van Rossum | 2001-08-13 | 1 | -2/+0 |
| | |||||
* | Remove redundant 'import sys' (PyChecker). | Guido van Rossum | 2001-08-13 | 1 | -1/+1 |
| | |||||
* | Remove two redundant statements (PyChecker). | Guido van Rossum | 2001-08-13 | 1 | -2/+0 |
| | |||||
* | Remove redundant assignment l = [] from poll3() -- copy-and-paste | Guido van Rossum | 2001-08-13 | 1 | -1/+0 |
| | | | | error. | ||||
* | Update a beopen.com e-mail | Andrew M. Kuchling | 2001-08-13 | 1 | -2/+2 |
| | |||||
* | Update a few references to beopen.com | Andrew M. Kuchling | 2001-08-13 | 2 | -3/+3 |
| | |||||
* | Update e-mail address | Andrew M. Kuchling | 2001-08-13 | 1 | -1/+1 |
| | |||||
* | Commenting out the getfillable() method -- it's broken, and nobody | Guido van Rossum | 2001-08-13 | 1 | -2/+3 |
| | | | | remembers what it is supposed to do. :-( | ||||
* | Add a name | Andrew M. Kuchling | 2001-08-13 | 1 | -0/+1 |
| | |||||
* | Remove redefinition of has_option() method | Andrew M. Kuchling | 2001-08-13 | 1 | -7/+0 |
| | |||||
* | Remove empty __init__ (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 1 | -3/+0 |
| | |||||
* | Remove redefinition of writelines() method | Andrew M. Kuchling | 2001-08-13 | 1 | -5/+0 |
| | | | | Remove unused variable and import | ||||
* | Remove unused variable (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 3 | -3/+0 |
| | |||||
* | Remove some dead code (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 1 | -3/+1 |
| | |||||
* | Add forgotten import (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 1 | -1/+1 |
| | |||||
* | Remove unused import (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 2 | -2/+0 |
| | |||||
* | Remove redundant import | Andrew M. Kuchling | 2001-08-13 | 1 | -1/+1 |
| | |||||
* | Capture exception message (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 1 | -1/+1 |
| | |||||
* | Remove unused imports (PyChecker) | Andrew M. Kuchling | 2001-08-13 | 1 | -4/+0 |
| | |||||
* | Remove unused variable | Andrew M. Kuchling | 2001-08-13 | 1 | -1/+1 |
| |