Kaydet (Commit) 95d632d4 authored tarafından Georg Brandl's avatar Georg Brandl

[ 1243081 ] repair typos

üst c0c8bb36
......@@ -1135,7 +1135,7 @@ It's a function
There are several built-in functions that are no longer essential to learn,
know or use in modern Python programming. They have been kept here to
maintain backwards compatability with programs written for older versions
maintain backwards compatibility with programs written for older versions
of Python.
Python programmers, trainers, students and bookwriters should feel free to
......
......@@ -169,7 +169,7 @@ an argument.
Also note, the module also includes a \method{union_update()} method
which is an alias for \method{update()}. The method is included for
backwards compatability. Programmers should prefer the
backwards compatibility. Programmers should prefer the
\method{update()} method because it the one supported by the builtin
\class{set()} and \class{frozenset()} types.
......
......@@ -124,7 +124,7 @@ PyAPI_FUNC(void) _PyObject_DebugMallocStats(void);
#else /* ! WITH_PYMALLOC */
#define PyObject_MALLOC PyMem_MALLOC
#define PyObject_REALLOC PyMem_REALLOC
/* This is an odd one! For backward compatability with old extensions, the
/* This is an odd one! For backward compatibility with old extensions, the
PyMem "release memory" functions have to invoke the object allocator's
free() function. When pymalloc isn't enabled, that leaves us using
the platform free(). */
......
......@@ -378,7 +378,7 @@ IDLEfork ChangeLog
2001-07-12 16:54 elguavas
* ReplaceDialog.py: py-cvs merge, python 1.5.2 compatability
* ReplaceDialog.py: py-cvs merge, python 1.5.2 compatibility
2001-07-12 16:46 elguavas
......
......@@ -430,7 +430,7 @@ def IsObjectSpecifier(x):
return isinstance(x, ObjectSpecifier)
# Backwards compatability, sigh...
# Backwards compatibility, sigh...
class Property(ObjectSpecifier):
def __init__(self, which, fr = None, want='prop'):
......
......@@ -13,7 +13,7 @@ import time
try:
openrf = MacOS.openrf
except AttributeError:
# Backward compatability
# Backward compatibility
openrf = open
Error = 'macostools.Error'
......
......@@ -759,7 +759,7 @@ Library
- The decimal package's Context.copy() method now returns deep copies.
- Deprecated sys.exitfunc in favor of the atexit module. The sys.exitfunc
attribute will be kept around for backwards compatability and atexit
attribute will be kept around for backwards compatibility and atexit
will just become the one preferred way to do it.
- patch #675551: Add get_history_item and replace_history_item functions
......
......@@ -36,7 +36,7 @@ ENCODER(cp932)
continue;
}
else if (c >= 0xf8f0 && c <= 0xf8f3) {
/* Windows compatability */
/* Windows compatibility */
REQUIRE_OUTBUF(1)
if (c == 0xf8f0)
OUT1(0xa0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment