aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSean Reifscheider <jafo@tummy.com>2007-09-17 17:55:36 +0000
committerSean Reifscheider <jafo@tummy.com>2007-09-17 17:55:36 +0000
commit54cf12b625397ff52e30efd9b14f0b61edfdfd9d (patch)
tree98eb3de7701e05ae46d4fa16e4c357a162e8a9fc /Misc
parentMerged revisions 58149-58150 via svnmerge from (diff)
downloadcpython-54cf12b625397ff52e30efd9b14f0b61edfdfd9d.tar.gz
cpython-54cf12b625397ff52e30efd9b14f0b61edfdfd9d.tar.bz2
cpython-54cf12b625397ff52e30efd9b14f0b61edfdfd9d.zip
Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/HISTORY2
-rw-r--r--Misc/setuid-prog.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 7ab7e370760..5ae7dd423ca 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -403,7 +403,7 @@ Extension modules
- os.urandom has been added for systems that support sources of random
data.
-- Patch 1012740: truncate() on a writeable cStringIO now resets the
+- Patch 1012740: truncate() on a writable cStringIO now resets the
position to the end of the stream. This is consistent with the original
StringIO module and avoids inadvertently resurrecting data that was
supposed to have been truncated away.
diff --git a/Misc/setuid-prog.c b/Misc/setuid-prog.c
index d850b47bcb0..2841acd28f0 100644
--- a/Misc/setuid-prog.c
+++ b/Misc/setuid-prog.c
@@ -155,7 +155,7 @@ main(int argc, char **argv)
fprintf(stderr, "%s: %s has the wrong owner\n", argv[0],
FULL_PATH);
fprintf(stderr, "The script should be owned by root,\n");
- fprintf(stderr, "and shouldn't be writeable by anyone.\n");
+ fprintf(stderr, "and shouldn't be writable by anyone.\n");
exit(1);
}