| Commit message (Expand) | Author | Age | Files | Lines |
* | Make sure ConfigParser uses .optionxform() consistently; this affects | Fred Drake | 2001-02-26 | 3 | -0/+28 |
|
|
* | Add __future__.py to std library, + dull test to verify that assignments | Tim Peters | 2001-02-26 | 3 | -0/+87 |
|
|
* | Additional tests for current, PEP described semantics: | Barry Warsaw | 2001-02-26 | 1 | -3/+36 |
|
|
* | Do not hide a failure to create a temporary file; if it fails the work | Fred Drake | 2001-02-23 | 1 | -5/+1 |
|
|
* | Describe -s a little more generically. | Barry Warsaw | 2001-02-23 | 1 | -5/+6 |
|
|
* | Patch #103885: Add dynamic registration and lookup of DOM implementations. | Martin v. Löwis | 2001-02-22 | 3 | -0/+81 |
|
|
* | Fix previous checkin, hopelessly broken as it was; reported by Detlef Lannert. | Jeremy Hylton | 2001-02-22 | 1 | -7/+7 |
|
|
* | replace exec with simple assignments | Jeremy Hylton | 2001-02-21 | 1 | -3/+7 |
|
|
* | The code to write timestamps couldn't handle negative times (and time | Jack Jansen | 2001-02-21 | 1 | -0/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-02-21 | 4 | -5/+4 |
|
|
* | Add test case from bug #124981: zlib decompress of sync-flushed data | Andrew M. Kuchling | 2001-02-21 | 2 | -0/+27 |
|
|
* | Patch #103854: raises an exception if a non-Attr node is passed to | Andrew M. Kuchling | 2001-02-21 | 2 | -0/+14 |
|
|
* | Added test for patch #103473: test an unquoted cookie value containing '=' | Andrew M. Kuchling | 2001-02-21 | 2 | -0/+7 |
|
|
* | Patch #103473 from dougfort: Some sites (amazon.com for one) drop | Andrew M. Kuchling | 2001-02-20 | 1 | -2/+2 |
|
|
* | Improve accuracy. In the .tex file, note the new "% BUG:" comments: an | Tim Peters | 2001-02-20 | 1 | -3/+3 |
|
|
* | SF patch #103749: implicit tuple + default arg | Jeremy Hylton | 2001-02-19 | 2 | -3/+40 |
|
|
* | Fix a few small typos in the docstrings. | Fred Drake | 2001-02-19 | 1 | -5/+5 |
|
|
* | SF Patch # 103839 byt dougfort: Allow ';' in attributes | Guido van Rossum | 2001-02-19 | 1 | -1/+1 |
|
|
* | Add simple section for assert, including assert w/ lambdas | Jeremy Hylton | 2001-02-19 | 2 | -0/+7 |
|
|
* | Add test for syntax error on "x = 1 + 1". | Jeremy Hylton | 2001-02-19 | 4 | -22/+13 |
|
|
* | fix long line | Jeremy Hylton | 2001-02-19 | 1 | -1/+2 |
|
|
* | DOMException._get_code(): | Fred Drake | 2001-02-19 | 1 | -0/+3 |
|
|
* | Enhancements to the bdist_wininst command: | Thomas Heller | 2001-02-19 | 1 | -265/+282 |
|
|
* | This patch makes the default compiler determination more flexible | Marc-André Lemburg | 2001-02-19 | 1 | -8/+40 |
|
|
* | detect attempts to repeat anchors (fixes bug #130748) | Fredrik Lundh | 2001-02-18 | 2 | -0/+5 |
|
|
* | sre_{parse, compile} no longer define __all__. | Tim Peters | 2001-02-18 | 1 | -2/+0 |
|
|
* | - restored 1.5.2 compatibility (sorry, eric) | Fredrik Lundh | 2001-02-18 | 5 | -31/+39 |
|
|
* | removed __all__ from several modules | Skip Montanaro | 2001-02-18 | 16 | -63/+0 |
|
|
* | removed __all__ - should probably rename makedict to _makedict unless it is | Skip Montanaro | 2001-02-18 | 1 | -6/+0 |
|
|
* | add module-level constants to __all__ | Skip Montanaro | 2001-02-18 | 1 | -0/+3 |
|
|
* | Split the rpath argument into multiple paths, turning it into a list. | Andrew M. Kuchling | 2001-02-17 | 1 | -0/+3 |
|
|
* | Linking just got simpiler on AIX and BeOS (closes SF patch #103679). | Neil Schemenauer | 2001-02-16 | 1 | -25/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-02-15 | 4 | -7/+6 |
|
|
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 28 | -1/+111 |
|
|
* | provide simple recovery/escape from apparent redirect recursion. If the | Skip Montanaro | 2001-02-15 | 1 | -1/+17 |
|
|
* | Provide a default for the blocksize arg of storbinary(). | Guido van Rossum | 2001-02-15 | 1 | -1/+1 |
|
|
* | Patch #103748 from Toby Dickenson: fix typo in test_zlib that turns one | Andrew M. Kuchling | 2001-02-14 | 1 | -1/+1 |
|
|
* | Test section name using some strange characters, including a backslash | Fred Drake | 2001-02-14 | 1 | -2/+7 |
|
|
* | Be much more permissive in what we accept in section names; there has been | Fred Drake | 2001-02-14 | 1 | -1/+1 |
|
|
* | Miranda newlines: if anything at all was written to stdout, supply a | Tim Peters | 2001-02-14 | 1 | -1/+7 |
|
|
* | Change doctest exception example to one whose detail hasn't changed since 1.5.2. | Tim Peters | 2001-02-14 | 2 | -6/+6 |
|
|
* | Teach doctest about newer "(most recent call last)" traceback spelling. | Tim Peters | 2001-02-13 | 2 | -4/+5 |
|
|
* | Added a comment explaining why this file must really have #! | Guido van Rossum | 2001-02-13 | 1 | -0/+9 |
|
|
* | The bulk of the credit for these changes goes to Bastian Kleineidam | Skip Montanaro | 2001-02-12 | 1 | -34/+89 |
|
|
* | Added options that use square brackets in their names; this ensures that | Fred Drake | 2001-02-12 | 2 | -89/+50 |
|
|
* | Allow square brackets in the option names; this makes it possible to use | Fred Drake | 2001-02-12 | 1 | -1/+1 |
|
|
* | This change makes imputil more closely emulate the standard import | Thomas Heller | 2001-02-12 | 1 | -1/+2 |
|
|
* | test_pty started failing on Windows, but if and only if test___all__ was | Tim Peters | 2001-02-12 | 1 | -2/+16 |
|
|
* | __all__ for several more modules | Skip Montanaro | 2001-02-12 | 12 | -0/+35 |
|
|
* | Patch by Finn Bock to make test_unicode.py work for Jython. | Marc-André Lemburg | 2001-02-10 | 1 | -5/+10 |
|
|