- 30 Aug, 2001 26 commits
-
-
Guido van Rossum authored
long_subtype_new(): fix a typo (type->ob_size instead of tmp->ob_size).
-
Jeremy Hylton authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Guido van Rossum authored
default_getpass(). This should prevent hanging when it is called in IDLE. Fixes SF bug #455648.
-
Michael W. Hudson authored
restricted execution mode.
-
Fred Drake authored
Algorithm. This closes SF bug #454917.
-
Sjoerd Mullender authored
-
Sjoerd Mullender authored
-
Sjoerd Mullender authored
-
Sjoerd Mullender authored
-
Sjoerd Mullender authored
-
Jack Jansen authored
-
Tim Peters authored
"should have" been added here when they were added to lists).
-
Tim Peters authored
when that test is doomed to deadlock.
-
Guido van Rossum authored
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 authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Tim Peters authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
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 Aug, 2001 14 commits
-
-
Neil Schemenauer authored
-
Neil Schemenauer authored
the setup script is running from inside Vim.
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Neil Schemenauer authored
the old flag to still compile. Remove the PyType_BASICSIZE and PyType_SET_BASICSIZE macros. Add PyObject_GC_New, PyObject_GC_NewVar, PyObject_GC_Resize, PyObject_GC_Del, PyObject_GC_Track, PyObject_GC_UnTrack. Part of SF patch #421893.
-
Neil Schemenauer authored
the old flag to still compile.
-
Neil Schemenauer authored
-
Neil Schemenauer authored
-
Jeremy Hylton authored
try/except or try/finally. Previous versions had only track SETUP_LOOP blocks and ignored the exception part. This meant that it allowed continue inside a try/except but generated buggy code. Now it does the right thing.
-
Jeremy Hylton authored
Add CONTINUE_LOOP to the list of unconditional transfers
-
Jeremy Hylton authored
-