#6332: fix word dupes throughout the source.
diff --git a/Misc/HISTORY b/Misc/HISTORY
index 14f283d..127b782 100644
--- a/Misc/HISTORY
+++ b/Misc/HISTORY
@@ -16184,7 +16184,7 @@
fixes old code: demo/scripts/classfix.py.
* There's a new reserved word: "access". The syntax and semantics are
-still subject of of research and debate (as well as undocumented), but
+still subject of research and debate (as well as undocumented), but
the parser knows about the keyword so you must not use it as a
variable, function, or attribute name.
@@ -16434,7 +16434,7 @@
(a) define a function of one argument and call it with any
number of arguments; if the actual argument count wasn't
one, the function would receive a tuple containing the
- arguments arguments (an empty tuple if there were none).
+ arguments (an empty tuple if there were none).
(b) define a function of two arguments, and call it with more
than two arguments; if there were more than two arguments,
@@ -16756,7 +16756,7 @@
----------------------------------------------------------
The function strdup() no longer exists (it was used only in one places
-and is somewhat of a a portability problem sice some systems have the
+and is somewhat of a portability problem since some systems have the
same function in their C library.
The functions NEW() and RENEW() allocate one spare byte to guard
diff --git a/Misc/NEWS b/Misc/NEWS
index ce03cf3..c9c9b55 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3794,7 +3794,7 @@
- Bug #1565661: in webbrowser, split() the command for the default
GNOME browser in case it is a command with args.
-- Made the error message for time.strptime when the data data and
+- Made the error message for time.strptime when the data and
format do match be more clear.
- Fix a bug in traceback.format_exception_only() that led to an error
diff --git a/Misc/Porting b/Misc/Porting
index 60ce9a8..1b94f14 100644
--- a/Misc/Porting
+++ b/Misc/Porting
@@ -37,6 +37,6 @@
Then bang on it until it executes very simple Python statements.
Now bang on it some more. At some point you'll want to use the os
-module; this is the time to start thinking about what to to with the
+module; this is the time to start thinking about what to do with the
posix module. It's okay to simply #ifdef out those functions that
cause problems; the remaining ones will be quite useful.
diff --git a/Misc/cheatsheet b/Misc/cheatsheet
index df69f24..98e3399 100644
--- a/Misc/cheatsheet
+++ b/Misc/cheatsheet
@@ -1145,7 +1145,7 @@
Standard methods & operators redefinition in classes
Standard methods & operators map to special '__methods__' and thus may be
- redefined (mostly in in user-defined classes), e.g.:
+ redefined (mostly in user-defined classes), e.g.:
class x:
def __init__(self, v): self.value = v
def __add__(self, r): return self.value + r
diff --git a/Misc/developers.txt b/Misc/developers.txt
index b52e14a..d9c7870 100644
--- a/Misc/developers.txt
+++ b/Misc/developers.txt
@@ -62,7 +62,7 @@
- Heiko Weinen was given SVN access on 29 April 2008 by MvL,
for GSoC contributions.
-- Jesus Cea was was given SVN access on 24 April 2008 by MvL,
+- Jesus Cea was given SVN access on 24 April 2008 by MvL,
for maintenance of bsddb.
- Guilherme Polo was given SVN access on 24 April 2008 by MvL,
diff --git a/Misc/python.man b/Misc/python.man
index 1564f8d..5a8e230 100644
--- a/Misc/python.man
+++ b/Misc/python.man
@@ -204,7 +204,7 @@
messages if a warning is triggered repeatedly for the same source
line, such as inside a loop);
.B module
-to print each warning only only the first time it occurs in each
+to print each warning only the first time it occurs in each
module;
.B once
to print each warning only the first time it occurs in the program; or