Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removed debugging print statement | Guido van Rossum | 1996-10-08 | 1 | -1/+0 |
| | |||||
* | Simple test module for strop. | Guido van Rossum | 1996-10-08 | 1 | -0/+21 |
| | |||||
* | Subtle hack so the eps printed is not dependent on the formatting | Guido van Rossum | 1996-08-29 | 1 | -2/+3 |
| | | | | habits of the C library we happen to use... | ||||
* | Added test for math module | Guido van Rossum | 1996-08-08 | 3 | -0/+183 |
| | |||||
* | exec() -> exec | Guido van Rossum | 1995-08-11 | 1 | -1/+1 |
| | |||||
* | test for specific bug in vars() | Guido van Rossum | 1995-08-11 | 1 | -0/+9 |
| | |||||
* | added "pystone" benchmark | Guido van Rossum | 1995-03-30 | 1 | -0/+229 |
| | |||||
* | test signal module | Guido van Rossum | 1995-03-16 | 1 | -0/+50 |
| | |||||
* | avoid math, don't abort when overflow check fails | Guido van Rossum | 1995-03-04 | 2 | -4/+9 |
| | |||||
* | add class exceptions | Guido van Rossum | 1995-02-13 | 1 | -0/+1 |
| | |||||
* | test class exceptions | Guido van Rossum | 1995-02-09 | 1 | -0/+36 |
| | |||||
* | Fix exec test so presence of __builtins__ doesn't break it | Guido van Rossum | 1995-01-10 | 1 | -0/+3 |
| | |||||
* | * Lib/test/test_b1.py: test eval() and execfile() with globals, | Guido van Rossum | 1995-01-02 | 1 | -0/+13 |
| | | | | locals arguments | ||||
* | Test new __import__ module, test reload of built-in module, test | Guido van Rossum | 1994-12-30 | 4 | -2/+12 |
| | | | | has_key() on empty dictionary | ||||
* | more complete tests of built-in functions | Guido van Rossum | 1994-11-10 | 3 | -2/+95 |
| | |||||
* | Test set for new pow() function | Guido van Rossum | 1994-08-12 | 1 | -0/+92 |
| | |||||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 5 | -28/+152 |
| | |||||
* | added barrier test (by Tim Peters) | Guido van Rossum | 1994-05-23 | 1 | -2/+67 |
| | |||||
* | Module to test threads | Guido van Rossum | 1994-04-14 | 1 | -0/+41 |
| | |||||
* | Search for test files in sys.path | Guido van Rossum | 1994-03-09 | 1 | -0/+10 |
| | |||||
* | Add test code for audioop and rgbimg (includes three binary files!) | Guido van Rossum | 1994-01-12 | 5 | -0/+405 |
| | |||||
* | Some minute changes. | Guido van Rossum | 1993-12-29 | 1 | -3/+21 |
| | |||||
* | * Mass change: get rid of all init() methods, in favor of __init__() | Guido van Rossum | 1993-12-17 | 1 | -3/+2 |
| | | | | | | | constructors. There is no backward compatibility. Not everything has been tested. * aiff.{py,doc}: deleted in favor of aifc.py (which contains its docs as comments) | ||||
* | * wdbframewin.py (re_eval): set __privileged__ in globals so private | Guido van Rossum | 1993-12-14 | 1 | -0/+24 |
| | | | | | | | variables can still be seen by the debugger * ftplib.py (retrlines): args should be *args. * ChangeLog: entries for Sjoerd's addition sunau.py and changes to aiff.py * test_md5.py: test program for built-in md5 module | ||||
* | * test_*.py: new lambda syntax (also affects tests for filter, map, | Guido van Rossum | 1993-11-30 | 4 | -20/+13 |
| | | | | | | | | | | reduce) * ftplib.py: added default callback for retrlines; added dir() method * ftplib.py: don't return self in self.connect(); added hack so that if 'CDUP' is not understood, 'CWD ..' is tried. * ftplib.py: second method called init() should have been called connect(); if __init__ sees more than one argument, it will also try to login(). | ||||
* | * test_select.py: (some) tests for built-in select module | Guido van Rossum | 1993-11-11 | 3 | -0/+42 |
| | | | | | | * test_grammar.py, testall.out: added test for funny things in string literals * token.py, symbol.py: definitions used with built-in parser module. * tokenize.py: added double-quote recognition | ||||
* | * string.py: added rindex(), rfind(); changed index() to interpret | Guido van Rossum | 1993-11-08 | 4 | -10/+66 |
| | | | | | | | | | | | negative start indices starting from the right. * ftplib.py: debug() -> set_debuglevel(); change demo to use __init__(). * os.py: added execl, execlp, and execvp. * lambda.py: removed (now that we have built-in map, reduce, bagof, lambda) * test_b{1,2}.py, testall.out: added tests for bagof, lambda, map, reduce * commands.py: use os, not posix * test_grammar.py: make it easy to disable non-portable int overflow tests * dis.py: don't abuse range() | ||||
* | added builtin b/w compat module. | Guido van Rossum | 1993-10-22 | 3 | -11/+22 |
| | | | | changed testing of exec. | ||||
* | * profile.py, pdb.py: added help() function | Guido van Rossum | 1993-10-22 | 1 | -0/+3 |
| | | | | | | * builtin.py: b/w compat for builtin -> __builtin__ name change * string.py: added atof() and atol() and corresponding exceptions * test_types.py: added test for list sort with user comparison function | ||||
* | * ftplib.py: added abort() command (sends oob data). | Guido van Rossum | 1993-05-24 | 1 | -1/+1 |
| | | | | | | * Several modules: change "class C(): ..." to "class C: ...". * flp.py: support for frozen forms. * Added string.find() which is like index but returns -1 if not found | ||||
* | * Fix bug in tzparse.py for DST timezone | Guido van Rossum | 1993-03-29 | 2 | -0/+36 |
| | | | | | | | * Added whatis command to pdb.py * new module GET.py (GL definitions from <gl/get.h>) * rect.py: is_empty takes a rect as argument, not two points. * Added tests for builtin round() [XXX not yet complete!] | ||||
* | * os.py: _exit doesn't exist in all variations of posix | Guido van Rossum | 1993-01-26 | 3 | -18/+41 |
| | | | | * Added fcmp() to test_support.py and use it in test*.py | ||||
* | * Add some more tests for numbers | Guido van Rossum | 1993-01-21 | 2 | -0/+24 |
| | | | | * mainloop.py: don't use select unless absolutely necessary (for Mac) | ||||
* | Added output from testall run, for autotest.py. | Guido van Rossum | 1992-11-27 | 1 | -0/+133 |
| | |||||
* | Added some new tests and two new files for testing: test_types.py | Guido van Rossum | 1992-11-27 | 6 | -6/+295 |
| | | | | | (testing operations on built-in types) and autotest.py (automatic regression testing). | ||||
* | Unmerged except and finally clauses | Guido van Rossum | 1992-05-06 | 2 | -5/+5 |
| | |||||
* | '+' no longer accepted for varargs list | Guido van Rossum | 1992-04-03 | 1 | -1/+1 |
| | |||||
* | Some weird forms of try statements are no longer allowed. | Guido van Rossum | 1992-03-31 | 1 | -5/+1 |
| | |||||
* | Initial revision | Guido van Rossum | 1992-01-27 | 8 | -0/+756 |
| | |||||
* | Split in a number of subtest for easy maintenance and continued Mac support. | Guido van Rossum | 1992-01-27 | 1 | -506/+20 |
| | |||||
* | New == syntax | Guido van Rossum | 1992-01-01 | 1 | -17/+38 |
| | |||||
* | New class syntax. | Guido van Rossum | 1991-12-26 | 1 | -12/+8 |
| | | | | Use ImportERror | ||||
* | Added ZeroDivisionError except clauses. | Guido van Rossum | 1991-12-16 | 1 | -0/+3 |
| | |||||
* | test new functions and syntax | Guido van Rossum | 1991-08-16 | 1 | -18/+92 |
| | |||||
* | Don't us sys.ps1 and sys.ps2. | Guido van Rossum | 1991-04-07 | 1 | -3/+7 |
| | | | | Exercise trailing comma in tuples. | ||||
* | Initial revision | Guido van Rossum | 1990-12-26 | 1 | -0/+416 |