Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Small optimizations in dispatch method: 1) lookup node's __class__ once | Jeremy Hylton | 2000-10-25 | 1 | -12/+14 |
| | | | | | and store in local; 2) define _preorder to be dispatch (rather than method that called dispatch). | ||||
* | Also point TK_LIBRARY to the appropriate directory. | Guido van Rossum | 2000-10-25 | 1 | -3/+4 |
| | | | | Changed the landmark to tclIndex, which should occur in both. | ||||
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -6/+6 |
| | | | | | | Changes to error messages to increase consistency & clarity. This (mostly) closes SourceForge patch #101839. | ||||
* | Insert the current directory to the front of sys.path -- and remove it | Guido van Rossum | 2000-10-24 | 1 | -0/+5 |
| | | | | | | | | at the end. This fixes a problem where python Lib/test/test_import.py failed while "make test" succeeded. | ||||
* | Added a test case for the saxutils.prepare_input_source setSystemId bug. | Lars Gustäbel | 2000-10-24 | 2 | -1/+14 |
| | |||||
* | Fix bug in prepare_input_source (patched by Paul P., sourceforge.net down | Lars Gustäbel | 2000-10-24 | 1 | -1/+1 |
| | | | | now, so can't find number). | ||||
* | Updated output. | Lars Gustäbel | 2000-10-24 | 1 | -1/+6 |
| | |||||
* | Added some more tests here and there. | Lars Gustäbel | 2000-10-24 | 1 | -0/+84 |
| | |||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 9 | -249/+246 |
| | |||||
* | Make reindent.py happy (lots of trailing whitespace removed). | Fred Drake | 2000-10-23 | 9 | -104/+103 |
| | |||||
* | Make reindent happy, but not in the way it planned! | Fred Drake | 2000-10-23 | 1 | -3/+3 |
| | |||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 70 | -1261/+1229 |
| | |||||
* | Use 4-space indents. | Fred Drake | 2000-10-23 | 1 | -8/+8 |
| | |||||
* | Clean up the temporary file when done with it. | Fred Drake | 2000-10-23 | 1 | -0/+4 |
| | |||||
* | Make sure the temporary file is cleaned up even when we raise TestSkipped. | Fred Drake | 2000-10-23 | 1 | -21/+24 |
| | |||||
* | Added note saying to use test_support.TESTFN for a temporary filename, | Fred Drake | 2000-10-23 | 1 | -0/+5 |
| | | | | and be clear that you need to clean it up when done. | ||||
* | Added test for regression on SourceForge bug #117490. | Fred Drake | 2000-10-23 | 2 | -0/+30 |
| | |||||
* | Maildir.__init__(): Make sure self.boxes is set. | Fred Drake | 2000-10-23 | 1 | -3/+3 |
| | | | | This closes SourceForge bug #117490. | ||||
* | Fixed a bug that caused namespace names to be reported as lists rather | Lars Gustäbel | 2000-10-19 | 1 | -0/+2 |
| | | | | than tuples. | ||||
* | Use test_support.TESTFN as the temporary filename. | Fred Drake | 2000-10-18 | 1 | -3/+3 |
| | | | | | | Fix a minor stylistic nit. This closes SourceForge bug #117032. | ||||
* | the usual (part II) | Jeremy Hylton | 2000-10-16 | 1 | -30/+40 |
| | |||||
* | Test for math.* exceptional behavior only in verbose mode, so that the | Tim Peters | 2000-10-16 | 2 | -31/+40 |
| | | | | | oddball platforms (where, e.g., math.exp(+huge) still fails to raise OverflowError) don't fail the std test suite when run normally. | ||||
* | the usual | Jeremy Hylton | 2000-10-16 | 10 | -259/+488 |
| | |||||
* | find(): Application of (slightly modified) SF patch #101928 by Ulf | Barry Warsaw | 2000-10-16 | 1 | -4/+4 |
| | | | | | | Betlehem, verified by Peter Funk. Fixes preservation of language search order lost due to use of dictionary keys instead of a list. Closes SF bug #116964. | ||||
* | Bump version to 1.0.1. | Greg Ward | 2000-10-15 | 1 | -1/+1 |
| | |||||
* | Fixed minor problem with reset(). | Lars Gustäbel | 2000-10-14 | 1 | -1/+2 |
| | |||||
* | Removed debugging code at bottom. | Greg Ward | 2000-10-14 | 1 | -8/+0 |
| | |||||
* | Untabified. | Greg Ward | 2000-10-14 | 8 | -14/+14 |
| | |||||
* | Bastian Kleineidam: make 'check_lib()' more like AC_CHECK_LIB by adding | Greg Ward | 2000-10-14 | 1 | -3/+6 |
| | | | | an 'other_libraries()' parameter. | ||||
* | Lyle Johnson: use 'normcase()' in addition to 'normpath()' when testing if | Greg Ward | 2000-10-14 | 1 | -2/+4 |
| | | | | we actually installed modules to a directory in sys.path. | ||||
* | Bastian Kleineidam: fix up any supplied command-line options. | Greg Ward | 2000-10-14 | 1 | -1/+16 |
| | |||||
* | Now supports entire Python 2.0 language and still supports Python | Jeremy Hylton | 2000-10-13 | 4 | -93/+463 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1.5.2. The compiler generates code for the version of the interpreter it is run under. ast.py: Print and Printnl add dest attr for extended print new node AugAssign for augmented assignments new nodes ListComp, ListCompFor, and ListCompIf for list comprehensions pyassem.py: add work around for string-Unicode comparison raising UnicodeError on comparison of two objects in code object's const table pycodegen.py: define VERSION, the Python major version number get magic number using imp.get_magic() instead of hard coding implement list comprehensions, extended print, and augmented assignment; augmented assignment uses Delegator classes (see doc string) fix import and tuple unpacking for 1.5.2 transformer.py: various changes to support new 2.0 grammar and old 1.5 grammar add debug_tree helper than converts and symbol and token numbers to their names | ||||
* | Updated test suite to latest pulldom changes. | Lars Gustäbel | 2000-10-13 | 2 | -19/+19 |
| | |||||
* | Moved appendChild calls back to DOMEventStream. | Lars Gustäbel | 2000-10-13 | 1 | -7/+27 |
| | | | | Added SAX2DOM class. | ||||
* | Clear siblings, now that they are being set. | Paul Prescod | 2000-10-13 | 1 | -0/+2 |
| | |||||
* | Make the regrtest.py -l (findleaks) option considerably less obnoxious. | Neil Schemenauer | 2000-10-13 | 1 | -4/+10 |
| | | | | | | First, only report garbage that the GC cannot free. Second, only report the number of objects found, not their repr(). People can dig deeper on their own if they find a leak. | ||||
* | Fix SF bug #116263: support for from .. import * | Jeremy Hylton | 2000-10-12 | 3 | -4/+13 |
| | | | | | | transformer.py: return '*', None from com_import_as_name pycodegen.py: special case for name == '*' pyassem.py: fix stack counting for IMPORT_ opcodes | ||||
* | If the status line is invalid, assume it is a pre-1.0 response. The | Jeremy Hylton | 2000-10-12 | 1 | -3/+10 |
| | | | | msg/headers are empty and the entire response is treated as the body. | ||||
* | Recreated after installer source code changes. | Thomas Heller | 2000-10-12 | 1 | -246/+246 |
| | | | | | This should close SF bug (patch) http://sourceforge.net/patch/?func=detailpatch&patch_id=101844&group_id=5470 | ||||
* | two fixes for redirects: | Jeremy Hylton | 2000-10-12 | 1 | -24/+31 |
| | | | | | | | | | | | | | | | - don't close the fp, since that appears to also close the socket - join the original url with the redirect reponse to deal with relative redirect URL wrap two socket ops in try/except to turn them into URLErrors, so that client code need only catch one exception. in HTTPError.__del__ only close fp if fp is not None style changes: - use f(*args) instead of apply(f, args) - use __super_init instead of super.__init__(self, ...) | ||||
* | cosmetic changes only: | Jeremy Hylton | 2000-10-12 | 1 | -118/+118 |
| | | | | use standard Python style for whitespace near = and () | ||||
* | Added a test for the StringIO write() error I just fixed. | Guido van Rossum | 2000-10-12 | 2 | -0/+9 |
| | |||||
* | [ Bug #116636 ] Bug in StringIO.write() | Guido van Rossum | 2000-10-12 | 1 | -0/+2 |
| | | | | | | | | | | | | http://sourceforge.net/bugs/?func=detailbug&bug_id=116636&group_id=5470 bobalex@rsv.ricoh.com Bug report: If the file position is less than the end of the "file", and a write is performed extending past then end of the file, the data string is corrupted. Solution: in write(), when writing past the end, properly set self.len when newpos is > self.len. | ||||
* | Anonymous patch to add Darwin 1.2 to the list of BSDs. | Guido van Rossum | 2000-10-12 | 1 | -1/+1 |
| | | | | | | | Let's hope this is correct (I'm not sure why the sys.platform would be 'Darwin1.2' rather than 'darwin1', which seems to be the convention). Someone with Darwin please test this! | ||||
* | Added some single tuple/list unpacking for JPython regression testing. | Barry Warsaw | 2000-10-12 | 1 | -0/+12 |
| | |||||
* | A Mystery: I somehow managed to delete the last two lines of my test_math.py | Tim Peters | 2000-10-12 | 1 | -0/+2 |
| | | | | changes. Here restoring them. | ||||
* | Stop raising OverflowError on underflows reported by libm (errno==ERANGE and | Tim Peters | 2000-10-12 | 2 | -0/+30 |
| | | | | | | | | | libm result is 0). Cautiously add a few libm exception test cases: 1. That exp(-huge) returns 0 without exception. 2. That exp(+huge) triggers OverflowError. 3. That sqrt(-1) raises ValueError specifically (apparently under glibc linked with -lieee, it was raising OverflowError due to an accident of the way mathmodule.c's CHECK() macro happened to deal with Infs and NaNs under gcc). | ||||
* | Added additional test cases for pulldom modifications. | Lars Gustäbel | 2000-10-11 | 2 | -1/+77 |
| | |||||
* | Added parent attribute with getters and setters on XMLFilterBase. | Lars Gustäbel | 2000-10-11 | 1 | -0/+12 |
| | |||||
* | Added non-ns start and end element methods. | Lars Gustäbel | 2000-10-11 | 1 | -16/+31 |
| | | | | | Moved appendChild calls from DOMEventStream to PullDOM (parser indep). Removed duplicated sibling pointer setting (duplicated in appendChild). |