- 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
- 57a0361 Patch from Aldo Cortesi (OpenBSD buildbot owner). by Neal Norwitz · 19 years ago
- c34b931 This is a long-ago patch I submitted to SF (1100924) to time the gc passes. by Skip Montanaro · 19 years ago
- 64182fe Some more changes to make code compile under a C++ compiler. by Anthony Baxter · 19 years ago
- 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 19 years ago
- ffb0d90 Handle ssize_t by Neal Norwitz · 19 years ago
- 62e97f0 In format strings slinging Py_ssize_t, unconditionally by Tim Peters · 19 years ago
- 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 19 years ago
- d3c38ff SF patch #1443865; gc.get_count() added and optional argument 'generation' by Barry Warsaw · 19 years ago
- e22373d Fix warnings on x86 (32-bit) and support Win64. by Neal Norwitz · 19 years ago
- 7b216c5 Make PyGC_Collect() use Py_ssize_t. by Neal Norwitz · 19 years ago
- 6db0e00 Change GC refcount to Py_ssize_t. by Martin v. Löwis · 19 years ago
- 4129068 Change _PyObject_GC_Resize to expect Py_ssize_t. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
- 3b1cbf9 Add missing INCREF. by Neil Schemenauer · 19 years ago
- bc1d1b8 gc_list_move(): Make this truly equivalent to remove+append. While by Tim Peters · 20 years ago
- e2d5918 gc list function cleanup. by Tim Peters · 20 years ago
- cc2a866 handle_weakrefs(): Simplification -- there's no need to make a second by Tim Peters · 20 years ago
- ead8b7a SF 1055820: weakref callback vs gc vs threads by Tim Peters · 20 years ago
- 674d56b Convert return value to boolean. by Raymond Hettinger · 21 years ago
- 0bba722 Silence GCC warning when asserts are turned off. by Guido van Rossum · 21 years ago
- 403a203 SF bug 839548: Bug in type's GC handling causes segfaults. by Tim Peters · 21 years ago
- 780c497 update_refs(): assert that incoming refcounts aren't 0. The comment by Tim Peters · 21 years ago
- 6bc06ec Bug #794140: cygwin builds do not embed by Jason Tishler · 21 years ago
- e13ddc9 - New C API PyGC_Collect(), same as calling gc.collect(). by Guido van Rossum · 22 years ago
- 730f553 s/referrents/referents/g. Gotta love that referrers remains rife with rs. by Tim Peters · 22 years ago
- 0f81ab6 Finished implementing gc.get_referrents(): dealt with error and end by Tim Peters · 22 years ago
- fb2ab4d Comment repair; no semantic changes. by Tim Peters · 22 years ago
- f6b8045 Reworked has_finalizer() to use the new _PyObject_Lookup() instead by Tim Peters · 22 years ago
- 1155887 initgc(): Rewrote to use the PyModule_AddXYZ API; cuts code size. by Tim Peters · 22 years ago
- 259272b handle_finalizers(): Rewrote to call append_objects() and gc_list_merge() by Tim Peters · 22 years ago
- 50c61d5 Switched from METH_VARARGS to METH_NOARGS for the 7 module functions that by Tim Peters · 22 years ago
- bf384c2 Reworked move_finalizer_reachable() to create two distinct lists: by Tim Peters · 22 years ago
- f6ae7a4 move_finalizers(): Rewrote. It's not necessary for this routine by Tim Peters · 22 years ago
- 86b993b New comments. Rewrote has_finalizer() as a sequence of ifs instead of by Tim Peters · 22 years ago
- 93ad66d Fixed new seemingly random segfaults, by moving the initialization of by Tim Peters · 22 years ago
- ce136e9 Fix Tim's boom example. by Jeremy Hylton · 22 years ago
- 059b094 Add get_referrents() helper function. by Jeremy Hylton · 22 years ago
- 5bd378b Add get_referrents() helper function. by Jeremy Hylton · 22 years ago
- 774348c Fix typo. by Martin v. Löwis · 22 years ago
- 4030714 For new-style classes, we can now test for tp_del instead of asking by Guido van Rossum · 22 years ago
- 803526b Trashcan cleanup: Now that cyclic gc is always there, the trashcan by Tim Peters · 22 years ago
- 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
- 8b7f131 gc_list_move defined but not used. by Michael W. Hudson · 22 years ago
- aab713b visit_decref(): Added another assert. by Tim Peters · 22 years ago
- 6fc13d9 Finished transitioning to using gc_refs to track gc objects' states. by Tim Peters · 22 years ago
- ea40563 Reserved another gc_refs value for untracked objects. Every live gc by Tim Peters · 22 years ago
- 19b74c7 OK, I couldn't stand it <0.5 wink>: removed all uncertainty about what's by Tim Peters · 22 years ago
- 93cd83e visit_decref(): Two optimizations. by Tim Peters · 22 years ago
- 8839617 SF bug #574132: Major GC related performance regression by Tim Peters · 22 years ago
- c905164 Fix small bug. The count of objects in all generations younger then the by Neil Schemenauer · 22 years ago
- 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
- 8a13518 Remove casts to PyObject * when declaration is for PyObject * by Jeremy Hylton · 22 years ago
- a2b11ec Add IS_TRACKED and IS_MOVED macros. This makes the logic a little more clear. by Neil Schemenauer · 22 years ago
- 2880ae5 Move all data for a single generation into a structure. The set of by Neil Schemenauer · 23 years ago
- fa8efab _PyObject_GC_New: Could call PyObject_INIT with a NULL 1st argument. by Tim Peters · 23 years ago
- fec4eb1 Allow PyObject_Del to be used as a function designator. Provide binary by Neil Schemenauer · 23 years ago
- b883310 Make _PyObject_GC_UnTrack do nothing if WITH_CYCLE_GC is not defined. by Neil Schemenauer · 23 years ago
- ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 23 years ago
- 1b0e4fc Use pymalloc for realloc() as well. by Neil Schemenauer · 23 years ago
- dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 23 years ago
- 2a47c0f Fix spelling mistakes. Bugfix candidates. by Neal Norwitz · 23 years ago
- f8a6f24 Check for NULL return value of PyList_New (follow-up to patch #486743). by Martin v. Löwis · 23 years ago
- 155aad1 Patch #486743: remove bad INCREF, propagate exception in append_objects. by Martin v. Löwis · 23 years ago
- c8fe77b Use identity instead of equality when looking for referrers. Fixes #485781. by Martin v. Löwis · 23 years ago
- 560da62 Rename get_referents to get_referrers. Fixes #483815. by Martin v. Löwis · 23 years ago
- db86561 has_finalizer(): simplified "if (complicated_bool) 1 else 0" to by Tim Peters · 23 years ago
- a765c12 Add has_finalizer predictate function. Use it when deciding which by Neil Schemenauer · 23 years ago
- 8cc705e SF bug #477059 (my own): __del__ on new classes vs. GC. by Guido van Rossum · 23 years ago
- e8c40cb Make the gc.collect() function respect the collection lock. This fixes by Neil Schemenauer · 23 years ago
- bca8c2e Use double curly braces for the generation0/1/2 initializers, to shut by Guido van Rossum · 23 years ago
- 9e4ca10 SF bug [#467145] Python 2.2a4 build problem on HPUX 11.0. by Tim Peters · 23 years ago
- f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
- 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
- 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 23 years ago
- 8c18f25 _PyObject_GC_Malloc(): split a complicated line in two. As is, there was by Tim Peters · 23 years ago
- 43411b5 Make more things internal to this file. Remove by Neil Schemenauer · 23 years ago
- 17e7be6 Remove "referents" structure (it's not needed). Check return value by Neil Schemenauer · 23 years ago
- c7c8d8e Add get_objects function. This is a low level function (like by Neil Schemenauer · 23 years ago
- 48c7034 Add get_referents function. Closes SF patch #402925. by Neil Schemenauer · 23 years ago
- b2c2c9e - update Neil's email address by Neil Schemenauer · 24 years ago
- 97d723b - do not start collection during processing of an exception by Neil Schemenauer · 24 years ago
- 7760cff Fix some long/"l" int/"i" mismatches. Fixes bug #113779. by Neil Schemenauer · 24 years ago
- 544de1e - Add DEBUG_SAVEALL option. When enabled all garbage objects found by the by Neil Schemenauer · 24 years ago
- 3263dc2b compromise value for threshold0: not too high, not too low by Jeremy Hylton · 24 years ago
- 045946d set the default threshold much higher we don't need to run gc frequently by Jeremy Hylton · 24 years ago
- b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
- 0625777 apply patch #101362 by Vladimir Marangozov by Jeremy Hylton · 24 years ago
- f9d20c3 Neil Schemenauer: GC enable(), disable(), isenabled() interface. by Vladimir Marangozov · 24 years ago
- 35e459c debug_instance(): Use the same %p format directive as with by Barry Warsaw · 24 years ago
- cc1be24 Always use the :funcname part of the format specifier for PyArg_ParseTuple() by Fred Drake · 24 years ago
- b35de5b Neil Schemenauer <nascheme@enme.ucalgary.ca>: by Fred Drake · 24 years ago
- 8bc8f0d ANSI-fication by Peter Schneider-Kamp · 24 years ago
- b16714b Initialize the return value in collect_generations() since it is updated by Vladimir Marangozov · 24 years ago
- c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago