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

Skip to content

Commit d65ec37

Browse files
committed
Fix spelling.
1 parent 5c49ef2 commit d65ec37

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

Misc/NEWS

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Extension modules
247247
- Fix a crash on Solaris that occurred when calling close() on
248248
an mmap'ed file which was already closed. (SF patch #665913)
249249

250-
- Fixed serveral serious bugs in the zipimport implementation.
250+
- Fixed several serious bugs in the zipimport implementation.
251251

252252
- datetime changes:
253253

@@ -621,7 +621,7 @@ Core and builtins
621621
compatible with those that have been implemented in Jython since
622622
Jython 2.1.
623623

624-
- PEP 302 has been accepted. Although it was inititally developed to
624+
- PEP 302 has been accepted. Although it was initially developed to
625625
support zipimport, it offers a new, general import hook mechanism.
626626
Several new variables have been added to the sys module:
627627
sys.meta_path, sys.path_hooks, and sys.path_importer_cache; these
@@ -1023,9 +1023,9 @@ Library
10231023
- os.path exposes getctime.
10241024

10251025
- unittest.py now has two additional methods called assertAlmostEqual()
1026-
and failIfAlmostEqual(). They implement an approximate comparision
1026+
and failIfAlmostEqual(). They implement an approximate comparison
10271027
by rounding the difference between the two arguments and comparing
1028-
the result to zero. Approximate comparision is essential for
1028+
the result to zero. Approximate comparison is essential for
10291029
unit tests of floating point results.
10301030

10311031
- calendar.py now depends on the new datetime module rather than
@@ -1041,7 +1041,7 @@ Library
10411041
- doctest.testmod can now be called without argument, which means to
10421042
test the current module.
10431043

1044-
- When cancelling a server that implemented threading with a keyboard
1044+
- When canceling a server that implemented threading with a keyboard
10451045
interrupt, the server would shut down but not terminate (waiting on
10461046
client threads). A new member variable, daemon_threads, was added to
10471047
the ThreadingMixIn class in SocketServer.py to make it explicit that
@@ -1402,7 +1402,7 @@ C API
14021402
the ob_sval member, so as a precaution the API_VERSION has been
14031403
incremented. The apparently unused feature of "indirect interned
14041404
strings", supported by the ob_sinterned member, is gone. Interned
1405-
strings are now usually mortal; theres a new API,
1405+
strings are now usually mortal; there is a new API,
14061406
PyString_InternImmortal() that creates immortal interned strings.
14071407
(The ob_sstate member can only take three values; however, while
14081408
making it a char saves a few bytes per string object on average, in
@@ -1494,7 +1494,7 @@ Windows
14941494
improvement over the previous Berkeley DB 1.85, which had many
14951495
bugs.
14961496
XXX What are the licensing issues here?
1497-
XXX If a user has a database created with a previous verion of
1497+
XXX If a user has a database created with a previous version of
14981498
XXX Python, what must they do to convert it?
14991499
XXX I'm still not sure how to link this thing (see PCbuild/readme.txt).
15001500
XXX The version # is likely to change before 2.3a1.
@@ -1507,7 +1507,7 @@ Windows
15071507

15081508
- When Python is built under a Microsoft compiler, sys.version now
15091509
includes the compiler version number (_MSC_VER). For example, under
1510-
MSVC 6, sys.version constains the substring "MSC v.1200 ". 1200 is
1510+
MSVC 6, sys.version contains the substring "MSC v.1200 ". 1200 is
15111511
the value of _MSC_VER under MSVC 6.
15121512

15131513
- Sometimes the uninstall executable (UNWISE.EXE) vanishes. One cause
@@ -1612,7 +1612,7 @@ Mac
16121612
There are hooks in the IDE to allow accessing the Python documentation
16131613
(and Apple's Carbon and Cocoa documentation) through the Help Viewer.
16141614
See Mac/OSX/README for converting the Python documentation to a
1615-
Help Viewer comaptible form and installing it.
1615+
Help Viewer compatible form and installing it.
16161616

16171617
- OSA support has been redesigned and the generated Python classes now
16181618
mirror the inheritance defined by the underlying OSA classes.
@@ -2175,7 +2175,7 @@ Library
21752175
Calibration must still be done manually (see the docs for the profile
21762176
module).
21772177

2178-
Note that Profile.calibrate() must be overriden by subclasses.
2178+
Note that Profile.calibrate() must be overridden by subclasses.
21792179
Improving the accuracy required exploiting detailed knowledge of
21802180
profiler internals; the earlier method abstracted away the details
21812181
and measured a simplified model instead, but consequently computed

0 commit comments

Comments
 (0)