diff options
author | Georg Brandl <georg@python.org> | 2006-10-12 11:46:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-10-12 11:46:57 (GMT) |
commit | 6840fcd80023366b99d506f2c92b6994f95dbbf3 (patch) | |
tree | 00f87320bcb5e3ae996597f9bba680e7802754af /Doc/tut | |
parent | 10f0f691d3773011192532bd5030af98cd90b94f (diff) | |
download | cpython-6840fcd80023366b99d506f2c92b6994f95dbbf3.zip cpython-6840fcd80023366b99d506f2c92b6994f95dbbf3.tar.gz cpython-6840fcd80023366b99d506f2c92b6994f95dbbf3.tar.bz2 |
Bug #1560114: the Mac filesystem does have accurate information
about the case of filenames.
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index e2ebbba..99c7584 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -2855,7 +2855,7 @@ Now what happens when the user writes \code{from Sound.Effects import *}? Ideally, one would hope that this somehow goes out to the filesystem, finds which submodules are present in the package, and imports them all. Unfortunately, this operation does not work very -well on Mac and Windows platforms, where the filesystem does not +well on Windows platforms, where the filesystem does not always have accurate information about the case of a filename! On these platforms, there is no guaranteed way to know whether a file \file{ECHO.PY} should be imported as a module \module{echo}, |