| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix for issue 3862: test_array fails FreeBSD 7 amd64 | Andrew MacIntyre | 2008-10-01 | 1 | -4/+5 |
| | | | | | | | | | | FreeBSD 7's underlying malloc() is behaves differently to earlier versions and seriously overcommits available memory on amd64. This may affect other 64bit platforms in some circumstances, so the scale of the problematic test is wound back. Patch by Mark Dickinson, reviewed by Martin von Loewis. | ||||
| * | Works around issue3863: freebsd4/5/6 and os2emx are known to have OS bugs when | Gregory P. Smith | 2008-09-30 | 1 | -0/+6 |
| | | | | | | | | calling fork() from a child thread. This disables that unit test (with a note printed to stderr) on those platforms. A caveat about buggy platforms is added to the os.fork documentation. | ||||
| * | fix security issue 2: imageop's poor validation of arguments could result in ↵ | Benjamin Peterson | 2008-09-30 | 1 | -2/+63 |
| | | | | | | | | segfaults patch by Victor Stinner reviewed by myself and Brett | ||||
| * | issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick ↵ | Jesse Noller | 2008-09-30 | 2 | -0/+11 |
| | | | | | Coghlan, Damien Miller | ||||
| * | fix for release blocker 3910, 2.6 regression in socket.ssl method | Bill Janssen | 2008-09-29 | 1 | -1/+15 |
| | | |||||
| * | The _lsprof module could crash the interpreter if it was given an external | Brett Cannon | 2008-09-29 | 1 | -1/+15 |
| | | | | | | | | | timer that did not return a float and a timer was still running when the Profiler object was garbage collected. Fixes issue 3895. Code review by Benjamin Peterson. | ||||
| * | merge in the fix for test_ftplib on some bots [reviewed by Georg] | Benjamin Peterson | 2008-09-28 | 1 | -0/+5 |
| | | |||||
| * | enable refactor tests | Benjamin Peterson | 2008-09-27 | 1 | -2/+2 |
| | | |||||
| * | give ftplib a real test suite | Benjamin Peterson | 2008-09-27 | 1 | -36/+425 |
| | | | | | | | | A asyncore based mock ftp server is used to test the protocol. This is all thanks to Giampaolo Rodola #3939 (Barry gave me permission to do this before final on IRC.) | ||||
| * | #3967: Correct a crash in count() and find() methods of string-like objects. | Amaury Forgeot d'Arc | 2008-09-26 | 1 | -0/+16 |
| | | | | | | | | | For example: "".count("xxxx", sys.maxint, 0) Reviewed by Benjamin Peterson. Will port to 2.5 and 3.0. | ||||
| * | Fix namedtuple bug reported by Glenn Linderman. Template did not form ↵ | Raymond Hettinger | 2008-09-25 | 1 | -0/+5 |
| | | | | | correctly if the field names were input in Unicode. | ||||
| * | #3965: on Windows, open() crashes if the filename or the mode is invalid, | Amaury Forgeot d'Arc | 2008-09-25 | 1 | -0/+10 |
| | | | | | | | and if the filename is a unicode string. Reviewed by Martin von Loewis. | ||||
| * | backport the atexit test for r66563 | Benjamin Peterson | 2008-09-23 | 1 | -0/+13 |
| | | |||||
| * | build_os2emx.patch in issue 3868 - update OS/2 EMX makefile and config files | Andrew MacIntyre | 2008-09-22 | 1 | -1/+1 |
| | | | | | | | | | Part of source_os2emx.patch in issue 3868: Include/pystrcmp.h: OS/2 has same C APIs as Windows Lib/test/test_io.py: OS/2 has same behaviour as Windows for this test Reviewed by Amaury Forgeot d'Arc | ||||
| * | #3879 fix a regression in urllib.getproxies_environment | Benjamin Peterson | 2008-09-21 | 1 | -0/+26 |
| | | | | | reviewers: Benjamin, Georg | ||||
| * | Issue #3838: TarFile object assigned to self.tar should be closed explicitly. | Hirokazu Yamamoto | 2008-09-21 | 1 | -0/+1 |
| | | | | | Reviewed by Lars Gustäbel. | ||||
| * | fix possible integer overflows in _hashopenssl #3886 | Benjamin Peterson | 2008-09-18 | 1 | -2/+16 |
| | | |||||
| * | Issue #3781: Final cleanup of warnings.catch_warnings and its usage in the ↵ | Nick Coghlan | 2008-09-11 | 7 | -64/+185 |
| | | | | | test suite. Closes issue w.r.t. 2.6 (R: Brett Cannon) | ||||
| * | Read unidata_version from unicodedata module. | Martin v. Löwis | 2008-09-10 | 1 | -2/+9 |
| | | | | | | Delete old NormalizationTest.txt if it doesn't match unidata_version. | ||||
| * | Update to test Unicode 5.1. | Martin v. Löwis | 2008-09-10 | 1 | -1/+1 |
| | | |||||
| * | - Issue #3629: Fix sre "bytecode" validator for an end case. | Guido van Rossum | 2008-09-10 | 1 | -0/+4 |
| | | | | | Reviewed by Amaury. | ||||
| * | Issue #3811: The Unicode database was updated to 5.1. | Martin v. Löwis | 2008-09-10 | 1 | -2/+12 |
| | | | | | Reviewed by Fredrik Lundh and Marc-Andre Lemburg. | ||||
| * | Fix #3634 invalid return value from _weakref.ref(Exception).__init__ | Benjamin Peterson | 2008-09-09 | 1 | -0/+8 |
| | | | | | Reviewers: Amaury, Antoine, Benjamin | ||||
| * | Issue #3809: Fixed spurious 'test.blah' file left behind by test_logging. | Vinay Sajip | 2008-09-09 | 1 | -2/+2 |
| | | |||||
| * | #3777: long(4.2) returned an int, and broke backward compatibility. | Amaury Forgeot d'Arc | 2008-09-09 | 1 | -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 custom | Brett Cannon | 2008-09-09 | 18 | -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 Yamamoto | 2008-09-08 | 1 | -4/+10 |
| | | | | | | | available. Reviewed by Benjamin Peterson. | ||||
| * | Issue #3804: Added test for Issue #2222. | Hirokazu Yamamoto | 2008-09-08 | 1 | -0/+7 |
| | | | | | Reviewed by Benjamin Peterson. | ||||
| * | incorporate fixes from issue 3162; SSL doc patch | Bill Janssen | 2008-09-08 | 1 | -0/+121 |
| | | |||||
| * | Issue 3801. Fixing a dumb error in the deprecated parse_qsl() | Facundo Batista | 2008-09-08 | 1 | -0/+11 |
| | | | | | function. Tests added. | ||||
| * | fix missing module | Benjamin Peterson | 2008-09-06 | 1 | -1/+1 |
| | | |||||
| * | #3796: A test class was not run in test_float. | Amaury Forgeot d'Arc | 2008-09-06 | 1 | -1/+3 |
| | | | | | Reviewed by Benjamin. | ||||
| * | #3601: test_unicode.test_raiseMemError fails in UCS4 | Antoine Pitrou | 2008-09-05 | 1 | -1/+4 |
| | | | | | Reviewed by Benjamin Peterson on IRC. | ||||
| * | Deprecate bsddb for removal in Python 3.0. | Brett Cannon | 2008-09-05 | 2 | -1/+2 |
| | | | | | | Closes issue 3776. Review by Nick Coghlan. | ||||
| * | Issue #3772: Fixed regression problem in StreamHandler.emit(). | Vinay Sajip | 2008-09-04 | 1 | -1/+27 |
| | | |||||
| * | test_py3kwarn had been overlooked when test.test_support.catch_warning() was | Brett Cannon | 2008-09-03 | 1 | -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 module | Facundo Batista | 2008-09-03 | 2 | -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 Sajip | 2008-09-03 | 1 | -0/+45 |
| | | |||||
| * | Issue #3759: test_asyncore.py leaked handle. | Hirokazu Yamamoto | 2008-09-02 | 1 | -0/+2 |
| | | | | | Reviewed by Amaury Forgeot d'Arc | ||||
| * | Issue #3708: os.urandom no longer goes into an infinite loop when passed a | Gregory P. Smith | 2008-09-02 | 1 | -0/+4 |
| | | | | | non-integer floating point number. | ||||
| * | Move test.test_support.catch_warning() to the warnings module, rename it | Brett Cannon | 2008-09-02 | 2 | -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 docs | Benjamin Peterson | 2008-09-01 | 1 | -35/+0 |
| | | | | | Reviewer: Benjamin Peterson | ||||
| * | Issue #3751: str.rpartition would perform a left-partition when called with | Amaury Forgeot d'Arc | 2008-09-01 | 1 | -0/+5 |
| | | | | | | | a unicode argument. will backport. | ||||
| * | #3703 unhelpful _fileio.FileIO error message when trying to open a directory | Benjamin Peterson | 2008-09-01 | 1 | -0/+11 |
| | | | | | Reviewer: Gregory P. Smith | ||||
| * | A collection of crashers, all variants of the idea | Armin Rigo | 2008-08-29 | 1 | -0/+53 |
| | | | | | of issue #3720. | ||||
| * | Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to | Antoine Pitrou | 2008-08-26 | 3 | -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 test | Neal Norwitz | 2008-08-25 | 1 | -0/+4 |
| | | |||||
| * | Use bytes as return type from recv_bytes() methods. Not sure why this only | Neal Norwitz | 2008-08-25 | 1 | -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 Norwitz | 2008-08-25 | 1 | -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 Norwitz | 2008-08-24 | 1 | -0/+4 |
| | | | | | | TESTED=./python -E -tt ./Lib/test/regrtest.py test_fileio R (approach from bug)=Amaury and Benjamin | ||||
