Skip to content

Commit eeb575f

Browse files
committed
Merged revisions 73544 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73544 | georg.brandl | 2009-06-24 06:41:19 +0000 (Mi, 24 Jun 2009) | 1 line #6332: fix word dupes throughout the source. ........
1 parent bbcd1eb commit eeb575f

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

Doc/using/cmdline.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ Miscellaneous options
286286
warning is triggered repeatedly for the same source line, such as inside a
287287
loop).
288288
``module``
289-
Print each warning only only the first time it occurs in each module.
289+
Print each warning only the first time it occurs in each module.
290290
``once``
291291
Print each warning only the first time it occurs in the program.
292292
``error``

Misc/HISTORY

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17569,7 +17569,7 @@ people seemed not to have picked it up. There's a Python script that
1756917569
fixes old code: demo/scripts/classfix.py.
1757017570

1757117571
* There's a new reserved word: "access". The syntax and semantics are
17572-
still subject of of research and debate (as well as undocumented), but
17572+
still subject of research and debate (as well as undocumented), but
1757317573
the parser knows about the keyword so you must not use it as a
1757417574
variable, function, or attribute name.
1757517575

@@ -17819,7 +17819,7 @@ you could get away with the following:
1781917819
(a) define a function of one argument and call it with any
1782017820
number of arguments; if the actual argument count wasn't
1782117821
one, the function would receive a tuple containing the
17822-
arguments arguments (an empty tuple if there were none).
17822+
arguments (an empty tuple if there were none).
1782317823

1782417824
(b) define a function of two arguments, and call it with more
1782517825
than two arguments; if there were more than two arguments,
@@ -18141,7 +18141,7 @@ Changes to the source code that affect C extension writers
1814118141
----------------------------------------------------------
1814218142

1814318143
The function strdup() no longer exists (it was used only in one places
18144-
and is somewhat of a a portability problem sice some systems have the
18144+
and is somewhat of a portability problem since some systems have the
1814518145
same function in their C library.
1814618146

1814718147
The functions NEW() and RENEW() allocate one spare byte to guard

Misc/Porting

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ options.
3737
Then bang on it until it executes very simple Python statements.
3838

3939
Now bang on it some more. At some point you'll want to use the os
40-
module; this is the time to start thinking about what to to with the
40+
module; this is the time to start thinking about what to do with the
4141
posix module. It's okay to simply #ifdef out those functions that
4242
cause problems; the remaining ones will be quite useful.

Misc/cheatsheet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ Exception>
11061106
Standard methods & operators redefinition in classes
11071107

11081108
Standard methods & operators map to special '__methods__' and thus may be
1109-
redefined (mostly in in user-defined classes), e.g.:
1109+
redefined (mostly in user-defined classes), e.g.:
11101110
class x:
11111111
def __init__(self, v): self.value = v
11121112
def __add__(self, r): return self.value + r

Misc/developers.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Permissions History
6262
- Heiko Weinen was given SVN access on 29 April 2008 by MvL,
6363
for GSoC contributions.
6464

65-
- Jesus Cea was was given SVN access on 24 April 2008 by MvL,
65+
- Jesus Cea was given SVN access on 24 April 2008 by MvL,
6666
for maintenance of bsddb.
6767

6868
- Guilherme Polo was given SVN access on 24 April 2008 by MvL,

Misc/python.man

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ to print a warning each time it occurs (this may generate many
193193
messages if a warning is triggered repeatedly for the same source
194194
line, such as inside a loop);
195195
.B module
196-
to print each warning only only the first time it occurs in each
196+
to print each warning only the first time it occurs in each
197197
module;
198198
.B once
199199
to print each warning only the first time it occurs in the program; or

0 commit comments

Comments
 (0)