summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* fix possible integer overflows in _hashopenssl #3886Benjamin Peterson2008-09-181-2/+16
|
* Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the ↵Nick Coghlan2008-09-117-64/+185
| | | | test suite. Closes issue w.r.t. 2.6 (R: Brett Cannon)
* Read unidata_version from unicodedata module.Martin v. Löwis2008-09-101-2/+9
| | | | | Delete old NormalizationTest.txt if it doesn't match unidata_version.
* Update to test Unicode 5.1.Martin v. Löwis2008-09-101-1/+1
|
* - Issue #3629: Fix sre "bytecode" validator for an end case.Guido van Rossum2008-09-101-0/+4
| | | | Reviewed by Amaury.
* Issue #3811: The Unicode database was updated to 5.1.Martin v. Löwis2008-09-101-2/+12
| | | | Reviewed by Fredrik Lundh and Marc-Andre Lemburg.
* Fix #3634 invalid return value from _weakref.ref(Exception).__init__Benjamin Peterson2008-09-091-0/+8
| | | | Reviewers: Amaury, Antoine, Benjamin
* Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging.Vinay Sajip2008-09-091-2/+2
|
* #3777: long(4.2) returned an int, and broke backward compatibility.Amaury Forgeot d'Arc2008-09-091-0/+4
| | | | | | | the __long__ slot is allowed to return either int or long, but the behaviour of float objects should not change between 2.5 and 2.6. Reviewed by Benjamin Peterson
* warnings.catch_warnings() now returns a list or None instead of the customBrett Cannon2008-09-0918-176/+166
| | | | | | | | WarningsRecorder object. This makes the API simpler to use as no special object must be learned. Closes issue 3781. Review by Benjamin Peterson.
* Issue #3806: LockTests in test_imp should be skipped when thread is not ↵Hirokazu Yamamoto2008-09-081-4/+10
| | | | | | available. Reviewed by Benjamin Peterson.
* Issue #3804: Added test for Issue #2222.Hirokazu Yamamoto2008-09-081-0/+7
| | | | Reviewed by Benjamin Peterson.
* incorporate fixes from issue 3162; SSL doc patchBill Janssen2008-09-081-0/+121
|
* Issue 3801. Fixing a dumb error in the deprecated parse_qsl()Facundo Batista2008-09-081-0/+11
| | | | function. Tests added.
* fix missing moduleBenjamin Peterson2008-09-061-1/+1
|
* #3796: A test class was not run in test_float.Amaury Forgeot d'Arc2008-09-061-1/+3
| | | | Reviewed by Benjamin.
* #3601: test_unicode.test_raiseMemError fails in UCS4Antoine Pitrou2008-09-051-1/+4
| | | | Reviewed by Benjamin Peterson on IRC.
* Deprecate bsddb for removal in Python 3.0.Brett Cannon2008-09-052-1/+2
| | | | | Closes issue 3776. Review by Nick Coghlan.
* Issue #3772: Fixed regression problem in StreamHandler.emit().Vinay Sajip2008-09-041-1/+27
|
* test_py3kwarn had been overlooked when test.test_support.catch_warning() wasBrett Cannon2008-09-031-10/+10
| | | | | | | re-implemented to use warnings.catch_warnings() and had its API improved. Closes issue #3768. Code review by Benjamin Peterson.
* Issue 600362: Relocated parse_qs() and parse_qsl(), from the cgi moduleFacundo Batista2008-09-032-22/+22
| | | | | to the urlparse one. Added a PendingDeprecationWarning in the old module, it will be deprecated in the future. Docs and tests updated.
* Issue #3726: Allowed spaces in separators in logging configuration files.Vinay Sajip2008-09-031-0/+45
|
* Issue #3759: test_asyncore.py leaked handle.Hirokazu Yamamoto2008-09-021-0/+2
| | | | Reviewed by Amaury Forgeot d'Arc
* Issue #3708: os.urandom no longer goes into an infinite loop when passed aGregory P. Smith2008-09-021-0/+4
| | | | non-integer floating point number.
* Move test.test_support.catch_warning() to the warnings module, rename itBrett Cannon2008-09-022-99/+42
| | | | | | | | | | | catch_warnings(), and clean up the API. While expanding the test suite, a bug was found where a warning about the 'line' argument to showwarning() was not letting functions with '*args' go without a warning. Closes issue 3602. Code review by Benjamin Peterson.
* remove py3k warnings about the threading api; update docsBenjamin Peterson2008-09-011-35/+0
| | | | Reviewer: Benjamin Peterson
* Issue #3751: str.rpartition would perform a left-partition when called withAmaury Forgeot d'Arc2008-09-011-0/+5
| | | | | | a unicode argument. will backport.
* #3703 unhelpful _fileio.FileIO error message when trying to open a directoryBenjamin Peterson2008-09-011-0/+11
| | | | Reviewer: Gregory P. Smith
* A collection of crashers, all variants of the ideaArmin Rigo2008-08-291-0/+53
| | | | of issue #3720.
* Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as toAntoine Pitrou2008-08-263-6/+62
| | | | | | | | | | match Python 2.5 speed despite the __instancecheck__ / __subclasscheck__ mechanism. In the process, fix a bug where isinstance() and issubclass(), when given a tuple of classes as second argument, were looking up __instancecheck__ / __subclasscheck__ on the tuple rather than on each type object. Reviewed by Benjamin Peterson and Raymond Hettinger.
* Try to reduce the flakiness of this testNeal Norwitz2008-08-251-0/+4
|
* Use bytes as return type from recv_bytes() methods. Not sure why this onlyNeal Norwitz2008-08-251-3/+3
| | | | | | | affects some buildbots. R=Brett TESTED=./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
* Fix problem reported by pychecker where AuthenticationError wasn't imported.Neal Norwitz2008-08-251-1/+33
| | | | | | | Add some test coverage to this code. More tests should be added (TODO added). R=Brett TESTED=./python -E -tt ./Lib/test/regrtest.py test_multiprocessing
* #3662: Fix segfault introduced when fixing memory leaks.Neal Norwitz2008-08-241-0/+4
| | | | | TESTED=./python -E -tt ./Lib/test/regrtest.py test_fileio R (approach from bug)=Amaury and Benjamin
* #3654: fix duplicate test method name. Review by Benjamin P.Georg Brandl2008-08-241-4/+2
|
* generate py3k warnings on __getslice__, __delslice__, and __setslice__Benjamin Peterson2008-08-241-0/+22
| | | | Reviewer: Brett Cannon
* Fix bug 3625: test issues on 64bit windows. r=pitrouMark Hammond2008-08-233-3/+3
|
* Fix float.fromhex test to give additional information on failure. ThisMark Dickinson2008-08-211-1/+7
| | | | | | change is aimed at diagnosing issue 3633 (test_float fails on Solaris). Reviewed by Benjamin Peterson
* Reverted r65900. See ↵Hirokazu Yamamoto2008-08-201-7/+3
| | | | http://mail.python.org/pipermail/python-checkins/2008-August/073116.html
* fixed get_file_system in test_os.py ('path' is unicode on py3k and ansi on ↵Hirokazu Yamamoto2008-08-201-5/+8
| | | | trunk)
* deprecate some useless, noop methods in symtableBenjamin Peterson2008-08-201-0/+16
|
* follow-up of issue3473: update the compiler package to recognize the new syntax.Amaury Forgeot d'Arc2008-08-201-0/+9
|
* check that the parser module can handle the new keyword syntaxBenjamin Peterson2008-08-191-0/+1
|
* allow keyword args to be passed in after *args #3473Benjamin Peterson2008-08-191-0/+8
|
* issue3352: clean up the multiprocessing API to remove many get_/set_ methods ↵Jesse Noller2008-08-191-32/+26
| | | | and convert them to properties. Update the docs and the examples included.
* add py3k warnings for old threading APIsBenjamin Peterson2008-08-181-0/+34
| | | | they will still live in 3.0 but it can't hurt
* fix old API names in test_sslBenjamin Peterson2008-08-181-4/+4
|
* patch up multiprocessing until it's API can be changed tooBenjamin Peterson2008-08-181-2/+8
|
* change a few uses of the threading APIsBenjamin Peterson2008-08-183-6/+6
|
* backport threading property changesBenjamin Peterson2008-08-181-6/+6
|