Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Issue #7318: multiprocessing now uses a timeout when it fails to establish | Antoine Pitrou | 2009-11-13 | 1 | -2/+13 | |
| | | | | | | a connection with another process, rather than looping endlessly. The default timeout is 20 seconds, which should be amply sufficient for local connections. | |||||
* | #6938: "ident" is always a string, so use a format code which works. | Georg Brandl | 2009-09-18 | 1 | -1/+1 | |
| | ||||||
* | Fix issue 4660: spurious task_done errors in multiprocessing, remove doc ↵ | Jesse Noller | 2009-08-06 | 1 | -3/+16 | |
| | | | | note for from_address | |||||
* | Issue 6433: multiprocessing.pool.map hangs on empty list | Jesse Noller | 2009-07-16 | 1 | -0/+2 | |
| | ||||||
* | Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes ↵ | Jesse Noller | 2009-06-30 | 1 | -1/+2 | |
| | | | | in processes | |||||
* | Typo fix. | Georg Brandl | 2009-06-08 | 1 | -1/+1 | |
| | ||||||
* | __enter__ and __exit__ must be on the class | Benjamin Peterson | 2009-05-31 | 1 | -4/+12 | |
| | ||||||
* | Add custom initializer argument to multiprocess.Manager*, courtesy of lekma | Jesse Noller | 2009-04-02 | 2 | -3/+13 | |
| | ||||||
* | Fix multiprocessing.event to match the new threading.Event API | Jesse Noller | 2009-04-01 | 1 | -0/+5 | |
| | ||||||
* | add JoinableQueue to __all__ | Jesse Noller | 2009-03-31 | 1 | -1/+1 | |
| | ||||||
* | Issue 5177: use socket.SO_REUSEADDR on multiprocessing SocketManager sockets | Jesse Noller | 2009-03-30 | 1 | -0/+1 | |
| | ||||||
* | Properly document multiprocessing's logging support, resolve outstanding ↵ | Jesse Noller | 2009-01-25 | 2 | -13/+26 | |
| | | | | issues with the custom levels | |||||
* | Issue 5009: multiprocessing: failure in manager._debug_info() | Jesse Noller | 2009-01-21 | 1 | -3/+3 | |
| | ||||||
* | issue 4301: patch logging to add processName, remove the old ↵ | Jesse Noller | 2009-01-18 | 1 | -24/+0 | |
| | | | | _check_logger_class code | |||||
* | Resolve issue 4449: AssertionError in mp_benchmarks.py | Jesse Noller | 2009-01-18 | 1 | -4/+10 | |
| | ||||||
* | issue4238: bsd support for cpu_count | Jesse Noller | 2008-11-28 | 1 | -1/+1 | |
| | ||||||
* | Fix typo. | Georg Brandl | 2008-11-22 | 1 | -1/+1 | |
| | ||||||
* | issue3770: if SEM_OPEN is 0, disable the mp.synchronize module, rev. Nick ↵ | Jesse Noller | 2008-09-30 | 1 | -0/+11 | |
| | | | | Coghlan, Damien Miller | |||||
* | use the new threading properties for multiprocessing (reviewed by Jesse #3927) | Benjamin Peterson | 2008-09-22 | 1 | -6/+0 | |
| | ||||||
* | revert r66114 for Jesse | Benjamin Peterson | 2008-09-01 | 5 | -39/+146 | |
| | ||||||
* | Submit Nick's patch for issue 3589, reviewed by jnoller | Jesse Noller | 2008-09-01 | 4 | -132/+32 | |
| | ||||||
* | Fix problem reported by pychecker where AuthenticationError wasn't imported. | Neal Norwitz | 2008-08-25 | 1 | -1/+1 | |
| | | | | | | | 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 Noller | 2008-08-19 | 8 | -40/+40 | |
| | | | | and convert them to properties. Update the docs and the examples included. | |||||
* | patch up multiprocessing until it's API can be changed too | Benjamin Peterson | 2008-08-18 | 3 | -9/+9 | |
| | ||||||
* | change a few uses of the threading APIs | Benjamin Peterson | 2008-08-18 | 2 | -9/+9 | |
| | ||||||
* | Fix the connection refused error part of issue 3419, use errno module ↵ | Jesse Noller | 2008-08-11 | 1 | -1/+2 | |
| | | | | instead of a static list of possible connection refused messages. | |||||
* | Remove the fqdn call for issue 3270 | Jesse Noller | 2008-08-11 | 1 | -4/+1 | |
| | ||||||
* | Docstring typo | Mark Dickinson | 2008-08-06 | 1 | -1/+1 | |
| | ||||||
* | Apply Amaury's patch to multiprocessing for issue 3125, removes the copy_reg ↵ | Jesse Noller | 2008-07-16 | 5 | -57/+64 | |
| | | | | and replaces it with ForkingPickler.register(), which should resolve the conflict with the global registry/ctypes | |||||
* | Revert 3270 patch: self._address is in pretty widespread use, need to revisit | Jesse Noller | 2008-07-15 | 1 | -3/+5 | |
| | ||||||
* | multiprocessing/connection.py patch to remove fqdn oddness for issue 3270 | Jesse Noller | 2008-07-15 | 1 | -4/+0 | |
| | ||||||
* | fix isSet in _exposed | Benjamin Peterson | 2008-06-26 | 1 | -2/+1 | |
| | ||||||
* | use the new API | Benjamin Peterson | 2008-06-26 | 1 | -1/+1 | |
| | ||||||
* | get rid of 2.6/3.0 switch statements in multiprocessing | Benjamin Peterson | 2008-06-25 | 2 | -23/+6 | |
| | ||||||
* | use byte literals in multiprocessing | Benjamin Peterson | 2008-06-25 | 1 | -8/+3 | |
| | ||||||
* | remove bytes alias in multiprocessing | Benjamin Peterson | 2008-06-25 | 2 | -14/+0 | |
| | ||||||
* | darn! I converted half of the files the wrong way. | Benjamin Peterson | 2008-06-13 | 12 | -4726/+4726 | |
| | ||||||
* | convert multiprocessing to unix line endings | Benjamin Peterson | 2008-06-13 | 14 | -540/+540 | |
| | ||||||
* | give the threading API PEP 8 names | Benjamin Peterson | 2008-06-11 | 6 | -39/+39 | |
| | ||||||
* | fix import of multiprocessing by juggling imports | Benjamin Peterson | 2008-06-11 | 1 | -1/+3 | |
| | ||||||
* | add the multiprocessing package to fulfill PEP 371 | Benjamin Peterson | 2008-06-11 | 14 | -0/+4928 | |