Skip to content

Commit 25ecfd0

Browse files
committed
Issue #27626: Spelling fixes in docs, comments and internal names
Based on patch by Ville Skyttä.
1 parent 7e394ca commit 25ecfd0

33 files changed

+48
-48
lines changed

Doc/howto/clinic.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1583,7 +1583,7 @@ called ``preserve``::
15831583

15841584
preserve
15851585

1586-
This tells Clinic that the current contents of the output should be kept, unmodifed.
1586+
This tells Clinic that the current contents of the output should be kept, unmodified.
15871587
This is used internally by Clinic when dumping output into ``file`` files; wrapping
15881588
it in a Clinic block lets Clinic use its existing checksum functionality to ensure
15891589
the file was not modified by hand before it gets overwritten.

Doc/howto/sockets.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ mainloop of the web server::
106106
There's actually 3 general ways in which this loop could work - dispatching a
107107
thread to handle ``clientsocket``, create a new process to handle
108108
``clientsocket``, or restructure this app to use non-blocking sockets, and
109-
mulitplex between our "server" socket and any active ``clientsocket``\ s using
109+
multiplex between our "server" socket and any active ``clientsocket``\ s using
110110
``select``. More about that later. The important thing to understand now is
111111
this: this is *all* a "server" socket does. It doesn't send any data. It doesn't
112112
receive any data. It just produces "client" sockets. Each ``clientsocket`` is

Doc/library/configparser.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The structure of INI files is described `in the following section
6666
<#supported-ini-file-structure>`_. Essentially, the file
6767
consists of sections, each of which contains keys with values.
6868
:mod:`configparser` classes can read and write such files. Let's start by
69-
creating the above configuration file programatically.
69+
creating the above configuration file programmatically.
7070

7171
.. doctest::
7272

Doc/library/importlib.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ ABC hierarchy::
629629
.. method:: path_stats(path)
630630

631631
Optional abstract method which returns a :class:`dict` containing
632-
metadata about the specifed path. Supported dictionary keys are:
632+
metadata about the specified path. Supported dictionary keys are:
633633

634634
- ``'mtime'`` (mandatory): an integer or floating-point number
635635
representing the modification time of the source code;

Doc/library/os.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1900,7 +1900,7 @@ features:
19001900
On Unix, *path* can be of type :class:`str` or :class:`bytes` (use
19011901
:func:`~os.fsencode` and :func:`~os.fsdecode` to encode and decode
19021902
:class:`bytes` paths). On Windows, *path* must be of type :class:`str`.
1903-
On both sytems, the type of the :attr:`~DirEntry.name` and
1903+
On both systems, the type of the :attr:`~DirEntry.name` and
19041904
:attr:`~DirEntry.path` attributes of each :class:`DirEntry` will be of
19051905
the same type as *path*.
19061906

Doc/library/socket.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@ to sockets.
12111211
much data, if any, was successfully sent.
12121212

12131213
.. versionchanged:: 3.5
1214-
The socket timeout is no more reset each time data is sent successfuly.
1214+
The socket timeout is no more reset each time data is sent successfully.
12151215
The socket timeout is now the maximum total duration to send all data.
12161216

12171217
.. versionchanged:: 3.5

