[issue11672] multiprocessing.Array fails if size parameter is a long

2011-03-25 Thread Mark Dickinson
Changes by Mark Dickinson : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue11672] multiprocessing.Array fails if size parameter is a long

2011-03-25 Thread Mark Dickinson
Mark Dickinson added the comment: Duplicate of issue 11673 :-) -- resolution: -> duplicate superseder: -> RawArray does not accept long ___ Python tracker ___

[issue11672] multiprocessing.Array fails if size parameter is a long

2011-03-25 Thread Mark Dickinson
New submission from Mark Dickinson : [From a problem encountered by an EPD user, analyzed by Robert Kern] There appears to be an if isinstance(size_or_initializer, (int, long)): check in the Python 2.x source for multiprocessing.RawArray. As a result, the following works (as expected): P