diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:31:30 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:31:30 (GMT) |
commit | 6d0f0f299b014e79f6079901b560e938e0c5d8df (patch) | |
tree | e2f81371eca1a0d0782bb76dcbd5b883edc6b898 /Tools/freeze | |
parent | 290c6b3446f5a1ecd76e0213e4db388a37ee9e55 (diff) | |
download | cpython-6d0f0f299b014e79f6079901b560e938e0c5d8df.zip cpython-6d0f0f299b014e79f6079901b560e938e0c5d8df.tar.gz cpython-6d0f0f299b014e79f6079901b560e938e0c5d8df.tar.bz2 |
#18803: fix more typos. Patch by FĂ©vry Thibault.
Diffstat (limited to 'Tools/freeze')
-rw-r--r-- | Tools/freeze/checkextensions_win32.py | 4 | ||||
-rw-r--r-- | Tools/freeze/makefreeze.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py index e5a8b29..8c6444c 100644 --- a/Tools/freeze/checkextensions_win32.py +++ b/Tools/freeze/checkextensions_win32.py @@ -3,7 +3,7 @@ Under Windows it is unlikely the .obj files are of use, as special compiler options are needed (primarily to toggle the behavior of "public" symbols. -I dont consider it worth parsing the MSVC makefiles for compiler options. Even if +I don't consider it worth parsing the MSVC makefiles for compiler options. Even if we get it just right, a specific freeze application may have specific compiler options anyway (eg, to enable or disable specific functionality) @@ -14,7 +14,7 @@ So my basic strategy is: your own). * This description can include: - The MSVC .dsp file for the extension. The .c source file names - are extraced from there. + are extracted from there. - Specific compiler/linker options - Flag to indicate if Unicode compilation is expected. diff --git a/Tools/freeze/makefreeze.py b/Tools/freeze/makefreeze.py index 1208b67..c0f5056 100644 --- a/Tools/freeze/makefreeze.py +++ b/Tools/freeze/makefreeze.py @@ -62,7 +62,7 @@ def makefreeze(base, dict, debug=0, entry_point=None, fail_import=()): outfp.write('\t{"%s", M_%s, %d},\n' % (mod, mangled, size)) outfp.write('\n') # The following modules have a NULL code pointer, indicating - # that the prozen program should not search for them on the host + # that the frozen program should not search for them on the host # system. Importing them will *always* raise an ImportError. # The zero value size is never used. for mod in fail_import: |