[issue4238] BSD support for multiprocessing.cpu_count

2008-11-28 Thread Jesse Noller
Jesse Noller <[EMAIL PROTECTED]> added the comment: Fixed, trunk r67423 -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue4238] BSD support for multiprocessing.cpu_count

2008-10-30 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> jnoller nosy: +jnoller ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue4238] BSD support for multiprocessing.cpu_count

2008-10-30 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: @epg: Ooops, I read sys.platform == 'bsd'. ___ Python tracker <[EMAIL PROTECTED]> ___ ___ P

[issue4238] BSD support for multiprocessing.cpu_count

2008-10-30 Thread Eric Gillespie
Eric Gillespie <[EMAIL PROTECTED]> added the comment: sys.platform is 'netbsd4', and presumably 'freebsd5' and so on, so that won't work. ___ Python tracker <[EMAIL PROTECTED]> ___

[issue4238] BSD support for multiprocessing.cpu_count

2008-10-30 Thread STINNER Victor
STINNER Victor <[EMAIL PROTECTED]> added the comment: I prefer to use the test "sys.platform in ('darwin', 'bsd')" ;-) -- nosy: +haypo ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue4238] BSD support for multiprocessing.cpu_count

2008-10-29 Thread Eric Gillespie
New submission from Eric Gillespie <[EMAIL PROTECTED]>: Tested on NetBSD, but should work on any; sysctl goes back to 4.4BSD. -- components: Library (Lib) files: diff messages: 75353 nosy: epg severity: normal status: open title: BSD support for multiprocessing.cpu_count versions: Python