Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2dc77f0

Browse files
committed
Issue #28145: Spelling fixes
1 parent 525aedc commit 2dc77f0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/test/test_defaultdict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def _factory(self):
175175
def test_callable_arg(self):
176176
self.assertRaises(TypeError, defaultdict, {})
177177

178-
def test_pickleing(self):
178+
def test_pickling(self):
179179
d = defaultdict(int)
180180
d[1]
181181
for proto in range(pickle.HIGHEST_PROTOCOL + 1):

Misc/HISTORY

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23445,7 +23445,7 @@ uudecode bug where it complaints about trailing garbage is still there
2344523445
decimal numbers).
2344623446

2344723447
- In string.atof(), don't fail when the "re" module is unavailable.
23448-
Plug the ensueing security leak by supplying an empty __builtins__
23448+
Plug the ensuing security leak by supplying an empty __builtins__
2344923449
directory to eval().
2345023450

2345123451
- A bunch of small fixes and improvements to Tkinter.py.

Modules/makesetup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ esac
8282
NL='\
8383
'
8484

85-
# Setup to link with extra libraries when makeing shared extensions.
85+
# Setup to link with extra libraries when making shared extensions.
8686
# Currently, only Cygwin needs this baggage.
8787
case `uname -s` in
8888
CYGWIN*) if test $libdir = .

0 commit comments

Comments
 (0)