#18803: fix more typos. Patch by Févry Thibault.

This commit is contained in:
Ezio Melotti 2013-08-26 01:32:56 +03:00
parent bf8ab77f94
commit 7c4a7e6f3c
17 changed files with 20 additions and 20 deletions

View file

@ -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.

View file

@ -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: