Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | verify that warnings are issued for bogus uses of global | Jeremy Hylton | 2001-02-28 | 1 | -0/+4 |
| | |||||
* | Patch #403985: Add support for weak-keyed dictionaries | Martin v. Löwis | 2001-02-27 | 1 | -0/+4 |
| | |||||
* | inspect: a module for getting information out of live Python objects | Ka-Ping Yee | 2001-02-27 | 1 | -0/+1 |
| | |||||
* | Make sure ConfigParser uses .optionxform() consistently; this affects | Fred Drake | 2001-02-26 | 1 | -0/+1 |
| | | | | | | .has_option(), .remove_option(), and .set(). This closes SF tracker #232913. | ||||
* | Add __future__.py to std library, + dull test to verify that assignments | Tim Peters | 2001-02-26 | 1 | -0/+1 |
| | | | | therein are of the proper form. | ||||
* | Add test case from bug #124981: zlib decompress of sync-flushed data | Andrew M. Kuchling | 2001-02-21 | 1 | -0/+1 |
| | | | | fails | ||||
* | Added test for patch #103473: test an unquoted cookie value containing '=' | Andrew M. Kuchling | 2001-02-21 | 1 | -0/+4 |
| | |||||
* | SF patch #103749: implicit tuple + default arg | Jeremy Hylton | 2001-02-19 | 1 | -0/+7 |
| | |||||
* | Add simple section for assert, including assert w/ lambdas | Jeremy Hylton | 2001-02-19 | 1 | -0/+1 |
| | |||||
* | Add test for syntax error on "x = 1 + 1". | Jeremy Hylton | 2001-02-19 | 1 | -5/+0 |
| | | | | Move check_syntax() function into test_support. | ||||
* | 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 | 1 | -46/+1 |
| | | | | | | | | 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. | ||||
* | Moved SequenceMatcher from ndiff into new std library module difflib.py. | Tim Peters | 2001-02-10 | 1 | -0/+280 |
| | | | | | | | | | 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 | 1 | -0/+299 |
| | |||||
* | In O_writelines: Replace use of string.joinfields with "".join. | Jeremy Hylton | 2001-02-09 | 1 | -0/+2 |
| | |||||
* | update test cases for recent compiler changes: exec/import * in nested | Jeremy Hylton | 2001-02-09 | 2 | -1/+1 |
| | | | | functinos and cell vars with */** parameters | ||||
* | Fix test 9 (caught by ?!ng) | Jeremy Hylton | 2001-02-05 | 1 | -0/+1 |
| | | | | Add tests for unbound locals (Nick Mathewson) | ||||
* | Add minimal interface to symtable: _symtable module. | Jeremy Hylton | 2001-02-02 | 1 | -0/+1 |
| | |||||
* | Patch derived from Trent's 101162: a Python/C API testing framework. | Tim Peters | 2001-02-02 | 1 | -0/+1 |
| | | | | STILL NEEDS UNIX BUILD CHANGES. | ||||
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 2 | -5/+3 |
| | | | | SF patch 102989 by Thomas Wouters | ||||
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 1 | -1/+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 | ||||
* | PEP 205, Weak References -- initial checkin. | Fred Drake | 2001-02-01 | 1 | -0/+21 |
| | |||||
* | add test for illegal imports | Jeremy Hylton | 2001-01-30 | 1 | -0/+2 |
| | |||||
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -0/+2 |
| | | | | | test_new: new.code() noew takes two more arguments test_grammer: Add a bunch of test cases for lambda (not really PEP 227 related) | ||||
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -0/+13 |
| | | | | New tests cases for nested scopes. | ||||
* | add extra tests to verify that co_varnames is being set up properly | Jeremy Hylton | 2001-01-25 | 1 | -2/+4 |
| | | | | | also normalize checks for syntax errors and delete commented out definition of verify. | ||||
* | Fix the test output, now that escapes in repr() of string and Unicode | Guido van Rossum | 2001-01-24 | 2 | -6/+6 |
| | | | | are different (Ping didn't test this). | ||||
* | Fix the test output, now that escapes in repr() of string and Unicode | Guido van Rossum | 2001-01-24 | 1 | -3/+3 |
| | | | | are different (Ping couldn't test this). | ||||
* | Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. | Ka-Ping Yee | 2001-01-24 | 3 | -162/+162 |
| | | | | Switch from octal escapes to hex escapes for other nonprintable characters. | ||||
* | Add simple test of list comprehension that uses a name that isn't | Jeremy Hylton | 2001-01-23 | 1 | -0/+1 |
| | | | | | otherwise used in the same code block. (Not sure this is the right place, but there is no test_list_comprehensions.py.) | ||||
* | Reorganize pickle/cPickle testing so the tests pass regardless of the order | Tim Peters | 2001-01-22 | 1 | -12/+0 |
| | | | | they're run. | ||||
* | Patch #103343: Allow the important test_pkg to succeed under Jython. | Tim Peters | 2001-01-21 | 1 | -3/+3 |
| | |||||
* | Patch #103344: Sort dicts from extcall for easier comparison with Jython. | Tim Peters | 2001-01-21 | 1 | -36/+36 |
| | |||||
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+1 |
| | | | | | | | | added test script and expected output file as well this closes patch 103297. __all__ attributes will be added to other modules without first submitting a patch, just adding the necessary line to the test script to verify more-or-less correct implementation. | ||||
* | Now that Marc-Andre has retracted unistr(), remove the tests. | Guido van Rossum | 2001-01-19 | 1 | -1/+0 |
| | |||||
* | improved the ucnhash test a bit | Fredrik Lundh | 2001-01-19 | 1 | -0/+3 |
| | |||||
* | Jeremy's patch #103323: trivial tests of all untested modules. | Tim Peters | 2001-01-19 | 1 | -0/+1 |
| | |||||
* | add test of bastion and rexec to std regression test suite | Jeremy Hylton | 2001-01-19 | 1 | -0/+10 |
| | |||||
* | A dumb test for the dumdbm module. | Guido van Rossum | 2001-01-18 | 1 | -0/+1 |
| | |||||
* | Rich comparison tests | Guido van Rossum | 2001-01-18 | 1 | -0/+187 |
| | |||||
* | This patch adds a new builtin unistr() which behaves like str() | Marc-André Lemburg | 2001-01-17 | 1 | -0/+1 |
| | | | | | | | | | | except that it always returns Unicode objects. A new C API PyObject_Unicode() is also provided. This closes patch #101664. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
* | Ugh. Sorry. Checked in the wrong file. Please ignore revision 1.3; | Ka-Ping Yee | 2001-01-15 | 1 | -154/+154 |
| | | | | it anticipates another patch i was about to propose. | ||||
* | better format names and error messages | Ka-Ping Yee | 2001-01-15 | 1 | -2/+2 |
| | |||||
* | This patch makes sure that the function name always appears in the error | Ka-Ping Yee | 2001-01-15 | 2 | -11/+86 |
| | | | | | | | message, and tries to make the messages more consistent and helpful when the wrong number of arguments or duplicate keyword arguments are supplied. Comes with more tests for test_extcall.py and and an update to an error message in test/output/test_pyexpat. | ||||
* | Add tokenizer support and tests for u'', U"", uR'', Ur"", etc. | Ka-Ping Yee | 2001-01-15 | 1 | -365/+421 |
| | |||||
* | Committing PEP 232, function attribute feature, approved by Guido. | Barry Warsaw | 2001-01-15 | 1 | -0/+1 |
| | | | | | | Closes SF patch #103123. Regression test for function attributes, with output file. | ||||
* | SF bug 128713: type(mmap_object) blew up on Linux. | Tim Peters | 2001-01-14 | 1 | -0/+1 |
| | |||||
* | Guido found a brand new race in tempfile on Linux, due to Linux changing | Tim Peters | 2001-01-13 | 1 | -0/+5 |
| | | | | | | | | | | | | pid across threads (but in that case, it's still the same process, and so still sharing the "template" cache in tempfile.py). Repaired that, and added a new std test. On Linux, someone please run that standalone with more files and/or more threads; e.g., python lib/test/test_threadedtempfile.py -f 1000 -t 10 to run with 10 threads each creating (and deleting) 1000 temp files. | ||||
* | Moved the test codec definition to a new module and updated the test and | Marc-André Lemburg | 2001-01-10 | 1 | -0/+15 |
| | | | | | | | codec to test all charmap codec features. As side-effect of moving the test codec into a new module, the encodings package codec import mechanism is checked as well. |