diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:32:56 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-08-25 22:32:56 (GMT) |
commit | 7c4a7e6f3cbd98ad547a3f1661582517612419e3 (patch) | |
tree | 401bde344fe15ab617c9be5c0e6fec7f4363d81f /Tools/freeze | |
parent | bf8ab77f940013e42f7b9af5b4fd2100238f389b (diff) | |
download | cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.zip cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.tar.gz cpython-7c4a7e6f3cbd98ad547a3f1661582517612419e3.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 a41542f..ee446e7 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 4cd1e96..ef18ec7 100644 --- a/Tools/freeze/makefreeze.py +++ b/Tools/freeze/makefreeze.py @@ -61,7 +61,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: |