summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Removed debugging print statementGuido van Rossum1996-10-081-1/+0
|
* Simple test module for strop.Guido van Rossum1996-10-081-0/+21
|
* Subtle hack so the eps printed is not dependent on the formattingGuido van Rossum1996-08-291-2/+3
| | | | habits of the C library we happen to use...
* Added test for math moduleGuido van Rossum1996-08-083-0/+183
|
* exec() -> execGuido van Rossum1995-08-111-1/+1
|
* test for specific bug in vars()Guido van Rossum1995-08-111-0/+9
|
* added "pystone" benchmarkGuido van Rossum1995-03-301-0/+229
|
* test signal moduleGuido van Rossum1995-03-161-0/+50
|
* avoid math, don't abort when overflow check failsGuido van Rossum1995-03-042-4/+9
|
* add class exceptionsGuido van Rossum1995-02-131-0/+1
|
* test class exceptionsGuido van Rossum1995-02-091-0/+36
|
* Fix exec test so presence of __builtins__ doesn't break itGuido van Rossum1995-01-101-0/+3
|
* * Lib/test/test_b1.py: test eval() and execfile() with globals,Guido van Rossum1995-01-021-0/+13
| | | | locals arguments
* Test new __import__ module, test reload of built-in module, testGuido van Rossum1994-12-304-2/+12
| | | | has_key() on empty dictionary
* more complete tests of built-in functionsGuido van Rossum1994-11-103-2/+95
|
* Test set for new pow() functionGuido van Rossum1994-08-121-0/+92
|
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-015-28/+152
|
* added barrier test (by Tim Peters)Guido van Rossum1994-05-231-2/+67
|
* Module to test threadsGuido van Rossum1994-04-141-0/+41
|
* Search for test files in sys.pathGuido van Rossum1994-03-091-0/+10
|
* Add test code for audioop and rgbimg (includes three binary files!)Guido van Rossum1994-01-125-0/+405
|
* Some minute changes.Guido van Rossum1993-12-291-3/+21
|
* * Mass change: get rid of all init() methods, in favor of __init__()Guido van Rossum1993-12-171-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 privateGuido van Rossum1993-12-141-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 Rossum1993-11-304-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 moduleGuido van Rossum1993-11-113-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 interpretGuido van Rossum1993-11-084-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 Rossum1993-10-223-11/+22
| | | | changed testing of exec.
* * profile.py, pdb.py: added help() functionGuido van Rossum1993-10-221-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 Rossum1993-05-241-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 timezoneGuido van Rossum1993-03-292-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 posixGuido van Rossum1993-01-263-18/+41
| | | | * Added fcmp() to test_support.py and use it in test*.py
* * Add some more tests for numbersGuido van Rossum1993-01-212-0/+24
| | | | * mainloop.py: don't use select unless absolutely necessary (for Mac)
* Added output from testall run, for autotest.py.Guido van Rossum1992-11-271-0/+133
|
* Added some new tests and two new files for testing: test_types.pyGuido van Rossum1992-11-276-6/+295
| | | | | (testing operations on built-in types) and autotest.py (automatic regression testing).
* Unmerged except and finally clausesGuido van Rossum1992-05-062-5/+5
|
* '+' no longer accepted for varargs listGuido van Rossum1992-04-031-1/+1
|
* Some weird forms of try statements are no longer allowed.Guido van Rossum1992-03-311-5/+1
|
* Initial revisionGuido van Rossum1992-01-278-0/+756
|
* Split in a number of subtest for easy maintenance and continued Mac support.Guido van Rossum1992-01-271-506/+20
|
* New == syntaxGuido van Rossum1992-01-011-17/+38
|
* New class syntax.Guido van Rossum1991-12-261-12/+8
| | | | Use ImportERror
* Added ZeroDivisionError except clauses.Guido van Rossum1991-12-161-0/+3
|
* test new functions and syntaxGuido van Rossum1991-08-161-18/+92
|
* Don't us sys.ps1 and sys.ps2.Guido van Rossum1991-04-071-3/+7
| | | | Exercise trailing comma in tuples.
* Initial revisionGuido van Rossum1990-12-261-0/+416