summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_multiprocessing.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 79165 via svnmerge fromEzio Melotti2010-08-021-1/+3
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79165 | florent.xicluna | 2010-03-21 03:14:24 +0200 (Sun, 21 Mar 2010) | 2 lines #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. ........
* Merged revisions 80669 via svnmerge fromAntoine Pitrou2010-04-301-3/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r80669 | antoine.pitrou | 2010-05-01 01:08:48 +0200 (sam., 01 mai 2010) | 4 lines Issue #8576: Remove use of find_unused_port() in test_smtplib and test_multiprocessing. Patch by Paul Moore. ........
* Merged revisions 78035,78040,78043,78049-78050,78052-78054 via svnmerge fromGeorg Brandl2010-02-071-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r78035 | georg.brandl | 2010-02-06 23:44:17 +0100 (Sa, 06 Feb 2010) | 1 line Fix duplicate import. ........ r78040 | georg.brandl | 2010-02-07 00:08:00 +0100 (So, 07 Feb 2010) | 1 line Fix a few UnboundLocalErrors in test_long. ........ r78043 | georg.brandl | 2010-02-07 00:12:19 +0100 (So, 07 Feb 2010) | 1 line Remove duplicate test method. ........ r78049 | georg.brandl | 2010-02-07 00:33:33 +0100 (So, 07 Feb 2010) | 1 line Fix import/access for some identifiers. _TestSharedCTypes does not seem to be executed? ........ r78050 | georg.brandl | 2010-02-07 00:34:10 +0100 (So, 07 Feb 2010) | 1 line Fix more unbound locals in code paths that do not seem to be used. ........ r78052 | georg.brandl | 2010-02-07 00:54:04 +0100 (So, 07 Feb 2010) | 1 line Add missing import when running these tests standalone. ........ r78053 | georg.brandl | 2010-02-07 00:54:43 +0100 (So, 07 Feb 2010) | 1 line Fix some name errors in Mac modules. ........ r78054 | georg.brandl | 2010-02-07 00:58:25 +0100 (So, 07 Feb 2010) | 1 line Add missing import. ........
* Merged revisions 76840 via svnmerge fromR. David Murray2009-12-141-2/+4
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76840 | r.david.murray | 2009-12-14 16:57:39 -0500 (Mon, 14 Dec 2009) | 3 lines Issue #7498: make test_multiprocessing use test_support.find_unused_port instead of a hard coded port number in test_rapid_restart. ........
* Merged revisions 73708,73738 via svnmerge fromR. David Murray2009-07-211-1/+68
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73708 | jesse.noller | 2009-06-30 13:11:52 -0400 (Tue, 30 Jun 2009) | 1 line Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes in processes ........ r73738 | r.david.murray | 2009-06-30 22:49:10 -0400 (Tue, 30 Jun 2009) | 2 lines Make punctuation prettier and break up run-on sentence. ........
* merge 70783 back to 26maintJesse Noller2009-03-301-0/+4
|
* finalize the queue to resolve test issueJesse Noller2009-03-301-0/+2
|
* Merge 70717 to 26maintJesse Noller2009-03-301-0/+24
|
* Merge 68768 to maintJesse Noller2009-03-301-1/+15
|
* Merged revisions 68708 via svnmerge fromBenjamin Peterson2009-01-181-2/+14
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r68708 | jesse.noller | 2009-01-17 20:45:38 -0600 (Sat, 17 Jan 2009) | 1 line Resolve issue 4449: AssertionError in mp_benchmarks.py ........
* issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick ↵Jesse Noller2008-09-301-0/+8
| | | | Coghlan, Damien Miller
* 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
* 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.
* 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-181-2/+2
|
* Remove duplicate importMark Dickinson2008-08-061-1/+0
|
* Fix issue 3395, update _debugInfo to be _debug_infoJesse Noller2008-07-171-1/+1
|
* remove sys.version_info check for 3.0Benjamin Peterson2008-07-131-5/+1
|
* remove bytes aliasBenjamin Peterson2008-07-131-7/+0
|
* Add #!/usr/bin/env python for benJesse Noller2008-07-021-0/+2
|
* Reenable the manager tests with Amaury's threading fixJesse Noller2008-07-021-17/+13
|
* Remove test_listener_client to remove possible race condition in the ↵Jesse Noller2008-06-181-2/+2
| | | | multiprocessing tests
* Attempt RLock creation prior to test execution on Linux, if it raises the ↵Jesse Noller2008-06-181-3/+6
| | | | OSError in issue 3111, skip the test suite
* add needed importBenjamin Peterson2008-06-171-0/+1
|
* skip test_multiprocessing when /dev/shm doesn't exist. This seems to be a ↵Benjamin Peterson2008-06-171-0/+3
| | | | chroot problem in the buildbot env.
* reduce the test_multiprocessing load to ones that shouldn't hang. These will ↵Benjamin Peterson2008-06-161-19/+20
| | | | be reenabled gradually as we find the problems.
* convert multiprocessing to unix line endingsBenjamin Peterson2008-06-131-1791/+1791
|
* give the threading API PEP 8 namesBenjamin Peterson2008-06-111-3/+3
|
* fix import of multiprocessing by juggling importsBenjamin Peterson2008-06-111-1/+1
|
* add the multiprocessing package to fulfill PEP 371Benjamin Peterson2008-06-111-0/+1791