Include/longobject.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ PyAPI_FUNC(PyObject *) _PyLong_FromByteArray(
159159
example, if is_signed is 0 and there are more digits in the v than
160160
fit in n; or if is_signed is 1, v < 0, and n is just 1 bit shy of
161161
being large enough to hold a sign bit. OverflowError is set in this
162-
case, but bytes holds the least-signficant n bytes of the true value.
162+
case, but bytes holds the least-significant n bytes of the true value.
163163
*/
164164
PyAPI_FUNC(int) _PyLong_AsByteArray(PyLongObject* v,
165165
unsigned char* bytes, size_t n,

Lib/ctypes/test/test_numbers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_bool_values(self):
7676
self.assertEqual(t(v).value, truth(v))
7777

7878
def test_typeerror(self):
79-
# Only numbers are allowed in the contructor,
79+
# Only numbers are allowed in the constructor,
8080
# otherwise TypeError is raised
8181
for t in signed_types + unsigned_types + float_types:
8282
self.assertRaises(TypeError, t, "")

Lib/ctypes/test/test_structures.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class XX(Structure):
106106
self.assertEqual(alignment(XX), alignment(X))
107107
self.assertEqual(sizeof(XX), calcsize("3s 3s 0s"))
108108

109-
def test_emtpy(self):
109+
def test_empty(self):
110110
# I had problems with these
111111
#
112112
# Although these are pathological cases: Empty Structures!

Lib/datetime.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ def today(cls):
706706

707707
@classmethod
708708
def fromordinal(cls, n):
709-
"""Contruct a date from a proleptic Gregorian ordinal.
709+
"""Construct a date from a proleptic Gregorian ordinal.
710710
711711
January 1 of year 1 is day 1. Only the year, month and day are
712712
non-zero in the result.

Lib/idlelib/CallTipWindow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
HIDE_SEQUENCES = ("<Key-Escape>", "<FocusOut>")
1010
CHECKHIDE_VIRTUAL_EVENT_NAME = "<<calltipwindow-checkhide>>"
1111
CHECKHIDE_SEQUENCES = ("<KeyRelease>", "<ButtonRelease>")
12-
CHECKHIDE_TIME = 100 # miliseconds
12+
CHECKHIDE_TIME = 100 # milliseconds
1313

1414
MARK_RIGHT = "calltipwindowregion_right"
1515

Lib/idlelib/ParenMatch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from idlelib.configHandler import idleConf
1010

1111
_openers = {')':'(',']':'[','}':'{'}
12-
CHECK_DELAY = 100 # miliseconds
12+
CHECK_DELAY = 100 # milliseconds
1313

1414
class ParenMatch:
1515
"""Highlight matching parentheses

Lib/platform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# though
6262
# 0.5.2 - fixed uname() to return '' instead of 'unknown' in all
6363
# return values (the system uname command tends to return
64-
# 'unknown' instead of just leaving the field emtpy)
64+
# 'unknown' instead of just leaving the field empty)
6565
# 0.5.1 - included code for slackware dist; added exception handlers
6666
# to cover up situations where platforms don't have os.popen
6767
# (e.g. Mac) or fail on socket.gethostname(); fixed libc

Lib/shutil.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ def register_unpack_format(name, extensions, function, extra_args=None,
853853
_UNPACK_FORMATS[name] = extensions, function, extra_args, description
854854

855855
def unregister_unpack_format(name):
856-
"""Removes the pack format from the registery."""
856+
"""Removes the pack format from the registry."""
857857
del _UNPACK_FORMATS[name]
858858

859859
def _ensure_directory(path):

Lib/test/eintrdata/eintr_tester.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ def test_sigtimedwait(self):
372372
@unittest.skipUnless(hasattr(signal, 'sigwaitinfo'),
373373
'need signal.sigwaitinfo()')
374374
def test_sigwaitinfo(self):
375-
# Issue #25277, #25868: give a few miliseconds to the parent process
375+
# Issue #25277, #25868: give a few milliseconds to the parent process
376376
# between os.write() and signal.sigwaitinfo() to works around a race
377377
# condition
378378
self.sleep_time = 0.100

Lib/test/test_collections.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def test_basics(self):
114114
self.assertEqual(f['b'], 5) # find first in chain
115115
self.assertEqual(f.parents['b'], 2) # look beyond maps[0]
116116

117-
def test_contructor(self):
117+
def test_constructor(self):
118118
self.assertEqual(ChainMap().maps, [{}]) # no-args --> one new dict
119119
self.assertEqual(ChainMap({1:2}).maps, [{1:2}]) # 1 arg --> list
120120

Lib/test/test_deque.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ def test_clear(self):
494494
d.clear()
495495
self.assertEqual(len(d), 0)
496496
self.assertEqual(list(d), [])
497-
d.clear() # clear an emtpy deque
497+
d.clear() # clear an empty deque
498498
self.assertEqual(list(d), [])
499499

500500
def test_remove(self):

Lib/test/test_enum.py

+10-10
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ def test_reversed_iteration_order(self):
654654
self.Season.SPRING]
655655
)
656656

657-
def test_programatic_function_string(self):
657+
def test_programmatic_function_string(self):
658658
SummerMonth = Enum('SummerMonth', 'june july august')
659659
lst = list(SummerMonth)
660660
self.assertEqual(len(lst), len(SummerMonth))
@@ -671,7 +671,7 @@ def test_programatic_function_string(self):
671671
self.assertIn(e, SummerMonth)
672672
self.assertIs(type(e), SummerMonth)
673673

674-
def test_programatic_function_string_with_start(self):
674+
def test_programmatic_function_string_with_start(self):
675675
SummerMonth = Enum('SummerMonth', 'june july august', start=10)
676676
lst = list(SummerMonth)
677677
self.assertEqual(len(lst), len(SummerMonth))
@@ -688,7 +688,7 @@ def test_programatic_function_string_with_start(self):
688688
self.assertIn(e, SummerMonth)
689689
self.assertIs(type(e), SummerMonth)
690690

691-
def test_programatic_function_string_list(self):
691+
def test_programmatic_function_string_list(self):
692692
SummerMonth = Enum('SummerMonth', ['june', 'july', 'august'])
693693
lst = list(SummerMonth)
694694
self.assertEqual(len(lst), len(SummerMonth))
@@ -705,7 +705,7 @@ def test_programatic_function_string_list(self):
705705
self.assertIn(e, SummerMonth)
706706
self.assertIs(type(e), SummerMonth)
707707

708-
def test_programatic_function_string_list_with_start(self):
708+
def test_programmatic_function_string_list_with_start(self):
709709
SummerMonth = Enum('SummerMonth', ['june', 'july', 'august'], start=20)
710710
lst = list(SummerMonth)
711711
self.assertEqual(len(lst), len(SummerMonth))
@@ -722,7 +722,7 @@ def test_programatic_function_string_list_with_start(self):
722722
self.assertIn(e, SummerMonth)
723723
self.assertIs(type(e), SummerMonth)
724724

725-
def test_programatic_function_iterable(self):
725+
def test_programmatic_function_iterable(self):
726726
SummerMonth = Enum(
727727
'SummerMonth',
728728
(('june', 1), ('july', 2), ('august', 3))
@@ -742,7 +742,7 @@ def test_programatic_function_iterable(self):
742742
self.assertIn(e, SummerMonth)
743743
self.assertIs(type(e), SummerMonth)
744744

745-
def test_programatic_function_from_dict(self):
745+
def test_programmatic_function_from_dict(self):
746746
SummerMonth = Enum(
747747
'SummerMonth',
748748
OrderedDict((('june', 1), ('july', 2), ('august', 3)))
@@ -762,7 +762,7 @@ def test_programatic_function_from_dict(self):
762762
self.assertIn(e, SummerMonth)
763763
self.assertIs(type(e), SummerMonth)
764764

765-
def test_programatic_function_type(self):
765+
def test_programmatic_function_type(self):
766766
SummerMonth = Enum('SummerMonth', 'june july august', type=int)
767767
lst = list(SummerMonth)
768768
self.assertEqual(len(lst), len(SummerMonth))
@@ -778,7 +778,7 @@ def test_programatic_function_type(self):
778778
self.assertIn(e, SummerMonth)
779779
self.assertIs(type(e), SummerMonth)
780780

781-
def test_programatic_function_type_with_start(self):
781+
def test_programmatic_function_type_with_start(self):
782782
SummerMonth = Enum('SummerMonth', 'june july august', type=int, start=30)
783783
lst = list(SummerMonth)
784784
self.assertEqual(len(lst), len(SummerMonth))
@@ -794,7 +794,7 @@ def test_programatic_function_type_with_start(self):
794794
self.assertIn(e, SummerMonth)
795795
self.assertIs(type(e), SummerMonth)
796796

797-
def test_programatic_function_type_from_subclass(self):
797+
def test_programmatic_function_type_from_subclass(self):
798798
SummerMonth = IntEnum('SummerMonth', 'june july august')
799799
lst = list(SummerMonth)
800800
self.assertEqual(len(lst), len(SummerMonth))
@@ -810,7 +810,7 @@ def test_programatic_function_type_from_subclass(self):
810810
self.assertIn(e, SummerMonth)
811811
self.assertIs(type(e), SummerMonth)
812812

813-
def test_programatic_function_type_from_subclass_with_start(self):
813+
def test_programmatic_function_type_from_subclass_with_start(self):
814814
SummerMonth = IntEnum('SummerMonth', 'june july august', start=40)
815815
lst = list(SummerMonth)
816816
self.assertEqual(len(lst), len(SummerMonth))

Lib/test/test_http_cookiejar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ class CookieTests(unittest.TestCase):
396396
## comma-separated list, it'll be a headache to parse (at least my head
397397
## starts hurting every time I think of that code).
398398
## - Expires: You'll get all sorts of date formats in the expires,
399-
## including emtpy expires attributes ("expires="). Be as flexible as you
399+
## including empty expires attributes ("expires="). Be as flexible as you
400400
## can, and certainly don't expect the weekday to be there; if you can't
401401
## parse it, just ignore it and pretend it's a session cookie.
402402
## - Domain-matching: Netscape uses the 2-dot rule for _all_ domains, not

Lib/test/test_math.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1254,8 +1254,8 @@ def test_zero_tolerance(self):
12541254
(1.0e200, .999999999999999e200)]
12551255
self.assertAllNotClose(zero_tolerance_not_close_examples, rel_tol=0.0)
12561256

1257-
def test_assymetry(self):
1258-
# test the assymetry example from PEP 485
1257+
def test_asymmetry(self):
1258+
# test the asymmetry example from PEP 485
12591259
self.assertAllClose([(9, 10), (10, 9)], rel_tol=0.1)
12601260

12611261
def test_integers(self):

Lib/test/test_nntplib.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1465,14 +1465,14 @@ class Handler(NNTPv1Handler):
14651465
def test_service_temporarily_unavailable(self):
14661466
#Test service temporarily unavailable
14671467
class Handler(NNTPv1Handler):
1468-
welcome = '400 Service temporarily unavilable'
1468+
welcome = '400 Service temporarily unavailable'
14691469
self.check_constructor_error_conditions(
14701470
Handler, nntplib.NNTPTemporaryError, Handler.welcome)
14711471

14721472
def test_service_permanently_unavailable(self):
14731473
#Test service permanently unavailable
14741474
class Handler(NNTPv1Handler):
1475-
welcome = '502 Service permanently unavilable'
1475+
welcome = '502 Service permanently unavailable'
14761476
self.check_constructor_error_conditions(
14771477
Handler, nntplib.NNTPPermanentError, Handler.welcome)
14781478

Lib/test/test_shutil.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1257,7 +1257,7 @@ def test_unpack_archive(self):
12571257
self.assertRaises(shutil.ReadError, unpack_archive, TESTFN)
12581258
self.assertRaises(ValueError, unpack_archive, TESTFN, format='xxx')
12591259

1260-
def test_unpack_registery(self):
1260+
def test_unpack_registry(self):
12611261

12621262
formats = get_unpack_formats()
12631263

Lib/test/test_structseq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def test_eviltuple(self):
9797
class Exc(Exception):
9898
pass
9999

100-
# Devious code could crash structseqs' contructors
100+
# Devious code could crash structseqs' constructors
101101
class C:
102102
def __getitem__(self, i):
103103
raise Exc

Lib/test/test_subprocess.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1354,7 +1354,7 @@ def _get_chdir_exception(self):
13541354
desired_exception = e
13551355
desired_exception.strerror += ': ' + repr(self._nonexistent_dir)
13561356
else:
1357-
self.fail("chdir to nonexistant directory %s succeeded." %
1357+
self.fail("chdir to nonexistent directory %s succeeded." %
13581358
self._nonexistent_dir)
13591359
return desired_exception
13601360

Lib/unittest/case.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ def assertAlmostEqual(self, first, second, places=None, msg=None,
836836
between the two objects is more than the given delta.
837837
838838
Note that decimal places (from zero) are usually not the same
839-
as significant digits (measured from the most signficant digit).
839+
as significant digits (measured from the most significant digit).
840840
841841
If the two objects compare equal then they will automatically
842842
compare almost equal.
@@ -875,7 +875,7 @@ def assertNotAlmostEqual(self, first, second, places=None, msg=None,
875875
between the two objects is less than the given delta.
876876
877877
Note that decimal places (from zero) are usually not the same
878-
as significant digits (measured from the most signficant digit).
878+
as significant digits (measured from the most significant digit).
879879
880880
Objects that are equal automatically fail.
881881
"""

Misc/NEWS

+1-1
Original file line numberDiff line numberDiff line change
@@ -2210,7 +2210,7 @@ Library
22102210
the FTP connection failed to fix a ResourceWarning.
22112211

22122212
- Issue #23853: :meth:`socket.socket.sendall` does no more reset the socket
2213-
timeout each time data is sent successfuly. The socket timeout is now the
2213+
timeout each time data is sent successfully. The socket timeout is now the
22142214
maximum total duration to send all data.
22152215

22162216
- Issue #22721: An order of multiline pprint output of set or dict containing

Modules/_ctypes/_ctypes.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ _ctypes_alloc_format_string_with_shape(int ndim, const Py_ssize_t *shape,
332332

333333
/*
334334
PyCStructType_Type - a meta type/class. Creating a new class using this one as
335-
__metaclass__ will call the contructor StructUnionType_new. It replaces the
335+
__metaclass__ will call the constructor StructUnionType_new. It replaces the
336336
tp_dict member with a new instance of StgDict, and initializes the C
337337
accessible fields somehow.
338338
*/

Modules/itertoolsmodule.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1911,7 +1911,7 @@ iterable, until all of the iterables are exhausted.");
19111911
PyDoc_STRVAR(chain_from_iterable_doc,
19121912
"chain.from_iterable(iterable) --> chain object\n\
19131913
\n\
1914-
Alternate chain() contructor taking a single iterable argument\n\
1914+
Alternate chain() constructor taking a single iterable argument\n\
19151915
that evaluates lazily.");
19161916

19171917
static PyMethodDef chain_methods[] = {

Objects/exceptions.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1855,7 +1855,7 @@ UnicodeEncodeError_str(PyObject *self)
18551855
return PyUnicode_FromString("");
18561856

18571857
/* Get reason and encoding as strings, which they might not be if
1858-
they've been modified after we were contructed. */
1858+
they've been modified after we were constructed. */
18591859
reason_str = PyObject_Str(uself->reason);
18601860
if (reason_str == NULL)
18611861
goto done;
@@ -1980,7 +1980,7 @@ UnicodeDecodeError_str(PyObject *self)
19801980
return PyUnicode_FromString("");
19811981

19821982
/* Get reason and encoding as strings, which they might not be if
1983-
they've been modified after we were contructed. */
1983+
they've been modified after we were constructed. */
19841984
reason_str = PyObject_Str(uself->reason);
19851985
if (reason_str == NULL)
19861986
goto done;
@@ -2078,7 +2078,7 @@ UnicodeTranslateError_str(PyObject *self)
20782078
return PyUnicode_FromString("");
20792079

20802080
/* Get reason as a string, which it might not be if it's been
2081-
modified after we were contructed. */
2081+
modified after we were constructed. */
20822082
reason_str = PyObject_Str(uself->reason);
20832083
if (reason_str == NULL)
20842084
goto done;

Objects/longobject.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -775,10 +775,10 @@ _PyLong_FromByteArray(const unsigned char* bytes, size_t n,
775775
size_t i;
776776
const unsigned char* p = pendbyte;
777777
const int pincr = -incr; /* search MSB to LSB */
778-
const unsigned char insignficant = is_signed ? 0xff : 0x00;
778+
const unsigned char insignificant = is_signed ? 0xff : 0x00;
779779

780780
for (i = 0; i < n; ++i, p += pincr) {
781-
if (*p != insignficant)
781+
if (*p != insignificant)
782782
break;
783783
}
784784
numsignificantbytes = n - i;

0 commit comments

Comments
 (0)