]> granicus.if.org Git - python/commitdiff
#6332: fix word dupes throughout the source.
authorGeorg Brandl <georg@python.org>
Wed, 24 Jun 2009 06:41:19 +0000 (06:41 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 24 Jun 2009 06:41:19 +0000 (06:41 +0000)
Doc/using/cmdline.rst
Misc/HISTORY
Misc/NEWS
Misc/Porting
Misc/cheatsheet
Misc/developers.txt
Misc/python.man

index 55fe957fb6f74dae1396cff09d53da6a93e72745..3c482a13549cc7e31834e6bb27a38e5056032972 100644 (file)
@@ -328,7 +328,7 @@ Miscellaneous options
       warning is triggered repeatedly for the same source line, such as inside a
       loop).
    ``module``
-      Print each warning only only the first time it occurs in each module.
+      Print each warning only the first time it occurs in each module.
    ``once``
       Print each warning only the first time it occurs in the program.
    ``error``
index 14f283d92d75fbb196d185c3f04a76cc91cd7e65..127b782c1f4bd48e9a124e7d7436eb0e63f1bf20 100644 (file)
@@ -16184,7 +16184,7 @@ people seemed not to have picked it up.  There's a Python script that
 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 @@ you could get away with the following:
        (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 @@ Changes to the source code that affect C extension writers
 ----------------------------------------------------------
 
 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
index ce03cf33bede6ddb0b32175c81a872c3d3924bd8..c9c9b55d958ec38867c2d006c01e61163335a1fd 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3794,7 +3794,7 @@ Library
 - 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
index 60ce9a8241ddc4e7cb993b9839a130fceb13758f..1b94f141e9f3b0bb021d9455e517f6ce8e0fdb23 100644 (file)
@@ -37,6 +37,6 @@ options.
 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.
index df69f244f68d5117799e13450f575cfa314fb7cf..98e3399ff9d0352e71c4a5f420d9c65f1df4cab9 100644 (file)
@@ -1145,7 +1145,7 @@ Exception>
 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
index b52e14ad443c3bef2772a42b672559316721fcfc..d9c78707696a0ae5e35ac34054a9d2616f0cb0e2 100644 (file)
@@ -62,7 +62,7 @@ Permissions History
 - 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,
index 1564f8d7549a8a3f3b2e84a6bb75ceb98711a13d..5a8e230e57af88d61afda3d334c70410a931f6ed 100644 (file)
@@ -204,7 +204,7 @@ to print a warning each time it occurs (this may generate many
 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