diff options
author | Georg Brandl <georg@python.org> | 2009-06-24 06:41:19 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-24 06:41:19 (GMT) |
commit | 5a85d5c4f2eb09e5ab5d4c84090aee38340eb284 (patch) | |
tree | 1c64a74b913bd00cf07b3795275a088a6f0f2547 /Misc/HISTORY | |
parent | 6c860f97d7b11350d2b70f4b47a2b276e20652ef (diff) | |
download | cpython-5a85d5c4f2eb09e5ab5d4c84090aee38340eb284.zip cpython-5a85d5c4f2eb09e5ab5d4c84090aee38340eb284.tar.gz cpython-5a85d5c4f2eb09e5ab5d4c84090aee38340eb284.tar.bz2 |
#6332: fix word dupes throughout the source.
Diffstat (limited to 'Misc/HISTORY')
-rw-r--r-- | Misc/HISTORY | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/HISTORY b/Misc/HISTORY index 14f283d..127b782 100644 --- a/Misc/HISTORY +++ b/Misc/HISTORY @@ -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 |