- 28 Mar, 2002 13 commits
-
-
Neil Schemenauer authored
-
Skip Montanaro authored
-
Skip Montanaro authored
but at least the content is there.
-
Guido van Rossum authored
The fix makes it possible to call PyObject_GC_UnTrack() more than once on the same object, and then move the PyObject_GC_UnTrack() call to *before* the trashcan code is invoked. BUGFIX CANDIDATE!
-
Fred Drake authored
-
Guido van Rossum authored
SF bug 535905 (Evil Trashcan and GC interaction). The SETLOCAL() macro should not DECREF the local variable in-place and then store the new value; it should copy the old value to a temporary value, then store the new value, and then DECREF the temporary value. This is because it is possible that during the DECREF the frame is accessed by other code (e.g. a __del__ method or gc.collect()) and the variable would be pointing to already-freed memory. BUGFIX CANDIDATE!
-
Fred Drake authored
-
Martin v. Löwis authored
-
Fred Drake authored
-
Martin v. Löwis authored
2.2.2 candidate.
-
Fred Drake authored
-
Tim Peters authored
fast, and just cluttered the code. Get rid of it for now. If a compelling case can be made for it, easy to restore it later.
-
Fred Drake authored
descriptor, as used for the tp_methods slot of a type. These new flag bits are both optional, and mutually exclusive. Most methods will not use either. These flags are used to create special method types which exist in the same namespace as normal methods without having to use tedious construction code to insert the new special method objects in the type's tp_dict after PyType_Ready() has been called. If METH_CLASS is specified, the method will represent a class method like that returned by the classmethod() built-in. If METH_STATIC is specified, the method will represent a static method like that returned by the staticmethod() built-in. These flags may not be used in the PyMethodDef table for modules since these special method types are not meaningful in that case; a ValueError will be raised if these flags are found in that context.
-
- 27 Mar, 2002 13 commits
-
-
Fred Drake authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
2.2.2 candidate.
-
Skip Montanaro authored
extend sys.path using .pth files.
-
Martin v. Löwis authored
2.2.2 candidate.
-
Neil Schemenauer authored
management bug. Also, move some duplicated code into the new_weakref fucntion.
-
Skip Montanaro authored
closes bug 534495
-
Neal Norwitz authored
sys.exit() now requires 0-1 arguments. Previously 2+ arguments were allowed.
-
Martin v. Löwis authored
2.2.2 candiate.
-
Steven M. Gava authored
recent files menu
-
Andrew M. Kuchling authored
-
Steven M. Gava authored
user defined help items
-
Steven M. Gava authored
in PyShell.py that was causing extreme headaches in working on EditorWindow.py
-
- 26 Mar, 2002 14 commits
-
-
Fred Drake authored
-
Neil Schemenauer authored
-
Barry Warsaw authored
better local_hostname default. According to RFC 2821, it is recommended that the fqdn hostname be provided in the EHLO/HELO verb and if that can't be calculated, to use a domain literal. The rationale for this change is documented in SF patch #497736 which also had privacy concerns about leaking the fqdn in the EHLO/HELO. We decided this wasn't a big concern because no user data is leaked, and the IP will always be leaked. The local_hostname argument is provided for those clients that are super paranoid. Using localhost.localdomain may break some strict smtp servers so we decided against using it as the default.
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Fred Drake authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Just van Rossum authored
LDEF in Python). If at all possible, this should go into 2.2.1.
-