- 20 Mar, 2001 14 kayıt (commit)
-
-
Jack Jansen yazdı
-
Fred Drake yazdı
and note that it fails when the TZ environment variable is not set. This closes SF bug #409683.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Guido van Rossum yazdı
This patch was developed primarily to reduce the size of the frozen binary. It is particularly useful when freezing for 'small' platforms, such as Palm OS, where you really want to save that last miserable byte. A limitation of this patch is that it does not provide any feedback about the replacements being made. As the path matching is case-sensitive this may lead to unexpected behaviour for DOS and Windows people, eg > freeze.py -r C:\Python\Lib\=py\ goats.py should probably be: > freeze.py -r c:\python\lib\=py\ goats.py
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Importing it typically fails anyway (no TZ variable defined), so this is no great loss.
-
Andrew M. Kuchling yazdı
to check for them (instead of calling them and then ignoring an IOError)
-
Moshe Zadka yazdı
* Not sending content-type and content-length twice
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
hashable This patch changes the behavior of slice objects in the following manner: - Slice objects are now comparable with other slice objects as though they were logically tuples of (start,stop,step). The tuple is not created in the comparison function, but the comparison behavior is logically equivalent. - Slice objects are not hashable. With the above change to being comparable, slice objects now cannot be used as keys in dictionaries. [I've edited the patch for style. Note that this fixes the problem that dict[i:j] seemed to work but was meaningless. --GvR]
-
Jeremy Hylton yazdı
has a binding for the name. The fix is in two places: - in symtable_update_free_vars, ignore a global stmt in a class scope - in symtable_load_symbols, add extra handling for names that are defined at class scope and free in a method Closes SF bug 407800
-
- 19 Mar, 2001 5 kayıt (commit)
-
-
Jeremy Hylton yazdı
of another list comp. This caused crashes reported as SF bugs 409230 and 407800. Note that the new tests are in a function so that the name lookup code isn't affected by how many *other* list comprehensions are in the same scope.
-
Jeremy Hylton yazdı
SF bugs 409230 and 407800 Also remove bogus list comp code from symtable_assign().
-
Tim Peters yazdı
on the current machine. Wise doesn't seem to know this itself, and it varies across Windows flavors.
-
Guido van Rossum yazdı
(Excluding the logging stuff, which doesn't lend itself to use via "from cgi import *" -- it manipulates globals.)
-
Fred Drake yazdı
-
- 18 Mar, 2001 7 kayıt (commit)
-
-
Tim Peters yazdı
-
Skip Montanaro yazdı
closes bug #406642
-
Moshe Zadka yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
from the last failure report.
-
Eric S. Raymond yazdı
the re package rather than the obsolete regex.
-
Tim Peters yazdı
http://sourceforge.net/tracker/?func=detail&aid=409448&group_id=5470&atid=105470 Now less braindead. Also added test_complex.py, which doesn't test much, but fails without this patch.
-
- 17 Mar, 2001 4 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
specified on the command-line or in setup.cfg. The option processing leaves them as strings, but they're supposed to be lists.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
/usr/local first and leaving /usr/include at the end. This addresses the comments in bug #232609.
-
Tim Peters yazdı
http://sourceforge.net/tracker/?func=detail&aid=233200&group_id=5470&atid=105470 Wrapped the fread/fwrite calls in thread BEGIN_ALLOW/END_ALLOW brackets Afraid I hit the "delete trailing whitespace key" too! Only two "real" sections of code changed here.
-
- 16 Mar, 2001 7 kayıt (commit)
-
-
Thomas Heller yazdı
before this get forgotten again. Should probably be set to 1.0.2 before final release of python 2.1 Does someone still release distutils separate from python?
-
Thomas Heller yazdı
has been changed to include an uninstaller. I forgot to mention in the uninstaller checkin that the logfile name (used for uninstalling) has been changed from <module>.log to <module>-wininst.log. This should prevent conflicts with a distutils logfile serving the same purpose. The short form of the --bdist-dir (-d) option has been removed because it caused conflicts with the short form of the --dist-dir option.
-
Fred Drake yazdı
-
Fred Drake yazdı
for backward compatibility. Add support for SGML declaration syntax (<!....>) to some reasonable degree. This does not support everything allowed in SGML, but should work with "real" HTML (internal subset in a DOCTYPE is not handled). The content of the declaration is passed to the .handle_decl() method, which can be overridden by subclasses.
-
Fred Drake yazdı
different enough to actually require an explanation. ;-) Fix a couple of PyDictObject* types that should be PyObject* types.
-
Neil Schemenauer yazdı
Cygwin Python to startup correctly when in ntsec mode. Cygwin operating in this mode is probably not the only system with this requirement.
-
Tim Peters yazdı
-
- 15 Mar, 2001 3 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Added kLocalDomain and friends.
-
Jack Jansen yazdı
-