Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.

This commit is contained in:
Sean Reifscheider 2007-09-17 17:55:36 +00:00
parent a5b8e04bd5
commit 54cf12b625
13 changed files with 33 additions and 31 deletions

View file

@ -135,7 +135,7 @@ def _decode(pathname, verbose=0):
return newpathname
if hasattr(os, 'access') and not \
os.access(os.path.dirname(pathname), os.W_OK|os.X_OK):
# The destination directory isn't writeable. Create the file in
# The destination directory isn't writable. Create the file in
# a temporary directory
import tempfile
fd, newpathname = tempfile.mkstemp(".rsrc")