1. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  2. 0ba9e3a init_name_op(): add (void) to the argument list to make it a valid by Guido van Rossum · 23 years ago
  3. 1b0feb4 Variant of SF patch 423181 by Jeremy Hylton · 23 years ago
  4. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  5. 4dcb85b Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not by Fred Drake · 23 years ago
  6. 82c690f Well darnit! The innocuous fix I made to PyObject_Print() caused by Guido van Rossum · 23 years ago
  7. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  8. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  9. db81e8d Add support for weak references to the function and method types. by Fred Drake · 23 years ago
  10. 4e262a9 A small change to the C API for weakly-referencable types: Such types by Fred Drake · 23 years ago
  11. b60654b The return value from PyObject_ClearWeakRefs() is no longer meaningful, by Fred Drake · 23 years ago
  12. 4f9b13b instancemethod_setattro(): Raise TypeError if an attempt is made to by Barry Warsaw · 23 years ago
  13. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 23 years ago
  14. 3202c6f Rename dubiously named local variable 'cmpfunc' -- this is also a by Guido van Rossum · 23 years ago
  15. 09ac89a fix indentation glitch by Jeremy Hylton · 23 years ago
  16. 5cc2c8c Re-factored PyInstance_New() into PyInstance_New() and PyInstance_NewRaw(). by Fred Drake · 23 years ago
  17. 65e8bd7 Rich comparisons fallout: instance_hash() should check for both by Guido van Rossum · 23 years ago
  18. 24f67d5 Fix a leak in instance_coerce(). This was introduced by Neil's by Guido van Rossum · 23 years ago
  19. 8998b4f Rich comparisons. by Guido van Rossum · 23 years ago
  20. d6a9e84 Committing PEP 232, function attribute feature, approved by Guido. by Barry Warsaw · 23 years ago
  21. 29bfc07 Make instances a new style number type. See PEP 208 for details. Instance by Neil Schemenauer · 23 years ago
  22. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  23. e3550a6 - fix a GC bug caused by malloc() failing by Neil Schemenauer · 24 years ago
  24. 6b18491 Fix for SF bug 110688: Instance deallocation neglected to account for by Tim Peters · 24 years ago
  25. ce20967 Don't remove instance objects from the GC container set until we are by Neil Schemenauer · 24 years ago
  26. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  27. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  28. 1de2a79 Call PyErr_Clear() to clear the AttributeError raised by GetAttr. by Thomas Wouters · 24 years ago
  29. e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
  30. dc55d71 PyInstance_DoBinOp(): When comparing the pointers, they must be cast by Barry Warsaw · 24 years ago
  31. 1d75a79 Apply SF patch #101029: call __getitem__ with a proper slice object if there by Thomas Wouters · 24 years ago
  32. c307352 ANSIfy functions that were hiding inside a macro. by Thomas Wouters · 24 years ago
  33. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  34. 7991247 ANSI-fication of the sources. by Fred Drake · 24 years ago
  35. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  36. 4ca150b _Py_RefTotal should only be declared here when Py_TRACE_REFS are #define'd by Skip Montanaro · 24 years ago
  37. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
  38. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  39. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  40. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  41. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  42. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
  43. d7823f2 Vladimir Marangozov: by Guido van Rossum · 24 years ago
  44. ad89bbc Trent Mick: change a few casts for Win64 compatibility. by Guido van Rossum · 24 years ago
  45. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  46. d22162b traverse functions should return 0 on success by Jeremy Hylton · 24 years ago
  47. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  48. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  49. 9e392e2 potentially useless optimization by Jeremy Hylton · 24 years ago
  50. 5f8b12f Mark Hammond: by Guido van Rossum · 24 years ago
  51. ee28c3a Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This adds by Guido van Rossum · 24 years ago
  52. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 24 years ago
  53. 42636dc Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcname by Guido van Rossum · 25 years ago
  54. 152d817 Fix a memory leak -- the cached values of __getattr__ etc. were never freed. by Guido van Rossum · 26 years ago
  55. d4ba73c Move the definition of PyMethodObject to classobject.h, so it can define by Guido van Rossum · 26 years ago
  56. 7859f87 Marc-Andre Lemburg's patch to support instance methods with other by Guido van Rossum · 26 years ago
  57. 7ba3043 Recompute the special getattr/setattr/delattr cache slots after by Guido van Rossum · 26 years ago
  58. e0fdf6f Keep Microsoft's compiler happy. by Guido van Rossum · 26 years ago
  59. a63eff6 Allow assignments to special class attributes -- with typechecks, and by Guido van Rossum · 26 years ago
  60. 617c1b0 Uses PyErr_ExceptionMatches() instead of comparing PyErr_Occurred(). by Guido van Rossum · 26 years ago
  61. 4180cf1 Remove a redundant statement from halfbinop(). by Guido van Rossum · 26 years ago
  62. b7f1afe Change the default repr() and str() of class instance objects to look by Guido van Rossum · 27 years ago
  63. 3931df9 Undo another glitch of the automatic not-so-Grand Renaming; some local by Guido van Rossum · 27 years ago
  64. 4a2a621 Write a str() function for class objects that returns by Guido van Rossum · 27 years ago
  65. 04d73c4 Check that all base classes are indeed class objects, rather than by Guido van Rossum · 27 years ago
  66. 7cc56eb When creating a class, set its __module__ attribute to the module by Guido van Rossum · 27 years ago
  67. b2173c3 Allow assignments to instance.__dict__ and instance.__class__. The by Guido van Rossum · 27 years ago
  68. a0d349f Added separate free list for instance method objects, for a few by Guido van Rossum · 27 years ago
  69. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  70. 0add15f removed last #ifdef SUPPORT_OBSOLETE_ACCESS bits. by Guido van Rossum · 27 years ago
  71. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  72. a412d24 Intern the various string objects created to speed up lookups. by Guido van Rossum · 27 years ago
  73. cbd1e4e Yet more elaborate message for exception in __del__. Make gcc -Wall happy. by Guido van Rossum · 28 years ago
  74. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  75. 8bcf369 Support passing in an empty dictionary of keywords to newinstanceobject. by Guido van Rossum · 28 years ago
  76. 22a85e5 More detailed error message about exception in __del__ by Guido van Rossum · 28 years ago
  77. e5920bc Use getstringsize where available instead of strlen. by Guido van Rossum · 28 years ago
  78. ad89978 Be a bit more careful with printing a warning for a failed __del__. by Guido van Rossum · 28 years ago
  79. 019f424 More efficient handling of "__doc__" lookup. by Guido van Rossum · 28 years ago
  80. 89227eb Write warning about exception in __del__ to stderr, not stdout. by Guido van Rossum · 28 years ago
  81. 0dfcf75 Disable support for access statement by Guido van Rossum · 28 years ago
  82. 2878a69 Optimizations by Sjoerd: by Guido van Rossum · 28 years ago
  83. 3cb4868 Only __dict__ and __class__ are read-only instance attributes by Guido van Rossum · 28 years ago
  84. 441e4ab new debugger symbol names by Guido van Rossum · 28 years ago
  85. 6dabc98 Added __name__ attribute to class instance method objects. by Guido van Rossum · 28 years ago
  86. 6f011d7 Get ordering right for TRACE_REFS/COUNT_ALLOCS combination (otherwise by Sjoerd Mullender · 29 years ago
  87. 740f357 Fixed calling of __del__ method with TRACE_REFS defined. by Sjoerd Mullender · 29 years ago
  88. ac21f6a class objects are read-only in restricted mode by Guido van Rossum · 29 years ago
  89. a83f270 changes for keyword args to built-in functions and classes by Guido van Rossum · 29 years ago
  90. 1311e3c args to call_object must be tuple or NULL by Guido van Rossum · 29 years ago
  91. e9df727 change comparing instance methods by Guido van Rossum · 29 years ago
  92. e95d92b removed unused vars by Guido van Rossum · 29 years ago
  93. 879c581 implement coercions involving instances properly by Guido van Rossum · 29 years ago
  94. 10393b1 add restrictions in restricted mode by Guido van Rossum · 29 years ago
  95. e7d444f * Objects/classobject.c: added 5th (function) parameter to by Guido van Rossum · 29 years ago
  96. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 29 years ago
  97. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  98. bb3c5f7 fix comparison of instances without _-cmp__ by Guido van Rossum · 30 years ago
  99. b9a6d12 Comparison of two class instances without __cmp__ or __rcmp__ methods by Sjoerd Mullender · 30 years ago
  100. 03093a2 * Include/classobject.h, Objects/classobject.c, Python/ceval.c: by Guido van Rossum · 30 years ago