Skip to content

Commit

Permalink
python#11515: fix several typos. Patch by Piotr Kasprzyk.
Browse files Browse the repository at this point in the history
  • Loading branch information
ezio-melotti committed Mar 15, 2011
1 parent f6db0bb commit 42da663
Show file tree
Hide file tree
Showing 41 changed files with 1,771 additions and 1,770 deletions.
2 changes: 1 addition & 1 deletion Lib/ctypes/test/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def test_intresult(self):
self.assertEqual(result, 21)
self.assertEqual(type(result), int)

# You cannot assing character format codes as restype any longer
# You cannot assign character format codes as restype any longer
self.assertRaises(TypeError, setattr, f, "restype", "i")

def test_floatresult(self):
Expand Down
2 changes: 1 addition & 1 deletion Lib/decimal.py
Original file line number Diff line number Diff line change
Expand Up @@ -5710,7 +5710,7 @@ def _parse_format_specifier(format_spec, _localeconv=None):

def _format_align(sign, body, spec):
"""Given an unpadded, non-aligned numeric string 'body' and sign
string 'sign', add padding and aligment conforming to the given
string 'sign', add padding and alignment conforming to the given
format specifier dictionary 'spec' (as produced by
parse_format_specifier).
Expand Down
2 changes: 1 addition & 1 deletion Lib/email/mime/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self, _data, _subtype='octet-stream',
_encoder=encoders.encode_base64, **_params):
"""Create an application/* type MIME document.
_data is a string containing the raw applicatoin data.
_data is a string containing the raw application data.
_subtype is the MIME content type subtype, defaulting to
'octet-stream'.
Expand Down
2 changes: 1 addition & 1 deletion Lib/gettext.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def _parse(self, fp):
# Note: we unconditionally convert both msgids and msgstrs to
# Unicode using the character encoding specified in the charset
# parameter of the Content-Type header. The gettext documentation
# strongly encourages msgids to be us-ascii, but some appliations
# strongly encourages msgids to be us-ascii, but some applications
# require alternative encodings (e.g. Zope's ZCML and ZPT). For
# traditional gettext applications, the msgid conversion will
# cause no problems since us-ascii should always be a subset of
Expand Down
2 changes: 1 addition & 1 deletion Lib/http/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ def _send_output(self, message_body=None):
del self._buffer[:]
# If msg and message_body are sent in a single send() call,
# it will avoid performance problems caused by the interaction
# between delayed ack and the Nagle algorithim.
# between delayed ack and the Nagle algorithm.
if isinstance(message_body, bytes):
msg += message_body
message_body = None
Expand Down
4 changes: 2 additions & 2 deletions Lib/idlelib/EditorWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ def __init__(self, flist=None, filename=None, key=None, root=None):
self.top = top = WindowList.ListedToplevel(root, menu=self.menubar)
if flist:
self.tkinter_vars = flist.vars
#self.top.instance_dict makes flist.inversedict avalable to
#configDialog.py so it can access all EditorWindow instaces
#self.top.instance_dict makes flist.inversedict available to
#configDialog.py so it can access all EditorWindow instances
self.top.instance_dict = flist.inversedict
else:
self.tkinter_vars = {} # keys: Tkinter event names
Expand Down
2 changes: 1 addition & 1 deletion Lib/idlelib/HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ What's New in IDLEfork 0.8.1?
- New tarball released as a result of the 'revitalisation' of the IDLEfork
project.

- This release requires python 2.1 or better. Compatability with earlier
- This release requires python 2.1 or better. Compatibility with earlier
versions of python (especially ancient ones like 1.5x) is no longer a
priority in IDLEfork development.

Expand Down
2 changes: 1 addition & 1 deletion Lib/importlib/_bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def _check_name(method):
loader can handle.
The first argument (self) must define _name which the second argument is
comapred against. If the comparison fails then ImportError is raised.
compared against. If the comparison fails then ImportError is raised.
"""
def inner(self, name, *args, **kwargs):
Expand Down
2 changes: 1 addition & 1 deletion Lib/nntplib.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def __init__(self, host, port=NNTP_PORT, user=None, password=None,
readermode is sometimes necessary if you are connecting to an
NNTP server on the local machine and intend to call
reader-specific comamnds, such as `group'. If you get
reader-specific commands, such as `group'. If you get
unexpected NNTPPermanentErrors, you might need to set
readermode.
"""
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/crashers/recursion_limit_too_high.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# file handles.

# The point of this example is to show that sys.setrecursionlimit() is a
# hack, and not a robust solution. This example simply exercices a path
# hack, and not a robust solution. This example simply exercises a path
# where it takes many C-level recursions, consuming a lot of stack
# space, for each Python-level recursion. So 1000 times this amount of
# stack space may be too much for standard platforms already.
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def test_unary_minus(self):
self.assertEqual(eval("-" + all_one_bits), -18446744073709551615)
else:
self.fail("How many bits *does* this machine have???")
# Verify treatment of contant folding on -(sys.maxsize+1)
# Verify treatment of constant folding on -(sys.maxsize+1)
# i.e. -2147483648 on 32 bit platforms. Should return int, not long.
self.assertTrue(isinstance(eval("%s" % (-sys.maxsize - 1)), int))
self.assertTrue(isinstance(eval("%s" % (-sys.maxsize - 2)), int))
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_descr.py
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ class Pedalo(PedalWheelBoat,SmallCatamaran): pass
# see "A Monotonic Superclass Linearization for Dylan",
# by Kim Barrett et al. (OOPSLA 1996)
def test_consistency_with_epg(self):
# Testing consistentcy with EPG...
# Testing consistency with EPG...
class Pane(object): pass
class ScrollingMixin(object): pass
class EditingMixin(object): pass
Expand Down
4 changes: 2 additions & 2 deletions Lib/test/test_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def trunc(x): return x
except TypeError:
pass

# Use the constructr with a too-long tuple.
# Use the constructor with a too-long tuple.
try:
result2 = os.stat_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14))
except TypeError:
Expand Down Expand Up @@ -320,7 +320,7 @@ def test_statvfs_attributes(self):
except TypeError:
pass

# Use the constructr with a too-long tuple.
# Use the constructor with a too-long tuple.
try:
result2 = os.statvfs_result((0,1,2,3,4,5,6,7,8,9,10,11,12,13,14))
except TypeError:
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_re.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Misc tests from Tim Peters' re.doc

# WARNING: Don't change details in these tests if you don't know
# what you're doing. Some of these tests were carefuly modeled to
# what you're doing. Some of these tests were carefully modeled to
# cover most of the code.

import unittest
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def __le__(self, some_set):
self.le_called = True
return False

# This first tries the bulitin rich set comparison, which doesn't know
# This first tries the builtin rich set comparison, which doesn't know
# how to handle the custom object. Upon returning NotImplemented, the
# corresponding comparison on the right object is invoked.
myset = {1, 2, 3}
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def parse(self, format_string):
# test all parameters used
class CheckAllUsedFormatter(string.Formatter):
def check_unused_args(self, used_args, args, kwargs):
# Track which arguments actuallly got used
# Track which arguments actually got used
unused_args = set(kwargs.keys())
unused_args.update(range(0, len(args)))

Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_warnings.py
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ class PyCatchWarningTests(CatchWarningTests):
class BootstrapTest(unittest.TestCase):
def test_issue_8766(self):
# "import encodings" emits a warning whereas the warnings is not loaded
# or not completly loaded (warnings imports indirectly encodings by
# or not completely loaded (warnings imports indirectly encodings by
# importing linecache) yet
cwd = tempfile.mkdtemp()
try:
Expand Down
2 changes: 1 addition & 1 deletion Lib/tkinter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,7 @@ def wm_withdraw(self):

class Tk(Misc, Wm):
"""Toplevel widget of Tk which represents mostly the main window
of an appliation. It has an associated Tcl interpreter."""
of an application. It has an associated Tcl interpreter."""
_w = '.'
def __init__(self, screenName=None, baseName=None, className='Tk',
useTk=1, sync=0, use=None):
Expand Down
2 changes: 1 addition & 1 deletion Lib/tkinter/tix.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def tix_getimage(self, name):
extensions) exist, then the image type is chosen according to the
depth of the X display: xbm images are chosen on monochrome
displays and color images are chosen on color displays. By using
tix_ getimage, you can advoid hard coding the pathnames of the
tix_ getimage, you can avoid hard coding the pathnames of the
image files in your application. When successful, this command
returns the name of the newly created image, which can be used to
configure the -image option of the Tk and Tix widgets.
Expand Down
2 changes: 1 addition & 1 deletion Lib/tkinter/ttk.py
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ def pane(self, pane, option=None, **kw):
pane is either an integer index or the name of a managed subwindow.
If kw is not given, returns a dict of the pane option values. If
option is specified then the value for that option is returned.
Otherwise, sets the options to the correspoding values."""
Otherwise, sets the options to the corresponding values."""
if option is not None:
kw[option] = None
return _val_or_dict(kw, self.tk.call, self._w, "pane", pane)
Expand Down
4 changes: 2 additions & 2 deletions Lib/turtle.py
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,7 @@ def bgpic(self, picname=None):
Optional argument:
picname -- a string, name of a gif-file or "nopic".
If picname is a filename, set the corresponing image as background.
If picname is a filename, set the corresponding image as background.
If picname is "nopic", delete backgroundimage, if present.
If picname is None, return the filename of the current backgroundimage.
Expand Down Expand Up @@ -3352,7 +3352,7 @@ def end_fill(self):
def dot(self, size=None, *color):
"""Draw a dot with diameter size, using color.
Optional argumentS:
Optional arguments:
size -- an integer >= 1 (if given)
color -- a colorstring or a numeric color tuple
Expand Down
2 changes: 1 addition & 1 deletion Lib/xml/dom/minidom.py
Original file line number Diff line number Diff line change
Expand Up @@ -1464,7 +1464,7 @@ def isEmpty(self):
return False

def isId(self, aname):
"""Returns true iff the named attribte is a DTD-style ID."""
"""Returns true iff the named attribute is a DTD-style ID."""
return False

def isIdNS(self, namespaceURI, localName):
Expand Down
2 changes: 1 addition & 1 deletion Mac/BuildScript/build-installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def getFullVersion():

ARCHLIST = universal_opts_map[UNIVERSALARCHS]

# Source directory (asume we're in Mac/BuildScript)
# Source directory (assume we're in Mac/BuildScript)
SRCDIR = os.path.dirname(
os.path.dirname(
os.path.dirname(
Expand Down
1 change: 1 addition & 0 deletions Misc/ACKS
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ Kurt B. Kaiser
Tamito Kajiyama
Peter van Kampen
Jacob Kaplan-Moss
Piotr Kasprzyk
Lou Kates
Hiroaki Kawai
Sebastien Keim
Expand Down
2 changes: 1 addition & 1 deletion Modules/_ctypes/callproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
So, there are 4 data structures holding processed arguments:
- the inargs tuple (in PyCFuncPtr_call)
- the callargs tuple (in PyCFuncPtr_call)
- the 'struct argguments' array
- the 'struct arguments' array
- the 'void *' array
*/
Expand Down
Loading

0 comments on commit 42da663

Please sign in to comment.