- 30 Agu, 2001 37 kayıt (commit)
-
-
Tim Peters yazdı
Consequences for Jython still unknown (but raised on Jython-Dev).
-
Guido van Rossum yazdı
object at %p>".
-
Jeremy Hylton yazdı
Fix list comp code generation -- emit GET_ITER instead of Const(0) after the list. Add CO_GENERATOR flag to generators. Get CO_xxx flags from the new module
-
Tim Peters yazdı
-
Guido van Rossum yazdı
tuples).
-
Guido van Rossum yazdı
__dict__ slot for string subtypes. subtype_dealloc(): properly use _PyObject_GetDictPtr() to get the (potentially negative) dict offset. Don't copy things into local variables that are used only once. type_new(): properly calculate a negative dict offset when tp_itemsize is nonzero. The __dict__ attribute, if present, is now a calculated attribute rather than a structure member.
-
Fred Drake yazdı
based on a suggestion from Tim Peters; also make sure that we're really doing exponentiation and not multiplication.
-
Fred Drake yazdı
bug from compile.c. (SF bug #456756.)
-
Fred Drake yazdı
affect nodes without another operator. This was causing negated exponentiations to drop the exponentiation. This closes SF bug #456756.
-
Guido van Rossum yazdı
tupledealloc(): only feed the free list when the type is really a tuple, not a subtype. Otherwise, use PyObject_GC_Del(). _PyTuple_Resize(): disallow using this for tuple subtypes.
-
Guido van Rossum yazdı
PyInt_Check() succeeds. That returns true for subtypes of int, which may override __add__ or __sub__.
-
Guido van Rossum yazdı
long_subtype_new(): fix a typo (type->ob_size instead of tmp->ob_size).
-
Jeremy Hylton yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Guido van Rossum yazdı
default_getpass(). This should prevent hanging when it is called in IDLE. Fixes SF bug #455648.
-
Michael W. Hudson yazdı
restricted execution mode.
-
Fred Drake yazdı
Algorithm. This closes SF bug #454917.
-
Sjoerd Mullender yazdı
-
Sjoerd Mullender yazdı
-
Sjoerd Mullender yazdı
-
Sjoerd Mullender yazdı
-
Sjoerd Mullender yazdı
-
Jack Jansen yazdı
-
Tim Peters yazdı
"should have" been added here when they were added to lists).
-
Tim Peters yazdı
when that test is doomed to deadlock.
-
Guido van Rossum yazdı
If tp_itemsize of the basetype is nonzero, only allow empty __slots__ (declaring that no __dict__ should be added), and don't add a weakref offset.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Tim Peters yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
visit_finalizer_reachable since it's the same as visit_reachable. Rename visit_reachable to visit_move. Objects can now have the GC type flag set, reachable by tp_traverse and not be in a GC linked list. This should make the collector more robust and easier to use by extension module writers. Add memory management functions for container objects (new, del, resize).
-
- 29 Agu, 2001 3 kayıt (commit)
-
-
Neil Schemenauer yazdı
-
Neil Schemenauer yazdı
the setup script is running from inside Vim.
-
Neil Schemenauer yazdı
-