- 09 Jul, 2000 30 commits
-
-
Fred Drake authored
-
Fred Drake authored
-
Fredrik Lundh authored
(patch #100784 by Peter Schneider-Kamp)
-
Fredrik Lundh authored
(patch #100770 by Peter Schneider-Kamp)
-
Andrew M. Kuchling authored
Mention the ANSIfication of the source.
-
Fredrik Lundh authored
by Bill Tutt. note: to run this on Windows 95/98, you need to have the w9xpopen.exe helper in the same directory as the python DLL.
-
Fred Drake authored
The actual test for it is only commented out in configure.in, so it can be re-enabled if we ever run across the need for it again.
-
Fred Drake authored
-
Andrew M. Kuchling authored
and substitute the conventional "args" instead of "arg".
-
Fred Drake authored
the standard for Python implementation.
-
Fredrik Lundh authored
just for the sake of it. note that this only covers the unlikely case that size_t is smaller than a long; it's probably more likely that there are platforms out there where size_t is *larger* than a long, and mmapmodule cannot really deal with that today.
-
Fredrik Lundh authored
cast to make sure Py_BuildValue gets the right thing. this change eliminates bogus return codes from successful spawn calls (e.g. 2167387144924954624 instead of 0).
-
Fredrik Lundh authored
this should be built as a console application (link with USER32.LIB), and installed in the same directory as the Python DLL.
-
Tim Peters authored
was cascades of warnings about mismatching const decls. Overall, I think const creates lots of headaches and solves almost nothing. Added enough consts to shut up the warnings, but this did require casting away const in one spot too (another usual outcome of starting down this path): the function mymemreplace can't return const char*, but sometimes wants to return its first argument as-is, which latter must be declared const char* in order to avoid const warnings at mymemreplace's call sites. So, in the case the function wants to return the first arg, that arg's declared constness must be subverted.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
the standard for Python implementation.
-
Fred Drake authored
-
Barry Warsaw authored
`break's. This first missing break caused a memory leak when case 3 fell through case 2 in the following example: import os os.chmod('/missing', 0600)
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
Make the indentation and brace placement internally consistent.
-
Fred Drake authored
-
Fred Drake authored
-
Tim Peters authored
-
Tim Peters authored
legit warnings).
-
Fred Drake authored
-
Fred Drake authored
-
- 08 Jul, 2000 10 commits
-
-
Fred Drake authored
-
Fredrik Lundh authored
staring at the diffs before checking this one in. let me know asap if it breaks things on your platform. -- ANSI-fying (patch #100763 by Peter Schneider-Kamp, minus the indentation changes and minus the changes the broke the windows build)
-
Fredrik Lundh authored
(patch #100762 by Peter Schneider-Kamp, minus the indentation changes) -- added INT_PTR workaround to make it build under VC 5.0
-
Fredrik Lundh authored
bill's more complete solution.
-
Fredrik Lundh authored
- some more spacification...
-
Fredrik Lundh authored
- ansified, reindentified, spacified, nullified
-
Fredrik Lundh authored
Barry Scott). it appears to solve the problem on NT and 2000, but not on Windows 95. in other words, it's better than before, but not per- fect. I'll leave the patch open for now.
-
Fredrik Lundh authored
strings, instead of the default encoding. (see "minidom" thread for discussion, and also patch #100706)
-
Fred Drake authored
-
Fred Drake authored
-