Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Describe -s a little more generically. | Barry Warsaw | 2001-02-23 | 1 | -5/+6 |
| | |||||
* | 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 |
| | | | | fails | ||||
* | Patch #103854: raises an exception if a non-Attr node is passed to | Andrew M. Kuchling | 2001-02-21 | 1 | -0/+11 |
| | | | | | | NamedNodeMap.setNamedItem(). Martin, should I sync the PyXML tree, too, or do you want to do it? (I don't know if you're wrapping the 0.6.4 release right now.) | ||||
* | Added test for patch #103473: test an unquoted cookie value containing '=' | Andrew M. Kuchling | 2001-02-21 | 2 | -0/+7 |
| | |||||
* | SF patch #103749: implicit tuple + default arg | Jeremy Hylton | 2001-02-19 | 2 | -3/+40 |
| | |||||
* | 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 |
| | | | | Move check_syntax() function into test_support. | ||||
* | detect attempts to repeat anchors (fixes bug #130748) | Fredrik Lundh | 2001-02-18 | 1 | -0/+2 |
| | |||||
* | 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 | 1 | -1/+1 |
| | | | | | - removed __all__ cruft from internal modules (sorry, skip) - don't assume ASCII for string escapes (sorry, per) | ||||
* | removed __all__ from several modules | Skip Montanaro | 2001-02-18 | 1 | -17/+0 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-02-15 | 2 | -5/+4 |
| | |||||
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 1 | -0/+29 |
| | | | | | | also modified check_all function to suppress all warnings since they aren't relevant to what this test is doing (allows quiet checking of regsub, for instance) | ||||
* | Patch #103748 from Toby Dickenson: fix typo in test_zlib that turns one | Andrew M. Kuchling | 2001-02-14 | 1 | -1/+1 |
| | | | | test case into a no-op because ''.join('hello world') == 'hello world' | ||||
* | Test section name using some strange characters, including a backslash | Fred Drake | 2001-02-14 | 1 | -2/+7 |
| | | | | (SF bug #132288). | ||||
* | Change doctest exception example to one whose detail hasn't changed since 1.5.2. | Tim Peters | 2001-02-14 | 1 | -2/+2 |
| | |||||
* | Teach doctest about newer "(most recent call last)" traceback spelling. | Tim Peters | 2001-02-13 | 1 | -1/+1 |
| | |||||
* | Added options that use square brackets in their names; this ensures that | Fred Drake | 2001-02-12 | 2 | -89/+50 |
| | | | | | | | | GNOME-style internationalized options can be parsed using ConfigParser (SF bug #131635). Converted the tests to use test_support.verify() instead of output comparison to work. | ||||
* | test_pty started failing on Windows, but if and only if test___all__ was | Tim Peters | 2001-02-12 | 1 | -2/+16 |
| | | | | | | | | | | | | run first. Indirectly due to Skip adding check_all("pty") to test___all__: that caused the expected ImportError due to pty.py trying to import the non-existent FCNTL to get handled by test___all__, leaving a partial module object for pty in sys.modules, which caused the later import of pty via test_pty to succeed. Then test_tpy died with an AttributeError, due to trying to access attributes of pty that didn't exist. regrtest viewed that as a failure rather than the appropriate "test skipped". Fixed by deleting partial module objects in test___all__ when test___all__ handles an ImportError. | ||||
* | __all__ for several more modules | Skip Montanaro | 2001-02-12 | 1 | -0/+11 |
| | |||||
* | Patch by Finn Bock to make test_unicode.py work for Jython. | Marc-André Lemburg | 2001-02-10 | 1 | -5/+10 |
| | |||||
* | Moved SequenceMatcher from ndiff into new std library module difflib.py. | Tim Peters | 2001-02-10 | 2 | -0/+282 |
| | | | | | | | | | Guido told me to do this <wink>. Greatly expanded docstrings, and fleshed out with examples. New std test. Added new get_close_matches() function for ESR. Needs docs, but LaTeXification of the module docstring is all it needs. \CVS: ---------------------------------------------------------------------- | ||||
* | Add std test for doctest. | Tim Peters | 2001-02-10 | 2 | -0/+301 |
| | |||||
* | In O_writelines: Replace use of string.joinfields with "".join. | Jeremy Hylton | 2001-02-09 | 2 | -1/+9 |
| | |||||
* | update to use new symtable interface | Jeremy Hylton | 2001-02-09 | 1 | -3/+4 |
| | |||||
* | update test cases for recent compiler changes: exec/import * in nested | Jeremy Hylton | 2001-02-09 | 4 | -23/+65 |
| | | | | functinos and cell vars with */** parameters | ||||
* | Whitespace normalization. | Tim Peters | 2001-02-09 | 4 | -13/+11 |
| | |||||
* | joinfields -> join. | Eric S. Raymond | 2001-02-09 | 1 | -1/+1 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 3 | -7/+5 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 6 | -7/+5 |
| | | | | (This one was trivial -- no actual string. references in it!) | ||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 9 | -23/+17 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -1/+1 |
| | | | | (This one was trivial -- no actual string. references in it!) | ||||
* | a few more __all__ lists | Skip Montanaro | 2001-02-07 | 1 | -0/+4 |
| | |||||
* | test for presence of __builtins__ in names before deleting it, enabling this | Skip Montanaro | 2001-02-07 | 1 | -1/+2 |
| | | | | to work with Jython (ugh! I hate that name!). This closes patch 103665. | ||||
* | Add xml declaration into toxml testcase. | Martin v. Löwis | 2001-02-06 | 1 | -1/+1 |
| | |||||
* | added several more __all__ lists | Skip Montanaro | 2001-02-06 | 1 | -0/+7 |
| | |||||
* | Fix test 9 (caught by ?!ng) | Jeremy Hylton | 2001-02-05 | 2 | -1/+31 |
| | | | | Add tests for unbound locals (Nick Mathewson) | ||||
* | Renamed _testXXX to _testcapiXXX. Jack is my hero -- good call! | Tim Peters | 2001-02-04 | 1 | -6/+6 |
| | |||||
* | Add minimal interface to symtable: _symtable module. | Jeremy Hylton | 2001-02-02 | 2 | -0/+9 |
| | |||||
* | Patch derived from Trent's 101162: a Python/C API testing framework. | Tim Peters | 2001-02-02 | 2 | -0/+17 |
| | | | | STILL NEEDS UNIX BUILD CHANGES. | ||||
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 4 | -24/+24 |
| | | | | SF patch 102989 by Thomas Wouters | ||||
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 2 | -2/+0 |
| | | | | | | | | | | | discussion on python-dev. 'from mod import *' is still banned except at the module level. Fix value for special NOOPT entry in symtable. Initialze to 0 instead of None, so that later uses of PyInt_AS_LONG() are valid. (Bug reported by Donn Cave.) replace local REPR macros with PyObject_REPR in object.h | ||||
* | move extra arguments to the back of the new.code() arglist | Jeremy Hylton | 2001-02-01 | 1 | -1/+4 |
| | |||||
* | Revise the driver code to be more informative in the final report. | Fred Drake | 2001-02-01 | 1 | -7/+10 |
| | |||||
* | PEP 205, Weak References -- initial checkin. | Fred Drake | 2001-02-01 | 2 | -0/+239 |
| | |||||
* | Checking in patch #103478 -- makes popen2 and fork1 tested on BeOS. | Moshe Zadka | 2001-01-30 | 2 | -9/+9 |
| | | | | Tested for not breaking builds on Linux. | ||||
* | Fix test for free ref to global. This test should have caught a | Jeremy Hylton | 2001-01-30 | 1 | -1/+1 |
| | | | | recently fixed bug, but it checked for the wrong answer. | ||||
* | add test for illegal imports | Jeremy Hylton | 2001-01-30 | 2 | -0/+4 |
| | |||||
* | Fixed .capitalize() method of Unicode objects to work like the | Marc-André Lemburg | 2001-01-29 | 2 | -0/+4 |
| | | | | | | corresponding string method. Added tests for this too. Patch written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. |