[New-bugs-announce] [issue21614] Case sensitivity problem in multiprocessing.

Colin Davidson report at bugs.python.org
Fri May 30 21:55:49 CEST 2014


New submission from Colin Davidson:

On windows 7, if a Python app is run (under python 2.7.6) and the invoking filename is capitalized differently from the source file itself, a subsequent attempt to use the multiprocessing module to "fork" a process will fail in the "forking" module. This happens because the fopen at line 1559 in import.c (in the "imp" module find_module method) uses the invoking capitalization, rather than the file capitalization and fails to open the file.

The traceback gives lines 380 then 489 in forking.py, but as noted, the problem is in import.c (or in the Python startup, which could convert the capitalization...).

----------
components: Interpreter Core, Windows
messages: 219423
nosy: ColinPDavidson
priority: normal
severity: normal
status: open
title: Case sensitivity problem in multiprocessing.
type: crash
versions: Python 2.7

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue21614>
_______________________________________


More information about the New-bugs-announce mailing list