- 10 Tem, 2000 6 kayıt (commit)
-
-
Peter Schneider-Kamp yazdı
-
Sjoerd Mullender yazdı
an attribute value was not escaped, you could get two syntax errors: one about a missing semicolon and one about an unknown entity. Now you get only one about a bogus ampersand.
-
Vladimir Marangozov yazdı
conditionally in the code.
-
Vladimir Marangozov yazdı
(cf. the rest of the headers in the distribution)
-
Vladimir Marangozov yazdı
-
Fred Drake yazdı
-
- 09 Tem, 2000 34 kayıt (commit)
-
-
Fredrik Lundh yazdı
(write, read, ...), based on feedback from GvR. - added tuple-swapping code to popen2.py - fixed some runaway indentation in posixmodule.c
-
Fredrik Lundh yazdı
checked for the wrong exception. my fault. sorry. (first reported by Alex Coventry)
-
Barry Warsaw yazdı
variable. This crushes another memory leak. Slight rewrite included.
-
Barry Warsaw yazdı
font-locking. This complets the merge with Mailman's version.
-
Fredrik Lundh yazdı
(the PYTHONHOMEHELP define) - ANSI-fication (patch #100794 by Peter Schneider-Kamp)
-
Fredrik Lundh yazdı
(patch #100805 by Peter Schneider-Kamp)
-
Fred Drake yazdı
uses the BrowserControl module. BrowserControl is not removed to allow IDLE to be distributed separately and still be used with Python 1.5.2.
-
Fredrik Lundh yazdı
windows. - added optional mode argument to popen2/popen3 for unix; if the second argument is an integer, it's assumed to be the buffer size. - changed nt.popen2/popen3/popen4 return values to match the popen2 module (stdout first, not stdin).
-
Fredrik Lundh yazdı
for the moment, this argument must be left out or set to -1 (only the default bufsize is supported, that is)
-
Fredrik Lundh yazdı
function is overridden by a python version which accepts *either* a string (old behaviour) or a locale tuple. - renamed a few methods (for consistency): get_locale => getlocale get_default_locale => getdefaultlocale set_to_default => resetlocale (!) - the _locale implementation module can now implement an optional _getdefaultlocale function. if that function isn't available, a POSIX-based approach is used (checking LANG and other environment variables, as usual). (patch #100765)
-
Fred Drake yazdı
more information.
-
Fred Drake yazdı
mailbox.py: Convert to 4-space indents.
-
Greg Stein yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fredrik Lundh yazdı
(patch #100784 by Peter Schneider-Kamp)
-
Fredrik Lundh yazdı
(patch #100770 by Peter Schneider-Kamp)
-
Andrew M. Kuchling yazdı
Mention the ANSIfication of the source.
-
Fredrik Lundh yazdı
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 yazdı
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 yazdı
-
Andrew M. Kuchling yazdı
and substitute the conventional "args" instead of "arg".
-
Fred Drake yazdı
the standard for Python implementation.
-
Fredrik Lundh yazdı
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 yazdı
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 yazdı
this should be built as a console application (link with USER32.LIB), and installed in the same directory as the Python DLL.
-
Tim Peters yazdı
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 yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
-
Fred Drake yazdı
the standard for Python implementation.
-
Fred Drake yazdı
-
Barry Warsaw yazdı
`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)
-